/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:#07162c;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}


/* =========================
   TOPBAR
========================= */

.topbar{
    background:#07162c;
    color:#fff;
    padding:10px 0;
    font-size:12px;
}

.topbar .container{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}


/* =========================
   NAVBAR
========================= */

.navbar{
    position:sticky;
    top:0;
    background:#fff;
    z-index:1000;
    padding:16px 0;
    transition:.3s;
}

.nav-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:55px;
}

nav{
    flex:1;
    display:flex;
    justify-content:center;
}

nav ul{
    display:flex;
    gap:40px;
    align-items:center;
}

nav ul li a{
    color:#07162c;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#c39a63;
}


/* BOOK BUTTON */

.nav-book-btn{
    background:linear-gradient(135deg,#c9a25a,#a67c2d);
    color:#fff;

    padding:13px 24px;

    font-size:12px;
    letter-spacing:1px;

    border-radius:3px;

    transition:.3s;
}

.nav-book-btn:hover{
    transform:translateY(-2px);
}


/* MOBILE MENU BUTTON */

.menu-btn{
    display:none;
    font-size:24px;
    cursor:pointer;
}


/* MOBILE BOOK BUTTON */

.mobile-book{
    display:none;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

/* HERO */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;

    width:500px;

    margin-left:8%;

    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.hero-logo{
    width:130px;
    margin-bottom:40px;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:1.05;
    font-weight:600;
    margin-top: -100px;

    color:#f8f7f2;

    margin-bottom:25px;
}

.hero p{
    color:rgba(255,255,255,.88);
    font-size:20px;
    line-height:1.8;

    max-width:450px;

    margin-bottom:40px;
}

/* PARAGRAPH */

.hero p{
    font-size:20px;
    line-height:1.8;

    color:rgba(255,255,255,.88);

    max-width:480px;

    margin-bottom:40px;
}

/* BUTTON */

.btn-gold{
    display:inline-block;

    background:linear-gradient(135deg,#c9a25a,#a67c2d);

    color:white;
    text-decoration:none;

    padding:18px 40px;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    transition:.3s;
}

.btn-gold:hover{
    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

.hero{
    height:85vh;
}

.hero-img{
    object-position:65% center;
}

.hero-content{
    width:85%;
    max-width:none;
    margin-left:7%;
    margin-top:120px;
}

.hero h1{
    font-size:54px;
    line-height:1.1;
    margin-top:0;
    margin-bottom:20px;
}

.hero p{
    font-size:16px;
    line-height:1.6;
    max-width:280px;
}

.btn-gold{
    padding:14px 24px;
    font-size:12px;
}

}


/* =========================
   TABLET HERO
========================= */

@media(max-width:1024px){

    .hero{
        height:80vh;
    }

    .hero-content{
        left:8%;
        max-width:420px;
    }

    .hero-content h1{
        font-size:64px;
    }

}


/* =========================
   MOBILE HERO
========================= */

@media(max-width:480px){

    .hero{
        height:100vh;
    }

    .hero-content{
        width:90%;
        max-width:330px;
    }

    .hero h1{
        font-size:42px;
        line-height:1.15;
    }

    .hero p{
        font-size:15px;
        max-width:280px;
    }

}
/* =========================
   SECTION COMMON
========================= */

.section{
    padding:100px 0;
}

.heading{
    text-align:center;
    margin-bottom:60px;
}

.heading span{
    display:block;
    color:#c39a63;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:12px;
}

.heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    font-weight:600;
    color:#07162c;
}


/* =========================
   SERVICES GRID
========================= */
.service-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(450px, 500px));
    justify-content:center;
    gap:40px;
}


/* =========================
   CARD
========================= */

.card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;

    box-shadow:
    0 15px 35px rgba(0,0,0,.12);

    transition:.3s;

    display:flex;
    flex-direction:column;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:320px;
    object-fit:cover;
}


/* =========================
   CARD CONTENT
========================= */

.card-content{
    padding:32px;
    flex:1;

    display:flex;
    flex-direction:column;
}

.card-content h3{
    font-size:28px;
    color:#07162c;
    margin-bottom:15px;
}

.card-content p{
    color:#666;
    line-height:1.8;
    font-size:15px;

    flex:1;

    margin-bottom:25px;
}

.card-content a{
    color:#c39a63;

    font-size:13px;
    font-weight:600;

    letter-spacing:1px;

    transition:.3s;
}

.card-content a:hover{
    color:#07162c;
}


/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .heading h2{
        font-size:44px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .section{
        padding:70px 0;
    }

    .heading{
        margin-bottom:40px;
    }

    .heading h2{
        font-size:34px;
    }

    .card img{
        height:240px;
    }

    .card-content{
        padding:24px;
    }

    .card-content h3{
        font-size:24px;
    }

}

/* =========================
   CATEGORY SECTION
========================= */

.categories{
    background:#fff;
    padding:100px 0;
}


/* GRID */

.category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}


/* CARD */

.category{
    position:relative;
    height:500px;

    overflow:hidden;
    border-radius:8px;

    background-size:cover;
    background-position:center;

    transition:.4s ease;
}


/* MEN IMAGE */

.men{
    background-image:url("https://images.unsplash.com/photo-1617137968427-85924c800a22?w=1200&auto=format&fit=crop");
}


/* WOMEN IMAGE */

.women{
    background-image:url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1200&auto=format&fit=crop");
}


.category:hover{
    transform:translateY(-8px);
}


/* OVERLAY */

.overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:30px;

    background:rgba(0,0,0,.45);

    color:#fff;
}


/* TITLE */

.overlay h3{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    font-weight:600;

    margin-bottom:15px;
}


/* TEXT */

.overlay p{
    font-size:16px;
    line-height:1.8;

    max-width:300px;

    margin-bottom:30px;
}


/* BUTTON */

.overlay a{
    color:#fff;

    border:1px solid #fff;

    padding:14px 30px;

    font-size:13px;
    letter-spacing:1px;

    transition:.3s;
}

.overlay a:hover{
    background:#fff;
    color:#07162c;
}


/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .category-grid{
        grid-template-columns:1fr;
    }

    .category{
        height:420px;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .category{
        height:320px;
    }

    .overlay h3{
        font-size:42px;
    }

    .overlay p{
        font-size:14px;
    }

    .overlay a{
        padding:12px 24px;
    }

}
/* =========================
   FEATURES SECTION
========================= */

.features{
    background:#07162c;
    color:#fff;
    padding:90px 0;
}


/* GRID */

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}


/* CARD */

.feature{
    text-align:center;
    padding:20px;
}


/* ICON */

.feature i{
    font-size:38px;
    color:#c39a63;
    margin-bottom:20px;
}


/* TITLE */

.feature h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:12px;
}


/* TEXT */

.feature p{
    color:#ddd;
    font-size:15px;
    line-height:1.8;
}


/* HOVER */

.feature{
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
}


/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .features{
        padding:70px 0;
    }

    .features-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .feature{
        max-width:300px;
        margin:auto;
    }

    .feature i{
        font-size:32px;
    }

    .feature h4{
        font-size:20px;
    }

}
/* =========================
   INFO SECTION
========================= */

.info{
    background:#f8f8f8;
    padding:100px 0;
}


/* GRID */

.info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}


/* CARD */

.info-box{
    background:#fff;

    padding:45px 35px;

    text-align:center;

    border-radius:8px;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    transition:.3s;

    display:flex;
    flex-direction:column;
    justify-content:center;
}


/* HOVER */

.info-box:hover{
    transform:translateY(-8px);
}


/* ICON */

.info-box i{
    font-size:40px;
    color:#c39a63;
    margin-bottom:25px;
}


/* TITLE */

.info-box h4{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    color:#07162c;

    margin-bottom:18px;
}


/* TEXT */

.info-box p{
    color:#666;

    line-height:1.8;

    font-size:15px;

    margin-bottom:25px;

    flex:1;
}


/* LINK */

.info-box a{
    color:#c39a63;

    font-size:13px;
    font-weight:600;

    letter-spacing:1px;

    transition:.3s;
}

.info-box a:hover{
    color:#07162c;
}


/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .info-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .info{
        padding:70px 0;
    }

    .info-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .info-box{
        padding:35px 25px;
    }

    .info-box h4{
        font-size:28px;
    }

}
/* =========================
   FOOTER
========================= */

footer{
    background:#07162c;
    color:#fff;
    padding:80px 0;
}


/* GRID */

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;
}


/* TITLES */

.footer-grid h2{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    font-weight:600;

    margin-bottom:20px;
}

.footer-grid h3{
    font-size:18px;
    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;
}


/* PARAGRAPH */

.footer-grid p{
    color:#ddd;
    line-height:1.8;
}


/* =========================
   NEWSLETTER
========================= */

.newsletter{
    display:flex;
    margin-top:20px;
}


/* INPUT */

.newsletter input{
    flex:1;

    padding:15px;

    border:none;
    outline:none;

    font-size:14px;
}


/* BUTTON */

.newsletter button{
    border:none;

    background:#c39a63;
    color:#fff;

    padding:15px 28px;

    font-size:13px;
    font-weight:500;

    cursor:pointer;

    transition:.3s;
}

.newsletter button:hover{
    background:#a9864f;
}


/* =========================
   SOCIAL ICONS
========================= */

.social{
    margin-top:30px;

    display:flex;
    gap:15px;
}


.social i{
    width:42px;
    height:42px;

    border:1px solid rgba(255,255,255,.2);

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    cursor:pointer;

    transition:.3s;
}

.social i:hover{
    background:#c39a63;
    border-color:#c39a63;
}


/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .footer-grid{
        gap:50px;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;

        text-align:center;
    }

    .newsletter{
        flex-direction:column;
        gap:12px;
    }

    .social{
        justify-content:center;
    }

}

/* =========================
   DESKTOP SETTINGS
========================= */

.menu-btn{
    display:none;
    font-size:24px;
    cursor:pointer;
}

.mobile-book{
    display:none;
}


/* =========================
   TABLET
========================= */

@media(max-width:1024px){

    nav ul{
        gap:20px;
    }

    .nav-book-btn{
        padding:12px 18px;
        font-size:11px;
    }

}


/* =========================
   MOBILE NAVBAR
========================= */

@media(max-width:768px){

    /* TOPBAR */

    .topbar{
        font-size:10px;
        padding:8px 0;
    }

    .topbar .container{
        gap:10px;
    }


    /* NAVBAR */

    .navbar{
        padding:14px 0;
    }

    .nav-content{
        position:relative;
    }

    .logo img{
        height:45px;
    }


    /* HAMBURGER */

    .menu-btn{
        display:block;
    }


    /* HIDE DESKTOP BUTTON */

    .nav-book-btn{
        display:none;
    }


    /* MOBILE MENU */

    nav{
        position:absolute;

        top:100%;
        left:0;

        width:100%;

        background:#fff;

        display:none;

        box-shadow:
        0 15px 30px rgba(0,0,0,.08);
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        gap:0;
    }

    nav ul li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    nav ul li a{
        display:block;
        padding:18px 20px;
    }


    /* MOBILE BUTTON */

    .mobile-book{
        display:block;
        border-bottom:none;
        margin:20px 0;
        text-align:center;
    }

    .mobile-book-btn{
        display:inline-block;

        background:linear-gradient(135deg,#c9a25a,#a67c2d);

        color:#fff;

        padding:14px 24px;

        border-radius:4px;

        font-size:12px;
        letter-spacing:1px;

        transition:.3s;
    }

    .mobile-book-btn:hover{
        transform:translateY(-2px);
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .heading h2{
        font-size:28px;
    }

    .hero{
        height:65vh;
    }

    .hero-content{
        max-width:220px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:13px;
    }

    .btn-gold{
        padding:12px 18px;
        font-size:10px;
    }

}

.page-hero{
    position:relative;
    height:450px;
    overflow:hidden;
}

.page-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.page-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.page-hero .hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
}

.page-hero h1{
    font-family:'Cormorant Garamond', serif;
    font-size:70px;
}

.services-page{
    padding:100px 0;
}

.services-page .service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.services-page .card{
    background:#fff;
    padding:40px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.services-page .card:hover{
 
    transform:translateY(-10px);
}

.navbar{
    position:relative;
    z-index:10000;
}

/* =========================
   SERVICES HERO
========================= */

.page-hero{
    position:relative;
    height:85vh;
    overflow:hidden;
}

.page-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.page-hero .hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(7,22,44,.75),
        rgba(7,22,44,.55)
    );
}

.page-hero .hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:90%;
    max-width:850px;
    z-index:2;
}

.hero-tag{
    display:inline-block;
    color:#c39a63;
    font-size:14px;
    letter-spacing:3px;
    margin-bottom:20px;
}

.page-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:84px;
    line-height:0.95;
    margin-bottom:25px;
    color:#fff;
}

.page-hero p{
    font-size:20px;
    line-height:1.8;
    color:rgba(255,255,255,.9);
    max-width:700px;
    margin:0 auto 40px;
}

/* =========================
   SERVICES SECTION
========================= */

.services-page{
    padding:120px 0;
    background:#fafafa;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(450px, 500px));
    justify-content:center;
    gap:40px;
}

.service-card{
    background:#fff;
    padding:45px 35px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:42px;
    color:#c39a63;
    margin-bottom:25px;
}

.service-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    margin-bottom:15px;
    color:#07162c;
}

.service-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .service-grid{
        grid-template-columns:1fr;
        justify-content:center;
    }

    .page-hero h1{
        font-size:64px;
    }

}

@media(max-width:768px){

    .service-grid{
        grid-template-columns:1fr;
    }

    .page-hero{
        height:70vh;
    }

    .page-hero h1{
        font-size:46px;
    }

    .page-hero p{
        font-size:16px;
    }
}

/* ABOUT HERO */

.about-hero{
    height:90vh;
    position:relative;

    background:url("https://images.unsplash.com/photo-1445205170230-053b83016050?w=1600")
    center/cover;

    display:flex;
    align-items:center;
    justify-content:center;
}

.about-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.about-hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:white;
}

.about-hero-content span{
    color:#c39a63;
    letter-spacing:3px;
}

.about-hero-content h1{
    font-size:80px;
    font-family:'Cormorant Garamond',serif;
    margin:20px 0;
}

.about-hero-content p{
    font-size:20px;
}

/* STORY */

.about-story{
    padding:120px 0;
}

.story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.story-image img{
    border-radius:10px;
}

.story-content span{
    color:#c39a63;
    letter-spacing:2px;
}

.story-content h2{
    font-size:52px;
    margin:20px 0;
    font-family:'Cormorant Garamond',serif;
}

.story-content p{
    color:#666;
    line-height:2;
    margin-bottom:20px;
}

/* DIFFERENCE */

.difference{
    background:#f8f8f8;
    padding:120px 0;
}

.difference-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.diff-card{
    background:white;
    padding:40px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* STATS */

.stats{
    padding:100px 0;
    background:#07162c;
    color:white;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
}

.stats h2{
    font-size:60px;
    color:#c39a63;
}

.stats p{
    margin-top:10px;
}

/* COLLECTION SHOWCASE */

.collections-showcase{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.showcase-box{
    height:500px;
    position:relative;
}

.men-box{
    background:url("https://images.unsplash.com/photo-1617137968427-85924c800a22?w=1200")
    center/cover;
}

.women-box{
    background:url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1200")
    center/cover;
}

.show-content{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;
}

.show-content h2{
    font-size:52px;
    font-family:'Cormorant Garamond',serif;
}

/* PROMISE */

.brand-promise{
    background:#07162c;
    color:white;
    text-align:center;
    padding:120px 0;
}

.brand-promise h2{
    font-size:60px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:30px;
}

.brand-promise p{
    max-width:800px;
    margin:auto;
    line-height:2;
    font-size:20px;
}

/* MOBILE */

@media(max-width:768px){

.story-grid,
.difference-grid,
.stats-grid,
.collections-showcase{
    grid-template-columns:1fr;
}

.about-hero-content h1{
    font-size:42px;
}

.story-content h2{
    font-size:34px;
}

.show-content h2{
    font-size:36px;
}
}

/* CONTACT HERO */

.contact-hero{
    position:relative;
    height:75vh;
    overflow:hidden;
}

.contact-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.contact-hero .hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(7,22,44,.70);
}

.contact-hero .hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:90%;
    max-width:800px;
}

.contact-hero span{
    color:#c39a63;
    letter-spacing:3px;
}

.contact-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:80px;
    margin:20px 0;
}

.contact-hero p{
    font-size:20px;
    line-height:1.8;
}

/* CONTACT INFO */

.contact-info{
    padding:100px 0;
    background:#f8f8f8;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.contact-card{
    background:#fff;
    padding:45px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-card i{
    font-size:40px;
    color:#c39a63;
    margin-bottom:20px;
}

.contact-card h3{
    margin-bottom:15px;
}

/* FORM */

.appointment-section{
    padding:120px 0;
}

.appointment-form{
    max-width:900px;
    margin:auto;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    margin-bottom:20px;
    font-family:'Poppins',sans-serif;
}

.appointment-form textarea{
    resize:none;
}

/* FEATURES */

.contact-features{
    background:#07162c;
    color:#fff;
    padding:100px 0;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-box{
    text-align:center;
    padding:30px;
    border:1px solid rgba(255,255,255,.15);
}

/* MAP */

.map-section{
    padding:120px 0;
}

.map-section iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:10px;
}

/* CTA */

.contact-cta{
    background:#f8f8f8;
    text-align:center;
    padding:100px 0;
}

.contact-cta h2{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    margin-bottom:20px;
}

.contact-cta p{
    margin-bottom:35px;
    color:#666;
}

/* MOBILE */

@media(max-width:768px){

    .contact-grid,
    .feature-grid,
    .form-row{
        grid-template-columns:1fr;
    }

    .contact-hero h1{
        font-size:42px;
    }

    .contact-hero p{
        font-size:16px;
    }

    .contact-cta h2{
        font-size:40px;
    }

}