/* =========================================================
   BASE / RESET
   ========================================================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
}
:root{
    --primary:#ffbe0b;
    --dark:#111111;
    --dark-2:#181818;
    --gray:#777777;
    --gray-light:#cfcfcf;
    --radius:18px;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Outfit','Poppins',sans-serif;
    background:#faf8f3;
    color:#111;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:#fff;
}

img{
    display:block;
    max-width:100%;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce){
    *, *::before, *::after{
        animation-duration:.001ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.001ms !important;
    }
}

/* =========================================================
   KEYFRAMES (professional easing, single source of truth)
   ========================================================= */
@keyframes navDown{
    from{ opacity:0; transform:translate(-50%,-40px); }
    to{ opacity:1; transform:translate(-50%,0); }
}

@keyframes fadeUp{
    from{ opacity:0; transform:translateY(45px); }
    to{ opacity:1; transform:translateY(0); }
}

@keyframes fadeIn{
    from{ opacity:0; }
    to{ opacity:1; }
}

@keyframes scaleIn{
    from{ opacity:0; transform:scale(.92); }
    to{ opacity:1; transform:scale(1); }
}

@keyframes slideInLeft{
    from{ opacity:0; transform:translateX(-70px); }
    to{ opacity:1; transform:translateX(0); }
}

@keyframes slideInRight{
    from{ opacity:0; transform:translateX(70px); }
    to{ opacity:1; transform:translateX(0); }
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);

    width:90%;
    max-width:1400px;
    height:78px;

    padding:0 32px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(18,18,18,.82);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;

    box-shadow:
    0 20px 45px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.08);

    transition:top .4s,height .4s,background .4s,box-shadow .4s,transform .4s;

    z-index:9999;
}

.navbar.scrolled{
    top:12px;
    height:68px;
    background:rgba(18,18,18,.94);
}

.navbar.hide{
    transform:translate(-50%,-120px);
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}

.logo-icon{
    width:42px;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--primary);
    font-size:26px;
    flex-shrink:0;
}

.logo h2{
    font-size:clamp(20px,2.2vw,28px);
    color:#fff;
    font-weight:800;
    letter-spacing:1px;
    white-space:nowrap;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-links a{
    color:#fff;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--primary);
}

.menu-btn{
    display:none;
    justify-content:center;
    align-items:center;
    width:48px;
    height:48px;
    border:1px solid rgba(255,255,255,.12);
    outline:none;
    border-radius:16px;
    background:rgba(255,255,255,.06);
    color:#fff;
    cursor:pointer;
    transition:.35s cubic-bezier(.22,1,.36,1);
}

.menu-btn i{
    font-size:26px;
    transition:.35s;
}

.menu-btn:hover{
    background:rgba(255,190,11,.18);
}

.menu-btn.active{
    background:var(--primary);
    color:#111;
}
@media(max-width:991px){

    /* ---- Header / hamburger ---- */

    .navbar{
        width:92%;
        height:64px;
        top:15px;
        padding:0 18px;
        border-radius:16px;
    }

    .logo-icon{
        width:36px;
        height:36px;
        font-size:22px;
    }

    .logo h2{
        font-size:22px;
    }

    .menu-btn{
        display:flex;
    }

    .nav-links{
        position:absolute;
        top:calc(100% + 12px);
        left:0;
        right:0;
        width:100%;
        margin:auto;
        background:rgba(18,18,18,.96);
        backdrop-filter:blur(24px);
        border:1px solid rgba(255,255,255,.08);
        border-radius:18px;
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        gap:8px;

        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transform:translateY(-14px) scale(.97);
        transition:opacity .4s ease,transform .4s cubic-bezier(.22,1,.36,1),visibility .4s;
        box-shadow:0 25px 60px rgba(0,0,0,.45);
    }

    .nav-links.active{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:translateY(0) scale(1);
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:flex;
        justify-content:center;
        align-items:center;
        height:52px;
        border-radius:12px;
        background:rgba(255,255,255,.04);
        font-size:16px;
        font-weight:600;
        transition:.3s;
    }

    .nav-links a:hover,
    .nav-links a.active{
        background:rgba(255,190,11,.16);
        color:var(--primary);
    }

    /* ---- Hero ---- */

    .hero{
        padding:150px 0 90px;
    }

    .hero .container{
        flex-direction:column;
        text-align:center;
        gap:60px;
    }

    .breadcrumb,
    .hero-badge{
        justify-content:center;
        margin-left:auto;
        margin-right:auto;
    }

    .breadcrumb{
        justify-content:center;
    }

    .hero-text{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-image{
        width:100%;
        max-width:480px;
        margin:0 auto 60px;
    }

    .card-1{ top:-20px; left:-10px; }
    .card-2{ bottom:60px; right:-10px; }
    .card-3{ bottom:-24px; left:10px; }

    /* ---- Contact ---- */

    .contact-cards{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-form{
        padding:36px;
    }

    /* ---- Why ---- */

    .why .container{
        flex-direction:column-reverse;
        text-align:center;
        gap:45px;
    }

    .why-item{
        text-align:left;
    }

    .why-right img{
        height:380px;
    }
}

@media(max-width:900px){

    .menu-btn{
        display:flex;
    }

    .navbar ul.nav-links{
        position:fixed;
        top:110px;
        left:50%;
        transform:translate(-50%, -20px);

        width:90%;
        max-width:420px;

        display:flex;
        flex-direction:column;
        align-items:center;
        gap:20px;

        background:rgba(18,18,18,.96);
        backdrop-filter:blur(18px);

        border:1px solid rgba(255,255,255,.1);
        border-radius:22px;

        padding:30px 20px;

        opacity:0;
        visibility:hidden;
        pointer-events:none;

        transition:
            opacity .35s ease,
            transform .35s ease,
            visibility .35s ease;

        z-index:9998;
    }

    .navbar ul.nav-links.open{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:translate(-50%, 0);
    }

    .navbar ul.nav-links li{
        width:100%;
        text-align:center;
    }

    .navbar ul.nav-links li a{
        display:block;
        padding:10px;
        color:#fff;
    }

}
ul{
    list-style: none;
}


/* =========================================
   NAVBAR ANIMATION
========================================= */

@keyframes navDown{

    from{
        opacity:0;
        transform:translate(-50%,-100px);
    }

    to{
        opacity:1;
        transform:translate(-50%,0);
    }

}


@media(max-width:480px){
    .estimate span{ display:none; }
    .estimate{ padding:12px 16px; }
    .logo h2{ font-size:18px; }
    .navbar{ height:64px; top:14px; }
    .logo-icon{ width:36px; height:36px; font-size:22px; }
    .menu-btn{ width:40px; height:40px; font-size:21px; }
    .navbar ul{ top:92px; max-height:calc(100vh - 120px); }
}

@media(max-width:380px){
    .navbar{ padding:0 14px; }
    .logo h2{ font-size:16px; }
}

/* =========================================================
   SERVICES HERO
   ========================================================= */
.services-hero{
    padding:150px 0 40px;
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.breadcrumb{
margin-bottom:60px;
font-size:14px;
font-weight:500;
opacity:0;
animation:fadeUp .7s cubic-bezier(.16,.84,.44,1) .1s both;
}

.breadcrumb a{
text-decoration:none;
color:#c39b39;
}

.breadcrumb span{
margin:0 8px;
color:#999;
}

.hero-content{
display:flex;
justify-content:space-between;
align-items:center;
gap:80px;
}

.hero-text{
flex:1;
opacity:0;
animation:fadeUp .9s cubic-bezier(.16,.84,.44,1) .25s both;
}

.hero-text h1{
    font-size:clamp(34px,6vw,76px);
    line-height:1.05;
    font-weight:800;
    letter-spacing:-2px;
    color:#111;
}

.hero-text h1 span{
    color:#d6a019;
}

.hero-text p{
    max-width:520px;
    font-size:clamp(15px,1.6vw,18px);
    line-height:1.9;
    color:#666;
    margin:35px 0 50px;
}

.features{
display:flex;
align-items:center;
gap:22px;
flex-wrap:wrap;
}

.feature{
display:flex;
align-items:center;
gap:12px;
opacity:0;
animation:fadeUp .6s ease .5s both;
}

.feature span{
font-size:15px;
font-weight:600;
color:#444;
}

.icon{
width:45px;
height:45px;
border:2px solid #D9A320;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
color:#D9A320;
font-size:18px;
transition:transform .4s cubic-bezier(.34,1.56,.64,1);
}

.feature:hover .icon{
    transform:rotate(360deg);
}

.line{
width:1px;
height:30px;
background:#ddd;
}

.hero-image{
flex:1;
position:relative;
display:flex;
justify-content:center;
opacity:0;
animation:scaleIn 1.1s cubic-bezier(.16,.84,.44,1) .4s both;
}

.hero-image img{
    width:100%;
    max-width:620px;
    height:600px;
    object-fit:cover;
    border-radius:30px;
    border-top-right-radius:10px;
    box-shadow:0 30px 60px rgba(0,0,0,.18);
    transition:transform .6s cubic-bezier(.16,.84,.44,1);
}

.hero-image:hover img{
    transform:translateY(-8px);
}

.experience{
    position:absolute;
    right:-30px;
    bottom:35px;

    width:230px;
    height:120px;

    background:#d6a019;

    border-radius:18px;

    display:flex;
    align-items:center;
    gap:18px;

    padding:20px 25px;

    box-shadow:0 25px 40px rgba(0,0,0,.15);

    opacity:0;
    animation:fadeUp .8s cubic-bezier(.16,.84,.44,1) .75s both;
}

.exp-icon{

    width:58px;
    height:58px;

    border-radius:50%;
    background:#111;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;
    font-size:22px;
}

.experience h3{
    font-size:clamp(28px,3.5vw,38px);
    font-weight:800;
}

.experience p{
    font-size:17px;
    margin-top:4px;
}

.services-hero::before{
content:"";
position:absolute;
left:70px;
bottom:40px;
width:70px;
height:70px;
background-image:radial-gradient(#D9A320 1.5px, transparent 1.5px);
background-size:12px 12px;
opacity:.4;
}

.services-hero::after{
content:"";
position:absolute;
right:0;
top:0;
width:240px;
height:240px;
border-top:2px solid #ddd;
border-right:2px solid #ddd;
clip-path:polygon(100% 0,100% 100%,0 0);
opacity:.6;
}

@media(max-width:991px){

.services-hero{
    padding:150px 0 70px;
    min-height:auto;
}

.hero-content{
flex-direction:column;
text-align:center;
gap:45px;
}

.breadcrumb{
    margin-bottom:35px;
}

.hero-image{
    flex:none;
    width:100%;
    display:block;
    text-align:center;
}

.features{
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text p{
    margin:25px auto 35px;
}

.hero-image img{
height:420px;
width:100%;
margin:0 auto;
}

/* The overlay badge is only safe positioned absolute next to a wide
   side-by-side desktop image. Once the hero stacks, it becomes a
   plain block element that sits below the image in normal flow —
   no flex, no absolute positioning, nothing that can push it
   off-screen. */
.experience{
    position:static;
    width:100%;
    height:auto;
    max-width:320px;
    margin:20px auto 0;
}

}

@media(max-width:600px){

.services-hero{
    padding:135px 0 90px;
}

.hero-text h1{
    font-size:32px;
}

.features{
align-items:center;
gap:16px;
}

.line{
display:none;
}

.hero-image img{
height:320px;
}

.experience{
    padding:16px 20px;
    gap:14px;
}

.exp-icon{
    width:46px;
    height:46px;
    font-size:18px;
}

}

@media(max-width:380px){
    .services-hero{ padding:120px 0 70px; }
    .breadcrumb{ margin-bottom:40px; font-size:13px; }
    .hero-text h1{ font-size:27px; }
    .services-hero::before,
    .services-hero::after{ display:none; }
}

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services{
    padding:110px 0;
    background:#faf8f3;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
    opacity:0;
    transform:translateY(30px);
    transition:opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1);
}

.services.in-view .section-title,
.stats-section.in-view .section-title,
.process-modern.in-view .section-title,
.cta-section.in-view .section-title{
    opacity:1;
    transform:translateY(0);
}

.sub-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    color:#d9a320;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.sub-title .line{
    width:45px;
    height:2px;
    background:#d9a320;
}

.section-title h2{
    font-size:clamp(28px,4vw,48px);
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

.section-title p{
    max-width:560px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
    padding:0 20px;
}

.services-grid{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:
        transform .4s cubic-bezier(.16,.84,.44,1),
        box-shadow .4s cubic-bezier(.16,.84,.44,1),
        opacity .7s cubic-bezier(.16,.84,.44,1);
    position:relative;

    opacity:0;
    transform:translateY(0);
}

/* scroll-reveal state (JS toggles .in-view on .services when it enters viewport) */
.services .service-card{
    transform:translateY(50px);
}

.services.in-view .service-card{
    opacity:1;
    transform:translateY(0);
}

.services.in-view .service-card:nth-child(4n+1){ transition-delay:.05s; }
.services.in-view .service-card:nth-child(4n+2){ transition-delay:.15s; }
.services.in-view .service-card:nth-child(4n+3){ transition-delay:.25s; }
.services.in-view .service-card:nth-child(4n+4){ transition-delay:.35s; }

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:transform .6s cubic-bezier(.16,.84,.44,1);
}

.service-card:hover img{
    transform:scale(1.06);
}

.service-card .icon{
    position:absolute;
    left:20px;
    top:195px;
    width:58px;
    height:58px;
    background:#fff;
    border-radius:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#d9a320;
    font-size:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:transform .4s cubic-bezier(.34,1.56,.64,1);
}

.service-card:hover .icon{
    transform:translateY(-4px) rotate(-8deg);
}

.content{
    padding:45px 25px 30px;
}

.content h3{
    font-size:24px;
    margin-bottom:15px;
    color:#111;
}

.content p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

@media(max-width:1200px){
.services-grid{
grid-template-columns:repeat(3,1fr);
}
.services.in-view .service-card:nth-child(3n+1){ transition-delay:.05s; }
.services.in-view .service-card:nth-child(3n+2){ transition-delay:.15s; }
.services.in-view .service-card:nth-child(3n+3){ transition-delay:.25s; }
}

@media(max-width:900px){
.services-grid{
grid-template-columns:repeat(2,1fr);
gap:22px;
}
.services{ padding:80px 0; }
.services.in-view .service-card:nth-child(2n+1){ transition-delay:.05s; }
.services.in-view .service-card:nth-child(2n+2){ transition-delay:.18s; }
}

@media(max-width:600px){
.services-grid{
grid-template-columns:1fr;
}

.services{ padding:70px 0; }
.section-title{ margin-bottom:45px; }

.services.in-view .service-card{ transition-delay:0s !important; }

.content{ padding:40px 22px 26px; }
}

@media(max-width:380px){
.section-title h2{ font-size:26px; }
.section-title p{ font-size:15px; }
.service-card img{ height:190px; }
.service-card .icon{ top:165px; width:50px; height:50px; font-size:19px; }
.content h3{ font-size:21px; }
}

/* =========================================================
   STATS SECTION
   ========================================================= */
.stats-section{
    background:#111;
    padding:45px 0;
    overflow:hidden;
}

.stats-section .container{
    width:90%;
    max-width:1250px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.stat-box{
    display:flex;
    align-items:center;
    gap:18px;

    opacity:0;
    transform:translateY(30px);
    transition:opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}

.stats-section.in-view .stat-box{
    opacity:1;
    transform:translateY(0);
}

.stats-section.in-view .stat-box:nth-child(1){ transition-delay:.05s; }
.stats-section.in-view .stat-box:nth-child(2){ transition-delay:.15s; }
.stats-section.in-view .stat-box:nth-child(3){ transition-delay:.25s; }
.stats-section.in-view .stat-box:nth-child(4){ transition-delay:.35s; }

.stat-icon{
    width:70px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:40px;
    color:#d9a320;
    transition:transform .4s cubic-bezier(.34,1.56,.64,1);
}

.stat-info h2{
    color:#fff;
    font-size:clamp(30px,4vw,46px);
    font-weight:800;
    line-height:1;
    margin-bottom:8px;
}

.stat-info p{
    color:#bdbdbd;
    font-size:16px;
    font-weight:500;
}

.stat-box:hover .stat-icon{
    transform:scale(1.15);
}

.stat-box:hover h2{
    color:#d9a320;
    transition:color .4s;
}

@media(max-width:992px){

.stats-section .container{
grid-template-columns:repeat(2,1fr);
gap:35px;
}

}

@media(max-width:600px){

.stats-section .container{
grid-template-columns:1fr;
text-align:center;
gap:28px;
}

.stat-box{
justify-content:center;
flex-direction:column;
}

}

/* =========================================================
   MODERN PROCESS
   ========================================================= */
.process-modern{
    padding:100px 8%;
    background:#fff;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.process-image{
    position:relative;
    height:650px;
    overflow:hidden;

    opacity:0;
    transform:translateX(-60px);
    transition:opacity .9s cubic-bezier(.16,.84,.44,1), transform .9s cubic-bezier(.16,.84,.44,1);
}

.process-modern.in-view .process-image{
    opacity:1;
    transform:translateX(0);
}

.process-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s cubic-bezier(.16,.84,.44,1);
}

.process-image:hover img{
    transform:scale(1.06);
}

.process-overlay{
    position:absolute;
    bottom:40px;
    left:40px;
    background:#111;
    color:white;
    padding:35px 45px;
    border-left:5px solid #d89b2b;
    max-width:calc(100% - 60px);
}

.process-overlay h2{
    font-size:clamp(38px,4.5vw,60px);
    margin:0;
    color:#d89b2b;
}

.process-overlay p{
    margin:5px 0 0;
    font-size:17px;
}

.process-content{
    opacity:0;
    transform:translateX(60px);
    transition:opacity .9s cubic-bezier(.16,.84,.44,1) .1s, transform .9s cubic-bezier(.16,.84,.44,1) .1s;
}

.process-modern.in-view .process-content{
    opacity:1;
    transform:translateX(0);
}

.process-content span{
    color:#d89b2b;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.process-content h2{
    font-size:clamp(28px,3.5vw,45px);
    line-height:1.2;
    margin:15px 0 20px;
    color:#111;
}

.intro{
    color:#666;
    line-height:1.8;
    margin-bottom:45px;
}

.process-step{
    display:flex;
    gap:30px;
    padding:25px 0;
    border-bottom:1px solid #ddd;
    transition:padding .4s;
}

.process-step:last-child{
    border-bottom:none;
}

.step-number{
    font-size:45px;
    font-weight:800;
    color:#ddd;
    min-width:70px;
    transition:color .4s, transform .4s;
}

.process-step h3{
    margin:0 0 10px;
    font-size:23px;
    color:#111;
}

.process-step p{
    color:#777;
    line-height:1.6;
    margin:0;
}

.process-step:hover .step-number{
    color:#d89b2b;
    transform:translateX(10px);
}

.process-step:hover{
    padding-left:15px;
}

@media(max-width:1000px){

    .process-modern{
        grid-template-columns:1fr;
        gap:50px;
    }

    .process-image{
        height:500px;
        transform:translateY(40px);
    }

    .process-modern.in-view .process-image{
        transform:translateY(0);
    }

    .process-content{
        transform:translateY(40px);
    }

    .process-modern.in-view .process-content{
        transform:translateY(0);
    }

}

@media(max-width:600px){

    .process-modern{
        padding:70px 5%;
    }

    .process-image{
        height:380px;
    }

    .process-overlay{
        left:20px;
        bottom:20px;
        padding:20px;
    }

    .process-step{
        gap:18px;
    }

    .step-number{
        font-size:32px;
        min-width:45px;
    }

}

@media(max-width:420px){

    .process-overlay{
        padding:14px 16px;
        left:14px;
        bottom:14px;
        max-width:calc(100% - 28px);
    }

    .process-overlay h2{
        font-size:32px;
    }

    .process-overlay p{
        font-size:13px;
    }

    .process-content h2{
        font-size:24px;
    }

    .process-step{
        gap:14px;
        padding:18px 0;
    }

    .step-number{
        font-size:26px;
        min-width:36px;
    }

    .process-step h3{
        font-size:19px;
    }

    .process-step p{
        font-size:14px;
    }

}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section{
    padding:120px 8%;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.85),
        rgba(0,0,0,.5)
    ),
    url("https://benews.co.uk/wp-content/uploads/2023/07/shutterstock_617032220.jpg");
    background-size:cover;
    background-position:center;
    position:relative;
    overflow:hidden;
}

.cta-content{
    max-width:800px;
    color:white;

    opacity:0;
    transform:translateY(40px);
    transition:opacity .9s cubic-bezier(.16,.84,.44,1), transform .9s cubic-bezier(.16,.84,.44,1);
}

.cta-section.in-view .cta-content{
    opacity:1;
    transform:translateY(0);
}

.cta-content span{
    color:#d89b2b;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
}

.cta-content h2{
    font-size:clamp(28px,4.5vw,55px);
    line-height:1.15;
    margin:20px 0;
}

.cta-content p{
    color:#ddd;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
}

.cta-buttons{
    display:flex;
    align-items:center;
    gap:25px;
    margin-top:40px;
    flex-wrap:wrap;
}

.cta-primary{
    background:#d89b2b;
    color:#111;
    padding:18px 35px;
    text-decoration:none;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    border-radius:50px;
    transition:background .3s, transform .3s cubic-bezier(.34,1.56,.64,1);
}

.cta-primary:hover{
    background:white;
    transform:translateY(-3px);
}

.cta-phone{
    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:18px;
}

.cta-phone i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#d89b2b;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:transform .4s cubic-bezier(.34,1.56,.64,1);
    flex-shrink:0;
}

.cta-phone:hover i{
    transform:scale(1.12) rotate(10deg);
}

@media(max-width:700px){

    .cta-section{
        padding:80px 5%;
    }

    .cta-content h2{
        font-size:30px;
    }

    .cta-content p{
        font-size:15px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

}

@media(max-width:420px){

    .cta-section{
        padding:60px 6%;
    }

    .cta-buttons{
        width:100%;
    }

    .cta-primary{
        width:100%;
        justify-content:center;
    }

    .cta-phone{
        font-size:15px;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:var(--dark);
    color:#fff;
    padding:80px 8% 0;
}

.footer-container{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-logo .logo-icon{
    width:44px;
    height:44px;
    background:var(--primary);
    color:#111;
    border-radius:50%;
}

.footer-logo h2{
    font-size:28px;
    color:#fff;
}

.footer-about p{
    color:#aaa;
    line-height:1.8;
    margin:22px 0;
    font-size:14px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#222;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--primary);
    color:#111;
}

.footer h3{
    font-size:19px;
    margin-bottom:24px;
    color:#fff;
}

.footer-links a{
    display:block;
    color:#aaa;
    margin-bottom:14px;
    font-size:14px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--primary);
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:12px;
    color:#aaa;
    margin-bottom:16px;
    font-size:14px;
}

.footer-contact i{
    color:var(--primary);
    font-size:20px;
}

.footer-bottom{
    margin-top:55px;
    padding:25px 0;
    border-top:1px solid #2a2a2a;
    display:flex;
    justify-content:space-between;
    color:#888;
    font-size:13px;
}

.footer-bottom div a{
    color:#888;
    margin-left:20px;
    transition:.3s;
}

.footer-bottom div a:hover{
    color:var(--primary);
}



@media(max-width:480px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-contact p{
        justify-content:center;
    }
}
