/* =======================================
   THALAMUS CAT | Бухгалтерия и налоги в Словакии
======================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Segoe UI",sans-serif;
    background:#f8f5f1;
    color:#3f3227;
    overflow-x:hidden;
}

/* ==========================
   NAVBAR
========================== */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 60px;

    background:white;

    border-bottom:1px solid #ebe2d8;

    position:sticky;
    top:0;
    z-index:1000;
}

/* LOGO */

.logo{
    width:110px;
    height:auto;
    display:block;
}

.header-badge{

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#8f6a46;

    font-weight:600;

    white-space:nowrap;

    margin-left:20px;
}

/* MENU */

.main-menu{

    display:flex;

    gap:35px;

    margin-left:auto;

    margin-right:25px;
}

.main-menu a{
    text-decoration:none;
    color:#3f3227;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

.main-menu a:hover{
    color:#b89067;
}

/* LANGUAGE */

.lang-switch{
    display:flex;
}

.header-right{

    display:flex;
    align-items:center;
    gap:20px;
}

.header-phone{

    display:flex;
    align-items:center;
    gap:10px;

    text-decoration:none;

    color:#5c4330;

    transition:.3s;
}

.header-phone:hover{

    transform:translateY(-2px);
}

.phone-icon{

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#cba47d;
    color:white;

    font-size:18px;

    animation:phonePulse 2.8s infinite;
}

.phone-text{

    display:flex;
    flex-direction:column;
}

.phone-city{

    font-size:12px;
    color:#8f6a46;
    text-transform:uppercase;
    letter-spacing:1px;
}

.phone-number{

    font-size:16px;
    font-weight:600;
}

@keyframes phonePulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(203,164,125,.45);
    }

    70%{
        transform:scale(1.08);
        box-shadow:0 0 0 12px rgba(203,164,125,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(203,164,125,0);
    }
}

.lang-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    border:none;

    padding:4px 8px;

    cursor:pointer;

    background:white;

    border:1px solid #d8c6b4;

    transition:.3s;

    font-size:11px;

    color:#5b4638;
}

.lang-btn.active{

    background:#cba47d;
    color:white;
}

/* ==========================
   HERO
========================== */

.hero{

    position:relative;

    max-width:1400px;

    margin:auto;

    padding:40px 40px 70px;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:60px;

    align-items:center;
}

/* BADGE */

.hero-badge{

    display:inline-block;

    margin-bottom:24px;

    padding:10px 18px;

    border-radius:50px;

    background:#efe5d8;

    color:#8f6a46;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;
}

/* TITLES */

.hero-left h1{

    font-size:64px;

    font-weight:300;

    color:#5c4330;

    margin-bottom:20px;

    letter-spacing:2px;
}

.hero-left h2{

    font-size:42px;

    line-height:1.15;

    margin-bottom:26px;
}

.hero-left p{

    font-size:22px;

    line-height:1.7;

    color:#6e655e;

    margin-bottom:40px;
}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.btn-primary{

    background:#cba47d;

    color:white;

    padding:18px 34px;

    text-decoration:none;

    border-radius:12px;

    transition:.3s;
}

.btn-primary:hover{

    background:#b68e66;
}

.btn-secondary{

    border:2px solid #cba47d;

    color:#8f6a46;

    padding:18px 34px;

    text-decoration:none;

    border-radius:12px;

    transition:.3s;
}

.btn-secondary:hover{

    background:#efe5d8;
}

/* IMAGE */

.hero-right{
    position:relative;
}

.hero-right img{

    width:100%;

    display:block;

    border-radius:40px;

    position:relative;

    filter:
        drop-shadow(0 60px 120px rgba(190,160,120,.25))
        brightness(1.03);

    mask-image:
        radial-gradient(
            ellipse at center,
            rgba(0,0,0,1) 45%,
            rgba(0,0,0,.92) 60%,
            rgba(0,0,0,.65) 78%,
            rgba(0,0,0,.25) 92%,
            transparent 100%
        );

    -webkit-mask-image:
        radial-gradient(
            ellipse at center,
            rgba(0,0,0,1) 45%,
            rgba(0,0,0,.92) 60%,
            rgba(0,0,0,.65) 78%,
            rgba(0,0,0,.25) 92%,
            transparent 100%
        );
}

/* ==========================
   ADVANTAGES
========================== */

.advantages{

    max-width:1400px;

    margin:5px auto 0;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:24px;

    padding:
    0 40px 90px;
}

.adv-card{

    background:white;

    padding:16px;

    border-radius:24px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    cursor:pointer;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    overflow:hidden;

    position:relative;
}

.adv-card:hover{

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.10);
}

.adv-card h3{

    margin-bottom:16px;

    color:#5d4632;

    font-size:22px;
}

.adv-card p{

    color:#6f655d;

    line-height:1.7;
}

.adv-more{

    max-height:0;

    overflow:hidden;

    opacity:0;

    transition:
        max-height .5s ease,
        opacity .5s ease;

    color:#6f655d;

    line-height:1.7;

    margin-top:0;
}

.adv-card.active .adv-more{

    max-height:250px;

    opacity:1;

    margin-top:18px;
}

.adv-image {

    width:100%;

    height:240px;

    object-fit:cover;

    border-radius:18px;

    display:block;

    margin-bottom:18px;

    transition:
        transform .5s ease;
}

.adv-card:hover .adv-image{

    transform:scale(1.06);
}

/* ==========================
   TRUST BLOCK
========================== */

.trust-section{

    max-width:1400px;

    margin:auto;

    padding:
    0 40px 80px;
}

.trust-title{

    text-align:center;

    margin-bottom:40px;

    font-size:42px;

    color:#5c4330;
}

.trust-grid{

    display:grid;

    grid-template-columns:
    repeat(4,minmax(0,1fr));

    gap:24px;

    width:100%;
}

.trust-item{

    background:white;

    border-radius:20px;

    padding:28px;

    text-align:center;

    box-shadow:
    0 5px 20px rgba(0,0,0,.04);
}

/* ==========================
   CTA SECTION
========================== */

.cta-section{

    max-width:1400px;

    margin:auto;

    padding:
    0 40px 90px;
}

.cta-box{

    background:white;

    border-radius:30px;

    padding:70px 60px;

    text-align:center;

    box-shadow:
        0 10px 40px rgba(0,0,0,.05);
}

.cta-box h2{

    font-size:42px;

    line-height:1.25;

    color:#5c4330;

    margin-bottom:20px;
}

.cta-box p{

    font-size:22px;

    color:#6e655e;

    margin-bottom:35px;
}

/* ==========================
   OFFICE SECTION
========================== */

.office-section{

    max-width:1400px;

    margin:auto;

    padding:
        0 40px 100px;
}

.office-title{

    text-align:center;

    font-size:42px;

    color:#5c4330;

    margin-bottom:40px;
}

.office-box{

    display:grid;

    grid-template-columns:
        420px 1fr;

    gap:30px;

    align-items:stretch;
}

.office-info{

    background:white;

    border-radius:24px;

    padding:40px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.office-info h3{

    font-size:28px;

    color:#5c4330;

    margin-bottom:20px;
}

.office-info p{

    font-size:18px;

    line-height:1.8;

    color:#6e655e;

    margin-bottom:20px;
}

.office-map{

    background:white;

    border-radius:24px;

    min-height:320px;

    overflow:hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.office-map iframe{

    width:100%;

    height:100%;

    min-height:320px;

    border:none;

    display:block;
}

/* ==========================
   TRUST IMPROVEMENTS
========================== */

.trust-item{

    background:white;

    border-radius:24px;

    padding:34px;

    text-align:center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.trust-item:hover{

    transform:
        translateY(-6px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.08);
}

.trust-item h3{

    font-size:34px;

    color:#cba47d;

    margin-bottom:10px;
}

.trust-item p{

    color:#6e655e;

    line-height:1.6;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:900px){

    .logo{

        width:140px;
    }

    .phone-number{

        font-size:15px;
    }

    .hero{

        grid-template-columns:1fr;

        text-align:center;

        padding:30px 20px 50px;
    }

    .hero-left h1{

        font-size:46px;
    }

    .hero-left h2{

        font-size:30px;
    }

    .hero-left p{

        font-size:18px;
    }

    .hero-buttons{

        justify-content:center;
    }

    .advantages{

        grid-template-columns:1fr;

        padding:0 20px 60px;
    }

    .adv-image{

        height:200px;
    }

    .trust-grid{

        grid-template-columns:1fr;
    }

    .trust-section{

        padding:0 20px 60px;
    }

    .trust-title{

        font-size:30px;
    }

    .cta-box{

        padding:40px 25px;
    }

    .cta-box h2{

        font-size:30px;
    }

    .cta-box p{

        font-size:18px;
    }

    .office-box{

        grid-template-columns:1fr;
    }

    .office-title{

        font-size:30px;
    }

}

/* ==========================
   HERO WAVE
========================== */

.hero-wave{

    position:absolute;

    left:0;
    right:0;

    bottom:-20px;

    height:260px;

    z-index:5;

    pointer-events:none;

    overflow:hidden;
}

#waveCanvas{

    width:100%;
    height:100%;

    display:block;
}

.hero,
.advantages,
.trust-section,
.cta-section,
.office-section{

    width:100%;
    overflow:hidden;
}

#officeMap{

    width:100%;

    height:100%;

    min-height:320px;

    border-radius:24px;
}

/* ==========================
   ABOUT PAGE
========================== */

.about-container{

    max-width:1200px;

    margin:0 auto;

    padding:0 40px;
}

.about-hero{
    padding:40px 0 10px;
}

.about-hero-inner{

    max-width:900px;

    margin:0 auto;

    text-align:center;
}

.about-hero h1{

    font-size:64px;

    color:#4f392c;

    margin-bottom:25px;
}

.about-hero p{

    font-size:22px;

    line-height:1.8;

    color:#6a5a4c;
}

.about-section,
.about-services,
.about-clients,
.about-why,
.team-section{

    padding:25px 0;
}

.about-block{

    max-width:1000px;

    margin:0 auto 60px;

    text-align:center;
}

.about-block h2{

    font-size:52px;

    color:#4f392c;

    margin-bottom:30px;
}

.about-block p{

    font-size:20px;

    line-height:1.9;

    color:#6a5a4c;

    margin-bottom:20px;
}

.about-principles{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.principle-card{

    background:white;

    border-radius:24px;

    padding:40px;

    text-align:center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    min-height:420px;
}

.principle-card h3{

    font-size:30px;

    color:#4f392c;

    margin-bottom:25px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    line-height:1.2;
}

.principle-card p{

    line-height:1.8;
}

.about-services h2,
.about-clients h2,
.about-why h2,
.about-contact h2{

    text-align:center;

    font-size:52px;

    color:#4f392c;

    margin-bottom:50px;
}

.about-list-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;
}

.about-list-card{

    background:white;

    border-radius:20px;

    padding:25px;

    text-align:center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.why-card{

    background:white;

    border-radius:20px;

    padding:25px;

    text-align:center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.about-clients p{

    max-width:1000px;

    margin:0 auto 20px;

    text-align:center;

    font-size:20px;

    line-height:1.9;
}

.about-contact-box{

    max-width:800px;

    margin:0 auto;

    background:white;

    border-radius:30px;

    padding:60px;

    text-align:center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.about-contact-box p{

    font-size:20px;

    line-height:1.9;

    margin-bottom:25px;
}

@media(max-width:900px){

    .about-principles,
    .about-list-grid,
    .why-grid{

        grid-template-columns:1fr;
    }

    .about-hero h1{

        font-size:42px;
    }

    .about-block h2,
    .about-services h2,
    .about-clients h2,
    .about-why h2,
    .about-contact h2{

        font-size:36px;
    }

    .about-container{

        padding:0 20px;
    }

}

.team-section{

    padding-top:0;

    padding-bottom:80px;
}

.team-section h2{

    text-align:center;

    font-size:52px;

    color:#4f392c;

    margin-top:-10px;

    margin-bottom:35px;
}

.team-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.team-card{

    background:white;

    border-radius:24px;

    overflow:hidden;

    text-align:center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.team-card img{

    width:180px;

    height:180px;

    object-fit:cover;

    border-radius:50%;

    margin:30px auto 20px;

    display:block;

    border:6px solid #f3ece4;
}

.team-card h3{

    margin-top:20px;

    font-size:24px;

    color:#4f392c;
}

.team-card p{

    padding:10px 20px 25px;

    color:#6a5a4c;
}

@media(max-width:900px){

    .team-grid{

        grid-template-columns:1fr;
    }
}

.why-icon{

    color:#cba47d;

    font-size:22px;

    margin-right:10px;

    font-weight:700;
}

.about-icon{

    color:#cba47d;

    font-size:22px;

    font-weight:700;

    margin-right:10px;

    display:inline-block;
}

.about-wave{

    width:100%;

    height:90px;

    overflow:hidden;

    position:relative;

    margin:-20px 0 0 0;
}

#aboutWaveCanvas{

    width:100%;

    height:100%;

    display:block;
}

.team-description{

    margin-top:10px;

    font-size:14px;

    line-height:1.6;

    color:#7a6554;
}

/* =========================================
   SERVICE PAGE
========================================= */

.service-hero{

    padding:80px 0;

}

.service-container{

    width:min(1200px, 92%);
    margin:0 auto;

}

.service-hero .service-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.service-badge{

    display:inline-block;

    padding:10px 20px;

    border-radius:999px;

    background:rgba(201,161,120,.15);

    color:#c9a178;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;

}

.service-left h1{

    font-size:58px;

    line-height:1.1;

    color:#5b4335;

    margin-bottom:30px;

}

.service-left p{

    font-size:20px;

    line-height:1.8;

    color:#6d5547;

    margin-bottom:20px;

}

.service-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    border-radius:16px;

    background:#c9a178;

    color:white;

    text-decoration:none;

    font-weight:600;

    margin-top:20px;

    transition:.3s;

}

.service-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(201,161,120,.35);

}

.service-right img{

    width:100%;

    border-radius:28px;

    display:block;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.service-content{
    padding:20px 0 40px;
}

.service-content h2,
.service-benefits h2{

    text-align:center;

    font-size:52px;

    color:#5b4335;

    margin-bottom:25px;

}

.service-grid{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:24px;

}

.service-card{

    background:white;

    border-radius:22px;

    padding:30px;

    text-align:center;

    font-size:18px;

    line-height:1.6;

    color:#5b4335;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-6px);

}

.service-benefits{
    padding:10px 0 40px;
}

.benefits-grid{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:24px;

}

.benefit-card{

    background:white;

    border-radius:22px;

    padding:35px;

    text-align:center;

    font-size:20px;

    color:#5b4335;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

}

@media(max-width:1000px){

    .service-hero .service-container{

        grid-template-columns:1fr;

    }

    .service-left h1{

        font-size:42px;

    }

    .service-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

}

@media(max-width:700px){

    .service-grid{

        grid-template-columns:1fr;

    }

    .benefits-grid{

        grid-template-columns:1fr;

    }

    .service-content h2,
    .service-benefits h2{

        font-size:38px;

    }

}

/* =========================================
   SERVICE PROCESS
========================================= */

.service-process{
    padding:10px 0 40px;
}

.service-process h2{

    text-align:center;

    font-size:52px;

    color:#5b4335;

    margin-bottom:25px;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.process-card{

    background:white;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.process-number{

    font-size:42px;

    font-weight:700;

    color:#c9a178;

    margin-bottom:20px;

}

.process-card h3{

    font-size:24px;

    color:#5b4335;

    margin-bottom:15px;

}

.process-card p{

    line-height:1.8;

    color:#6d5547;

}

/* FAQ */

.service-faq{

    padding:10px 0 40px;

}

.service-faq h2{

    text-align:center;

    font-size:52px;

    color:#5b4335;

    margin-bottom:25px;

}

.faq-grid{

    display:grid;

    gap:24px;

}

.faq-card{

    background:white;

    border-radius:22px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.faq-card h3{

    color:#5b4335;

    margin-bottom:15px;

}

.faq-card p{

    line-height:1.8;

    color:#6d5547;

}

/* CTA */

.service-cta{

    padding:0 0 50px;

}

.service-cta-box{

    background:white;

    border-radius:30px;

    padding:70px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.service-cta-box h2{

    font-size:52px;

    color:#5b4335;

    margin-bottom:20px;

}

.service-cta-box p{

    font-size:20px;

    color:#6d5547;

    margin-bottom:30px;

}

/* MOBILE */

@media(max-width:1000px){

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:700px){

    .process-grid{

        grid-template-columns:1fr;

    }

    .service-process h2,
    .service-faq h2,
    .service-cta-box h2{

        font-size:38px;

    }

}

.service-link{
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.service-link:hover{
    color: #c8a173;
}

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:260px;

    background:#ffffff;

    border-radius:12px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:0.3s;

    z-index:1000;
}

.dropdown-menu a{
    display:block;

    padding:14px 18px;

    color:#5f4638;

    text-decoration:none;

    font-size:15px;

    border-bottom:1px solid #f0ece7;
}

.dropdown-menu a:last-child{
    border-bottom:none;
}

.dropdown-menu a:hover{
    background:#f8f4ef;
    color:#c8a173;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page{
    padding:80px 0 100px;
}

.contact-container{

    width:min(1200px,92%);
    margin:0 auto;

    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;

    align-items:start;
}

.contact-info h1{

    font-size:58px;

    color:#5b4335;

    margin-bottom:25px;
}

.contact-info > p{

    font-size:20px;

    line-height:1.8;

    color:#6d5547;

    margin-bottom:30px;
}

.contact-card{

    background:white;

    border-radius:24px;

    padding:35px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.contact-card h3{

    font-size:28px;

    color:#5b4335;

    margin-bottom:20px;
}

.contact-card p{

    font-size:18px;

    line-height:1.8;

    color:#6d5547;

    margin-bottom:18px;
}

.contact-form-box{

    background:white;

    border-radius:24px;

    padding:40px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:18px;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    border:1px solid #e5ddd3;

    border-radius:14px;

    padding:16px 18px;

    font-size:16px;

    font-family:inherit;

    background:#faf8f5;

    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:#c9a178;

    background:white;
}

.contact-form textarea{

    resize:vertical;

    min-height:180px;
}

.contact-form .service-btn{

    border:none;

    cursor:pointer;

    width:fit-content;
}

@media(max-width:900px){

    .contact-container{

        grid-template-columns:1fr;
    }

    .contact-info h1{

        font-size:42px;
    }
}

.contact-office-image{
width:100%;
margin-bottom:40px;
}

.contact-office-image img{

    width:100%;

    max-height:500px;

    height:auto;

    display:block;

    object-fit:contain;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);

    border-radius:0;

    mask-image:
        radial-gradient(
            ellipse at center,
            rgba(0,0,0,1) 60%,
            rgba(0,0,0,.9) 75%,
            rgba(0,0,0,.6) 88%,
            rgba(0,0,0,.2) 96%,
            transparent 100%
        );

    -webkit-mask-image:
        radial-gradient(
            ellipse at center,
            rgba(0,0,0,1) 60%,
            rgba(0,0,0,.9) 75%,
            rgba(0,0,0,.6) 88%,
            rgba(0,0,0,.2) 96%,
            transparent 100%
        );
}

.contact-form-box{
display:flex;
flex-direction:column;
justify-content:flex-start;
}

.contact-form{
margin-top:0;
}

.contact-wave{

    width:100vw;

    height:90px;

    margin-top:40px;

    margin-left:calc(-50vw + 50%);

    overflow:hidden;

    position:relative;
}

#contactWaveCanvas{

    width:100%;
    height:100%;

    display:block;
}

.mobile-menu-btn{

    display:none;

    background:none;

    border:none;

    font-size:34px;

    color:#6a5344;

    cursor:pointer;
}

@media (max-width:768px){

    .mobile-menu-btn{
        display:block;
    }

    .header-badge{
        display:none;
    }

    .main-menu{
        display:none;
    }

    .header-right{
        display:none;
    }

    .navbar{

        display:flex;

        justify-content:space-between;

        align-items:center;

        padding:15px 20px;
    }

    .logo{
        max-width:140px;
    }
}

/* =========================================
   MOBILE FIXES
========================================= */

@media (max-width:768px){

    .hero{

        grid-template-columns:1fr;

        gap:25px;

        padding:20px 15px 40px;
    }

    .hero-right{
        order:-1;
    }

    .hero-left h1{

        font-size:36px;
    }

    .hero-left h2{

        font-size:32px;

        line-height:1.2;
    }

    .hero-left p{

        font-size:18px;

        line-height:1.6;
    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;
    }

    .btn-primary,
    .btn-secondary{

        width:100%;

        max-width:320px;

        text-align:center;

        padding:16px 20px;

        white-space:normal;
    }

    .cta-box{

        padding:30px 20px;
    }

    .cta-box h2{

        font-size:32px;

        line-height:1.2;
    }

    .cta-box p{

        font-size:18px;
    }

    .cta-box .btn-primary{

        display:block;

        width:100%;

        max-width:320px;

        margin:0 auto;
    }
}

/* ==========================
   MOBILE MENU
========================== */

.mobile-menu{

    position:fixed;

    top:0;
    right:-320px;

    width:280px;
    height:100vh;

    background:white;

    z-index:9999;

    transition:.35s;

    display:flex;

    flex-direction:column;

    padding:30px;

    gap:18px;

    box-shadow:
        -10px 0 30px rgba(0,0,0,.15);
}

.mobile-menu.active{

    right:0;
}

.mobile-menu a{

    text-decoration:none;

    color:#5b4638;

    font-size:18px;

    font-weight:500;
}

.mobile-menu hr{

    border:none;

    border-top:1px solid #e6d8ca;
}

.mobile-close-btn{

    border:none;

    background:none;

    font-size:28px;

    cursor:pointer;

    align-self:flex-end;

    color:#5b4638;
}

.mobile-menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.35);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9998;
}

.mobile-menu-overlay.active{

    opacity:1;

    visibility:visible;
}

/* =========================================
   MOBILE ALIGN FIX
========================================= */

@media (max-width:768px){

    .hero,
    .advantages,
    .trust-section,
    .cta-section,
    .office-section,
    .about-container,
    .service-container,
    .contact-container{

        padding-left:15px !important;
        padding-right:15px !important;
    }

}

/* =========================================
   FINAL MOBILE WIDTH FIX
========================================= */

@media (max-width:768px){

    .navbar{

        width:100%;
        max-width:100%;
        left:0;
        right:0;

        padding:14px 22px !important;

        border-radius:0;
        box-sizing:border-box;
    }

    .logo{
        width:135px;
        max-width:135px;
    }

    .mobile-menu-btn{
        margin-left:auto;
    }

    .about-container,
    .service-container,
    .contact-container{

        width:100% !important;
        max-width:100% !important;

        padding-left:22px !important;
        padding-right:22px !important;

        box-sizing:border-box;
    }

    .about-principles,
    .about-list-grid,
    .why-grid,
    .team-grid{

        width:100%;
        gap:22px;
    }

    .principle-card,
    .about-list-card,
    .why-card,
    .team-card{

        width:100%;
        margin-left:0;
        margin-right:0;

        box-sizing:border-box;
    }

    .about-section,
    .about-services,
    .about-clients,
    .about-why,
    .team-section{

        width:100%;
        overflow:hidden;
    }

    .about-services h2,
    .about-clients h2,
    .about-why h2,
    .team-section h2{

        font-size:40px;
        line-height:1.15;
    }

}

/* =========================================
   CONTACT MOBILE FIX
========================================= */

@media (max-width:768px){

    .contact-container{

        width:100% !important;

        padding-left:15px !important;
        padding-right:15px !important;
    }

    .contact-form-box{

        width:100%;

        padding:20px !important;

        box-sizing:border-box;
    }

    .contact-form{

        width:100%;
    }

    .contact-form input,
    .contact-form textarea{

        width:100%;

        margin:0;

        box-sizing:border-box;
    }

    .contact-form .service-btn{

        width:100%;

        justify-content:center;
    }

}

/* =========================================
   ABOUT MOBILE FIX
========================================= */

@media (max-width:768px){

    .principle-card{

        min-height:auto !important;

        padding:25px !important;
    }

    .principle-card h3{

        height:auto !important;

        min-height:auto !important;

        margin-bottom:15px !important;

        font-size:28px !important;
    }

    .principle-card p{

        margin:0 !important;
    }

}

/* =========================================
   CTA MOBILE TITLE FIX
========================================= */

@media (max-width:768px){

    .cta-box h2,
    .service-cta-box h2,
    .about-contact-box h2{

        font-size:28px !important;
        line-height:1.25 !important;

        word-break:break-word;
        overflow-wrap:break-word;

        width:100%;
        max-width:100%;
    }

}

/* =========================================
   FINAL SERVICE CTA MOBILE FIX
========================================= */

@media (max-width:768px){

    .service-cta{

        padding-left:15px !important;
        padding-right:15px !important;
    }

    .service-cta-box{

        width:100% !important;

        padding:30px 20px !important;

        box-sizing:border-box;
    }

    .service-cta-box h2{

        font-size:28px !important;

        line-height:1.25 !important;

        word-break:normal !important;

        overflow-wrap:anywhere;

        white-space:normal;
    }

    .service-cta-box p{

        font-size:18px !important;

        line-height:1.6 !important;
    }

}