/* =======================
   GOOGLE RESET
======================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:white;

    background:
        radial-gradient(circle at top left, rgba(20,184,176,.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(27,138,137,.12), transparent 30%),
        linear-gradient(135deg,#061826 0%,#0A2034 55%,#071827 100%);

    overflow-x:hidden;

}

body::before{

    content:"";

    position:fixed;

    inset:0;

    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:60px 60px;

    pointer-events:none;

    z-index:-2;

}

/* =======================
   BACKGROUND SHAPES
======================= */

.bg-shape{

    position:fixed;
    border-radius:50%;
    filter:blur(120px);
    z-index:-1;
    pointer-events:none;

}

.shape1{

    width:380px;
    height:380px;

    background:#18c2ba;

    top:-120px;
    left:-120px;

    opacity:.16;

}

.shape2{

    width:300px;
    height:300px;

    background:#0E6D75;

    top:280px;
    right:-120px;

    opacity:.14;

}

.shape3{

    width:260px;
    height:260px;

    background:#1B8A89;

    bottom:-100px;
    left:40%;

    opacity:.12;

}

/* =======================
   NAVIGATION
======================= */

header{

    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;

}

.navbar{

    width:90%;
    max-width:1300px;

    margin:25px auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 40px;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

}

.logo{

    display:flex;
    align-items:center;
    gap:15px;

}

.logo img{

    width:130px;

}

.logo-text h2{

    font-size:25px;
    font-weight:700;

}

.logo-text span{

    color:#d7e5eb;
    font-size:14px;

}

/* =======================
   NAV LINKS
======================= */

.nav-links{

    display:flex;
    list-style:none;
    gap:40px;

}

.nav-links a{

    color:white;
    text-decoration:none;

    font-size:15px;

    transition:.3s;

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:#39c6bf;

    transition:.3s;

}

.nav-links a:hover::after,
.nav-links .active::after{

    width:100%;

}

.nav-links a:hover,
.nav-links .active{

    color:#39c6bf;

}

.btn-nav{

    background:#14b8b0;

    color:white;

    text-decoration:none;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

    box-shadow:0 12px 30px rgba(20,184,176,.35);

}

.btn-nav:hover{

    background:white;

    color:#071827;

    transform:translateY(-3px);

}

/* =======================
   HERO
======================= */

.hero{

    min-height:100vh;

    width:90%;
    max-width:1300px;

    margin:0 auto;

    padding-top:180px;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.subtitle{

    display:inline-block;

    color:#39c6bf;

    letter-spacing:3px;

    margin-bottom:20px;

    font-size:14px;

}

.hero h1{

    font-size:65px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    color:#d0d9df;

    line-height:1.9;

    max-width:550px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:#14b8b0;

    color:white;

    text-decoration:none;

    padding:18px 38px;

    border-radius:50px;

    transition:.3s;

    box-shadow:0 12px 35px rgba(20,184,176,.35);

}

.btn-primary:hover{

    background:white;

    color:#071827;

    transform:translateY(-4px);

}

.btn-secondary{

    border:2px solid rgba(255,255,255,.8);

    color:white;

    text-decoration:none;

    padding:18px 38px;

    border-radius:50px;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;

    color:#071827;

    transform:translateY(-4px);

}

/* =======================
   HERO IMAGE
======================= */

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image::before{

    content:"";

    position:absolute;

    width:600px;
    height:450px;

    background:radial-gradient(circle,
    rgba(20,184,176,.30),
    transparent 70%);

    z-index:-2;

}

.hero-image::after{

    content:"";

    position:absolute;

    width:92%;
    height:92%;

    border-radius:40px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(20px);

    z-index:-1;

    transform:translate(18px,18px);

}

.hero-image img{

    width:100%;
    border-radius:35px;

    border:8px solid rgba(255,255,255,.08);

    box-shadow:
        0 30px 70px rgba(0,0,0,.45),
        0 0 60px rgba(20,184,176,.18);

    transition:.5s;

    object-fit:cover;

    animation:float 6s ease-in-out infinite;

}

.hero-image img:hover{

    transform:scale(1.02);

}

/* =======================
   FLOAT ANIMATION
======================= */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/* =======================
   MOBILE MENU
======================= */

.menu-toggle{

    display:none;

    font-size:30px;

    cursor:pointer;

    color:white;

}

.mobile-button{

    display:none;

}


/* ===========================================
   ABOUT HERO
=========================================== */

.about-hero{

    width:90%;
    max-width:1200px;

    margin:auto;

    padding:180px 0 30px;

    text-align:center;

}

.about-hero h1{

    font-size:60px;

    line-height:1.1;

    max-width:900px;

    margin:20px auto;

}

.about-hero p{

    max-width:700px;

    margin:auto;

    color:#d0d9df;

    line-height:1.9;

}

/* ===========================================
   ABOUT SECTION
=========================================== */

.about-section{

    width:90%;
    max-width:1300px;

    margin:100px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image::before{

    content:"";

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(20,184,176,.08);

    border-radius:35px;

    transform:translate(18px,18px);

    z-index:-1;

}

.about-image img{

    width:100%;

    border-radius:35px;

    border:8px solid rgba(255,255,255,.08);

    box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.about-text h2{

    font-size:48px;

    margin:20px 0;

}

.about-text p{

    color:#d0d9df;

    line-height:2;

    margin-bottom:35px;

}

.check-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.check-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:500;

}

.check-list i{

    color:#14b8b0;

    font-size:18px;

}

/* ===========================================
   MISSION • VISION • VALUES
=========================================== */

.values{

    width:90%;
    max-width:1300px;

    margin:120px auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.value-card{

    padding:40px;

    border-radius:25px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    text-align:center;

    transition:.4s;

}

.value-card:hover{

    transform:translateY(-10px);

    background:rgba(20,184,176,.08);

}

.value-card i{

    font-size:45px;

    color:#14b8b0;

    margin-bottom:25px;

}

.value-card h3{

    margin-bottom:20px;

    font-size:24px;

}

.value-card p{

    color:#d0d9df;

    line-height:1.8;

}

/* ===========================================
   WHY CHOOSE US
=========================================== */

.why-section{

    width:90%;
    max-width:1300px;

    margin:120px auto;

    text-align:center;

}

.why-section h2{

    font-size:50px;

    margin:20px 0 60px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    padding:40px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    transition:.4s;

}

.why-card:hover{

    transform:translateY(-10px);

    background:rgba(20,184,176,.08);

}

.why-card i{

    font-size:42px;

    color:#14b8b0;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:20px;

}

.why-card p{

    color:#d0d9df;

    line-height:1.8;

}

/* ===========================================
   INDUSTRIES
=========================================== */

.industries{

    width:90%;
    max-width:1300px;

    margin:120px auto;

    text-align:center;

}

.industries h2{

    font-size:48px;

    margin:20px 0 50px;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.industry-grid div{

    padding:25px;

    background:rgba(255,255,255,.05);

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.industry-grid div:hover{

    background:#14b8b0;

    transform:translateY(-8px);

}

/* ===========================================
   CTA
=========================================== */

.cta{

    width:90%;
    max-width:1200px;

    margin:140px auto;

    padding:80px;

    border-radius:35px;

    text-align:center;

    background:linear-gradient(135deg,#0E6D75,#14b8b0);

}

.cta h2{

    font-size:52px;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:0 auto 40px;

    line-height:1.9;

}

/* ===========================================
   FOOTER
=========================================== */

footer{

    padding:60px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

footer h2{

    margin-bottom:20px;

}

footer p{

    color:#d0d9df;

    margin-bottom:12px;

}

.copyright{

    margin-top:30px;

    font-size:14px;

    color:#8fa4b2;

}

/* ===========================================
   RESPONSIVE
=========================================== */

@media(max-width:992px){

    .about-section{

        grid-template-columns:1fr;

        text-align:center;

    }

    .check-list{

        grid-template-columns:1fr;

    }

    .values{

        grid-template-columns:1fr;

    }

    .why-grid{

        grid-template-columns:1fr;

    }

    .industry-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .about-hero{

        padding-top:150px;

    }

    .about-hero h1{

        font-size:42px;

    }

    .about-text h2{

        font-size:36px;

    }

    .why-section h2{

        font-size:38px;

    }

    .industries h2{

        font-size:38px;

    }

    .cta{

        padding:50px 30px;

    }

    .cta h2{

        font-size:38px;

    }

    .industry-grid{

        grid-template-columns:1fr;

    }

}

/* =======================
   MOBILE MENU
======================= */

.menu-toggle{

    display:none;

    font-size:30px;

    cursor:pointer;

    color:white;

}

.mobile-button{

    display:none;

}

/*==================================================
FAQ HERO
==================================================*/

.faq-hero{
    width:90%;
    max-width:1100px;
    margin:auto;
    padding:210px 0 80px;
    text-align:center;
}

.faq-hero h1{
    font-size:60px;
    font-weight:700;
    margin:20px 0;
    color:#fff;
}

.faq-hero p{
    max-width:700px;
    margin:0 auto 40px;
    color:#d6e2ea;
    line-height:1.8;
    font-size:17px;
}

/*==================================================
SEARCH BAR
==================================================*/

.faq-search{
    max-width:650px;
    margin:40px auto 0;
    padding:18px 25px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:15px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.faq-search:hover{
    border-color:#14b8b0;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.faq-search:focus-within{
    border-color:#14b8b0;
}

.faq-search i{
    color:#14b8b0;
    font-size:18px;
}

.faq-search input{
    width:100%;
    background:none;
    border:none;
    outline:none;
    color:white;
    font-size:16px;
    font-family:'Poppins',sans-serif;
}

.faq-search input::placeholder{
    color:#b8c8d4;
}

/*==================================================
FAQ SECTION
==================================================*/

.faq-section{
    width:90%;
    max-width:950px;
    margin:20px auto;
}

.section-title{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:35px;
}

.section-title i{
    color:#14b8b0;
    font-size:28px;
}

.section-title h2{
    color:white;
    font-size:36px;
    font-weight:700;
}

/*==================================================
FAQ CARD
==================================================*/

.faq-item{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    margin-bottom:18px;
    overflow:hidden;
    transition:.35s;
}

.faq-item:hover{
    border-color:#14b8b0;
    transform:translateY(-3px);
    box-shadow:0 20px 45px rgba(0,0,0,.20);
}

.faq-question{
    width:100%;
    border:none;
    background:none;
    color:#fff;
    cursor:pointer;
    padding:24px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:600;
    font-family:'Poppins',sans-serif;
}

.faq-question i{
    color:#14b8b0;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.faq-answer p{
    padding:0 28px 28px;
    color:#d6e2ea;
    line-height:1.8;
    font-size:15px;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

/*==================================================
CTA
==================================================*/

.cta{
    width:90%;
    max-width:1100px;
    margin:120px auto;
    padding:70px;
    text-align:center;
    border-radius:30px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
}

.cta h2{
    color:white;
    font-size:46px;
    margin-bottom:20px;
}

.cta p{
    max-width:650px;
    margin:auto;
    margin-bottom:35px;
    color:#d6e2ea;
    line-height:1.8;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

    .faq-hero{
        padding:180px 0 60px;
    }

    .faq-hero h1{
        font-size:48px;
    }

    .section-title h2{
        font-size:30px;
    }

}

@media(max-width:768px){

    .faq-hero{
        width:92%;
        padding:160px 0 50px;
    }

    .faq-hero h1{
        font-size:38px;
        line-height:1.2;
    }

    .faq-hero p{
        font-size:16px;
    }

    .faq-search{
        padding:15px 20px;
    }

    .faq-section{
        width:92%;
        margin:70px auto;
    }

    .section-title{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }

    .section-title h2{
        font-size:28px;
    }

    .faq-question{
        font-size:16px;
        padding:22px;
    }

    .faq-answer p{
        padding:0 22px 22px;
    }

    .cta{
        width:92%;
        padding:50px 25px;
    }

    .cta h2{
        font-size:34px;
    }

}

@media(max-width:480px){

    .faq-hero{
        padding-top:140px;
    }

    .faq-hero h1{
        font-size:30px;
    }

    .faq-hero p{
        font-size:15px;
    }

    .faq-search{
        padding:14px 18px;
    }

    .faq-question{
        font-size:15px;
    }

    .section-title h2{
        font-size:24px;
    }

    .cta h2{
        font-size:28px;
    }

}

/* ==========================================
   SERVICES HERO
========================================== */

.services-hero{
    padding: 150px 8% 100px;
    text-align:center;
    position:relative;
}

.services-hero .subtitle{
    display:inline-block;
    color:#2dd4bf;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.services-hero h1{
    font-size:clamp(2.8rem,6vw,4.5rem);
    color:#fff;
    margin-bottom:25px;
    line-height:1.1;
}

.services-hero p{
    max-width:760px;
    margin:0 auto 40px;
    color:#cbd5e1;
    font-size:1.1rem;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ==========================================
   SERVICE SECTIONS
========================================== */

.service-category{
    width:90%;
    max-width:1250px;
    margin:10px auto;
}

.section-title{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:45px;
}

.section-title i{
    color:#2dd4bf;
    font-size:2rem;
}

.section-title h2{
    color:#fff;
    font-size:2rem;
}

/* ==========================================
   GRID
========================================== */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* ==========================================
   SERVICE CARDS
========================================== */

.service-card{

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(45,212,191,.12),
        transparent 60%
    );

    opacity:0;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#2dd4bf;

    box-shadow:0 20px 45px rgba(45,212,191,.18);

}

.service-card:hover::before{

    opacity:1;

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(45,212,191,.15);

    color:#2dd4bf;

    font-size:1.7rem;

    margin-bottom:25px;

}

.service-card h3{

    color:#fff;

    margin-bottom:18px;

    font-size:1.35rem;

}

.service-card p{

    color:#cbd5e1;

    line-height:1.8;

    margin-bottom:25px;

}

.service-card a{

    color:#2dd4bf;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.service-card a:hover{

    letter-spacing:1px;

}

/* ==========================================
   CTA
========================================== */

.services-cta{

    width:90%;

    max-width:1200px;

    margin:120px auto;

    text-align:center;

    padding:80px 40px;

    border-radius:30px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

}

.services-cta h2{

    color:#fff;

    font-size:2.8rem;

    margin:20px 0;

}

.services-cta p{

    color:#cbd5e1;

    max-width:700px;

    margin:0 auto 35px;

    line-height:1.8;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.service-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-hero{

padding:170px 7% 70px;

}

.section-title{

flex-direction:column;

text-align:center;

}

.service-grid{

grid-template-columns:1fr;

}

.services-cta{

padding:60px 25px;

}

.services-cta h2{

font-size:2rem;

}

}


/* ==========================================
   CONTACT HERO
========================================== */

.contact-hero{
    padding:170px 8% 80px;
    text-align:center;
    position:relative;
}

.contact-hero .subtitle{
    display:inline-block;
    color:#2dd4bf;
    font-size:.95rem;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.contact-hero h1{
    color:#fff;
    font-size:clamp(2.8rem,6vw,4.5rem);
    margin-bottom:25px;
}

.contact-hero p{
    max-width:760px;
    margin:0 auto 35px;
    color:#cbd5e1;
    line-height:1.8;
    font-size:1.1rem;
}


/* ==========================================
   CONTACT GRID
========================================== */

.contact-section{
    width:90%;
    max-width:1250px;
    margin:40px auto 90px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* ==========================================
   CONTACT CARD
========================================== */

.contact-card{

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    transition:.35s ease;

}

.contact-card:hover{

    transform:translateY(-10px);

    border-color:#2dd4bf;

    box-shadow:0 20px 45px rgba(45,212,191,.20);

}

.contact-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(45,212,191,.15);

    color:#2dd4bf;

    font-size:2rem;

}

.contact-card h3{

    color:#fff;

    margin-bottom:15px;

    font-size:1.5rem;

}

.contact-card p{

    color:#cbd5e1;

    line-height:1.8;

    margin-bottom:20px;

}

.coming-soon{

    display:inline-block;

    padding:10px 22px;

    border-radius:30px;

    background:rgba(45,212,191,.15);

    color:#2dd4bf;

    font-weight:600;

}

/* Contact Information */

.contact-info{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

    margin-top:20px;

}

.contact-info a{

    color:#2dd4bf;

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;

}

.contact-info a:hover{

    color:#5eead4;

    text-decoration:underline;

}

.contact-info span{

    color:#2dd4bf;

    font-weight:600;

}

/* ==========================================
   BUSINESS HOURS
========================================== */

.business-hours{

    width:90%;

    max-width:900px;

    margin:80px auto;

}

.hours-card{

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:45px;

}

.hours-grid{

    margin-top:35px;

}

.hour-row{

    display:flex;

    justify-content:space-between;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    color:#fff;

}

.hour-row:last-child{

    border-bottom:none;

}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-contact{

    width:90%;

    max-width:1250px;

    margin:100px auto;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading h2{

    color:#fff;

    font-size:2.5rem;

    margin:20px 0;

}

.section-heading p{

    color:#cbd5e1;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.why-card{

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#2dd4bf;

    box-shadow:0 18px 40px rgba(45,212,191,.18);

}

.why-card i{

    font-size:2.4rem;

    color:#2dd4bf;

    margin-bottom:20px;

}

.why-card h3{

    color:#fff;

    margin-bottom:15px;

}

.why-card p{

    color:#cbd5e1;

    line-height:1.8;

}

/* ==========================================
   CONTACT CTA
========================================== */

.contact-cta{

    width:90%;

    max-width:1200px;

    margin:120px auto;

    text-align:center;

    padding:80px 40px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

}

.contact-cta h2{

    color:#fff;

    font-size:2.8rem;

    margin:20px 0;

}

.contact-cta p{

    color:#cbd5e1;

    max-width:700px;

    margin:0 auto 35px;

    line-height:1.8;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px){

.contact-hero{

padding:150px 7% 60px;

}

.contact-grid{

grid-template-columns:1fr;

}

.hours-card{

padding:30px;

}

.hour-row{

font-size:.95rem;

}

.section-heading h2{

font-size:2rem;

}

.contact-cta{

padding:60px 25px;

}

.contact-cta h2{

font-size:2rem;

}

}