:root {
    --beige: #f8f6f2;
    --light-beige: #fcfbf9;
    --white: #ffffff;
    --dark-beige: #e8e6e1;
    --text: #2a2a2a;
    --light-text: #666666;
    --accent: #d4c8b8;
    --grey: #f0f0f0;
    --success: #4caf50;
    --error: #f44336;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    /* outline: 1px solid red;  */
}

html {
    scroll-behavior: smooth;
}


body {
    background-color: var(--beige);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
        .contact-int-body {
            background-color: var(--beige);
            color: var(--text);
            line-height: 1.6;
        }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}


h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}
.contact-int-body h1 {
            font-size: 3.5rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
/* 
h2 {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
} */
h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.contact-int-body h2 {
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 2rem;
            letter-spacing: -0.01em;
        }

/* .contact-int-body h3 {
    font-size: 1.5rem;
} */
.contact-int-body h3 h3 {
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
        }
p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-weight: 350;
    font-size: 1.1rem;
}

/* Header */
header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    background-color: var(--beige);
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 0;
    background-color: rgba(248, 246, 242, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.contact-int-body .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text);
        }


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-advert {
    position: absolute;
    top: -1%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text);
    align-self: center;
    min-width: 300px;


}

.logo {

    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 999;
    max-width: max-content;
}


.logo::after {
    content: "";
    background: var(--text);
    height: 4px;
    width: 30%;
    position: absolute;
    top: 53%;
    left: 90%;
    transform: translateY(-50%);
    z-index: -999;
    border-radius: 4px;

}
.contact-int-body .logo {
            font-size: 1.8rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            text-decoration: none;
            color: var(--text);
        }
nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 350;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.careers-button {
    color: #d4c8b8;
    border-radius: 4px;
    padding: 10px 20px;
    background-color: black;
}

nav a:hover {
    color: var(--light-text);
}

select {
    background-color: transparent;
    border: 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    background-color: var(--beige);
    position: relative;
    min-height: 100vh;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 50%;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.2s forwards;
}

.slogan {
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: var(--light-text);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-visual {
    width: 40%;
    height: 500px;
    background-color: var(--dark-beige);
    border-radius: 12px;
    /* border-bottom-left-radius:0 ;
            border-bottom-right-radius:0; */
    position: absolute;
    bottom: 20px;
    right: 30px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 1s ease 0.6s forwards;
}

.hero-visual img {
    height: 100%;
    width: 100%;
}

.app-screen {

    width: 100%;
    height: 100%;
    background-color: var(--white);
    top: 10%;
    left: 20%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.4s forwards;
}

.btn {
    padding: 0.9rem 2rem;
    border: 1px solid var(--text);
    background: transparent;
    color: var(--text);
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

.btn-primary {
    background-color: var(--text);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Problem Section */
.problem {
    background-color: #FAF8F6;
}

.problem-solution {
    background-color: #ECE7E0;
}

.problem-content,
.problem-solution-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-left: 0;
}

.problem-visual,
.problem-solution-visual {
    flex: 1;
    height: 600px;
    background-color: transparent;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s ease;
}

.problem-visual img,
.problem-solution-visual img {
    height: 100%;
    width: 100%;
}

.problem-visual img {
    border-right: 2px solid var(--accent);
}

.problem-solution-visual img {
    border-left: 2px solid var(--white);
}

.problem-visual.visible,
.problem-solution-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.problem-text,
.problem-solution-text {
    flex: 1;
    text-align: left;
}
/*Contact Form Hero Section */
        .contact-int-body .contact-hero {
            padding: 12rem 0 6rem;
            text-align: center;
            background: linear-gradient(135deg, var(--beige) 0%, var(--light-beige) 100%);
        }

/* Solution Section */
.solution {
    background-color: var(--light-beige);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 2.5rem 2rem;
    background-color: var(--white);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    text-align: center;
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--dark-beige);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-text);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Community Section */
.community {
    background-color: var(--white);
}

.community-content {
    max-width: 1000px;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.testimonial {
    text-align: left;
    padding: 2rem;
    background-color: var(--light-beige);
    border-radius: 8px;
    position: relative;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.quote::before {
    content: "";
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    opacity: 0.3;
}

.author {
    font-weight: 500;
    color: var(--text);
}

.community-visual {
    height: 400px;
    background-color: var(--dark-beige);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    justify-content: center;
    align-items: center;
}

.designer-card {
    width: 45%;
    height: 45%;
    background-color: var(--white);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.designer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--grey);
    margin-bottom: 0.8rem;
}

.designer-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.designer-brand {
    font-size: 0.8rem;
    color: var(--light-text);
}


       .contact-int-body  .hero-subtitle {
            font-size: 1.3rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Section */
        .contact-int-body .contact-section {
            padding: 6rem 0;
            background-color: var(--white);
        }

        .contact-int-body .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-int-body .contact-info {
            padding-right: 2rem;
        }

        .contact-int-body .contact-methods {
            margin-top: 2rem;
        }

        .contact-int-body .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background-color: var(--light-beige);
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

       .contact-int-body .contact-method:hover {
            transform: translateY(-2px);
        }

        .contact-int-body .method-icon {
            width: 50px;
            height: 50px;
            background-color: var(--dark-beige);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--text);
            flex-shrink: 0;
        }

        .contact-int-body .method-content h4 {
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .contact-int-body .method-content p {
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .contact-int-body .method-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

       .contact-int-body .method-link:hover {
            color: var(--light-text);
        }

       
 /* Contact Form */
       .contact-int-body .contact-form-container {
            background-color: var(--light-beige);
            padding: 2.5rem;
            border-radius: 8px;
        }

        .contact-int-body .form-group {
            margin-bottom: 1.5rem;
        }

        .contact-int-body label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text);
        }

        .contact-int-body .form-control {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1px solid var(--dark-beige);
            border-radius: 4px;
            background-color: var(--white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .contact-int-body .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(212, 200, 184, 0.2);
        }

        .contact-int-body textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .contact-int-body .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .contact-int-body .btn {
            padding: 0.9rem 2rem;
            border: 1px solid var(--text);
            background: transparent;
            color: var(--text);
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 400;
            text-decoration: none;
            display: inline-block;
        }

        .contact-int-body .btn-primary {
            background-color: var(--text);
            color: var(--white);
        }

        .contact-int-body .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-int-body .btn-full {
            width: 100%;
        }
 /* Contact Form FAQ Section */
       .contact-int-body .faq-section {
            padding: 6rem 0;
            background-color: var(--light-beige);
        }

       .contact-int-body .faq-content {
            max-width: 800px;
            margin: 0 auto;
        }

       .contact-int-body .faq-list {
            margin-top: 2rem;
        }

       .contact-int-body .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--dark-beige);
            border-radius: 8px;
            overflow: hidden;
        }

       .contact-int-body .faq-question {
            padding: 1.5rem;
            background-color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

       .contact-int-body .faq-question:hover {
            background-color: var(--light-beige);
        }

       .contact-int-body .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: var(--white);
        }

        .contact-int-body .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1.5rem;
        }

       .contact-int-body .faq-toggle {
            transition: transform 0.3s ease;
        }

       .contact-int-body .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

/* CTA Section */
.cta {
    background-color: var(--light-beige);
    text-align: center;
    padding: 5rem 0;

}
.contact-int-body .cta-section {
            padding: 6rem 0;
            background-color: var(--white);
            text-align: center;
        }

/* Footer */
footer {
    background-color: var(--white);
    padding: 4rem 0 2rem;
}
.contact-int-body  footer {
           
            border-top: 1px solid var(--dark-beige);
        }
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 350;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--text);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-beige);
    color: var(--light-text);
    font-size: 0.9rem;
}
/* Success Message */
        .success-message {
            display: none;
            text-align: center;
            padding: 2rem;
            background-color: rgba(76, 175, 80, 0.1);
            border: 1px solid var(--success);
            border-radius: 8px;
            margin-top: 2rem;
        }

        .success-icon {
            font-size: 3rem;
            color: var(--success);
            margin-bottom: 1rem;
        }
/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }


    h2 {
        font-size: 2rem;
    }

    .contact-int-body h1 {
        font-size: 2.8rem;
    }

    .contact-int-body h2 {
        font-size: 2.2rem;
    }

    .job-advert {
        top: 70%;
        left: 60%;

    }


    /* Hero Section */
    .hero {
        padding-top: 5rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem;

        align-items: flex-start;


    }

    .hero-text {
        text-align: center;
        text-align: left;
        justify-content: left;
        max-width: 75%;
        z-index: 1;
    }

    .hero-visual img {
        z-index: -1;
        /* opacity: 0.5; */
        filter: brightness(0.6);
        filter: contrast();
    }

    .cta-buttons {


        align-items: flex-start;
        padding: 0;
        /* background: red; */
    }



    .problem-content,
    .problem-solution-content {
        display: grid;
        grid-template-areas: 'text' 'pic';
        /* background-color: #b09595; */
        justify-items: center;
        gap: 0;
        padding: 0 5px;

    }

    .problem-solution-text,
    .problem-text {

        border-left: 0;
        /* padding-left: 10px; */
        grid-area: text;
        margin-bottom: 0;

    }


    .problem-solution-visual,
    .problem-visual {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        grid-area: pic;
        border: 0;
        margin-top: 0;
        height: 26rem;
        position: relative;


    }

    .problem-visual::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--accent);
        width: 75%;
        height: 3px;
    }


    .problem-solution-visual::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--white);
        width: 75%;
        height: 3px;
    }

    .problem-solution-visual img {

        border: none;

    }

    .problem-visual img {

        border-right: none;

    }

    .features {
        grid-template-columns: 1fr;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        background-color: #d4c8b8;
        z-index: 999999;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        width: 100%;
        flex-wrap: wrap-reverse;
        justify-content: space-evenly;
    }

    .cta-text {
        text-align: left;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    .careers-content {
        grid-template-columns: 1fr;
    }

    .careers-text {
        padding: 3rem 2rem;
    }

    .careers-visual {
        min-height: 300px;
    }

    .stats {
        justify-content: space-between;
    }

    .btn-group {
        flex-direction: column;
    }
}




.careers-cta-section {
    max-width: 1000px;
    min-width: 100%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.careers-text {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.careers-visual {
    background: linear-gradient(135deg, var(--beige) 0%, var(--light-beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-illustration {
    width: 80%;
    height: 80%;
    background-color: var(--dark-beige);
    border-radius: 8px;
    position: relative;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 6px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 180px;
    opacity: 0;
    transform: translateY(20px);
    animation: floatIn 0.8s ease forwards;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0.2s;
}

.card-2 {
    bottom: 25%;
    right: 15%;
    animation-delay: 0.5s;
}

.card-3 {
    top: 40%;
    right: 10%;
    animation-delay: 0.8s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    flex-shrink: 0;
}

.card-text {
    font-size: 0.9rem;
}

.card-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}



.stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 0.5rem;
}

.btn {
    padding: 0.9rem 2rem;
    border: 1px solid var(--text);
    background: transparent;
    color: var(--text);
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--text);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}