/* ===================================
   MULANI'S BESPOKE TAILORS
   LUXURY WEBSITE CSS
=================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#f8f4ee;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

/* ===================================
   GLOBAL
=================================== */

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ===================================
   BUTTONS
=================================== */

.primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#c8a96b;
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:.4s ease;
    border:none;
    cursor:pointer;
}

.primary-btn:hover{
    background:#111;
    transform:translateY(-3px);
}

.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,0.5);
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    transition:.4s ease;
}

.secondary-btn:hover{
    background:#fff;
    color:#111;
}

/* ===================================
   SECTION TAG
=================================== */

.section-tag{
    display:inline-block;
    color:#c8a96b;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

/* ===================================
   SECTION HEADER
=================================== */

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header h2{
    font-family:'Cormorant Garamond',serif;
    font-size:62px;
    font-weight:700;
    line-height:1.1;
}

.section-header.light h2{
    color:#fff;
}

/* ===================================
   NAVBAR
=================================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(0,0,0,0.05);
    transition:.4s;
}

.navbar-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    width:180px;
}

.nav-menu{
    display:flex;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links li a{
    color:#222;
    font-size:15px;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.nav-links li a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:#c8a96b;
    left:0;
    bottom:-8px;
    transition:.4s;
}

.nav-links li a:hover::after{
    width:100%;
}

.nav-links li a:hover{
    color:#c8a96b;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.nav-btn{
    background:#c8a96b;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    transition:.4s;
}

.nav-btn:hover{
    background:#111;
}

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#111;
    border-radius:5px;
}

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

.hero{
    position:relative;
    height:100vh;
    background:url('../images/hero.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.35)
    );
}

.hero-container{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:720px;
    color:#fff;
}

.hero-subtitle{
    display:inline-block;
    color:#d4af37;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:14px;
    margin-bottom:20px;
}

.hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:95px;
    line-height:1;
    margin-bottom:25px;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

/* ===================================
   PAGE BANNER
=================================== */

.page-banner{
    position:relative;
    height:70vh;
    background:url('../images/banner.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.page-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.page-banner-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.page-banner-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:80px;
    margin-bottom:20px;
}

.page-banner-content p{
    max-width:720px;
    margin:auto;
    line-height:1.9;
}

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

.about-section{
    padding:120px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:24px;
}

.about-image img{
    border-radius:24px;
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.05);
}

.about-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    margin-bottom:25px;
    line-height:1.1;
}

.about-content p{
    margin-bottom:20px;
    color:#555;
    font-size:16px;
}
/* ===================================
   SERVICES PAGE COMPLETE FIX
=================================== */

.services-intro-section{
    padding:120px 0;
    background:#f8f4ee;
}

.services-intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.services-intro-image{
    overflow:hidden;
    border-radius:24px;
}

.services-intro-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:24px;
    transition:.5s;
}

.services-intro-image:hover img{
    transform:scale(1.05);
}

.services-intro-content h2{
    font-size:58px;
    margin:20px 0;
    line-height:1.1;
    font-family:'Cormorant Garamond',serif;
}

.services-intro-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

/* ===================================
   MAIN SERVICES
=================================== */

.main-services-section{
    padding:120px 0;
    background:#fff;
}

.main-services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    align-items:stretch;
}

.main-service-card{
    background:#faf6ef;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:.4s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.main-service-card:hover{
    transform:translateY(-10px);
}

.service-image{
    width:100%;
    height:320px;
    overflow:hidden;
    flex-shrink:0;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.main-service-card:hover .service-image img{
    transform:scale(1.08);
}

.service-content{
    padding:35px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.service-icon{
    width:72px;
    height:72px;
    min-width:72px;
    background:#c8a96b;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.service-content h3{
    font-size:38px;
    margin-bottom:15px;
    line-height:1.1;
    font-family:'Cormorant Garamond',serif;
}

.service-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

/* SERVICE POINTS */

.service-content ul{
    margin-top:auto;
    padding:0;
}

.service-content ul li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:14px;
    color:#222;
    font-size:15px;
    font-weight:500;
    line-height:1.5;
}

.service-content ul li i{
    color:#c8a96b;
    margin-top:4px;
    font-size:14px;
}

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

.why-choose-section{
    padding:120px 0;
    background:#111;
}

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

.why-box{
    background:rgba(255,255,255,0.05);
    padding:45px 35px;
    border-radius:24px;
    text-align:center;
    transition:.4s ease;
}

.why-box:hover{
    transform:translateY(-10px);
}

.why-box i{
    font-size:42px;
    color:#c8a96b;
    margin-bottom:25px;
}

.why-box h3{
    color:#fff;
    font-size:34px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;
}

.why-box p{
    color:#ccc;
    line-height:1.8;
}

/* ===================================
   MOBILE FIX
=================================== */

@media(max-width:992px){

.services-intro-grid{
    grid-template-columns:1fr;
}

.services-intro-content h2{
    font-size:44px;
}

.main-services-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.main-services-grid{
    grid-template-columns:1fr;
}

.services-intro-image img{
    height:420px;
}

.service-image{
    height:260px;
}

}

@media(max-width:600px){

.services-intro-section,
.main-services-section,
.why-choose-section{
    padding:80px 0;
}

.services-intro-content h2{
    font-size:34px;
}

.service-content{
    padding:28px;
}

.service-content h3{
    font-size:30px;
}

.why-box h3{
    font-size:28px;
}

}
/* ===================================
   PROCESS SECTION
=================================== */

.process-section{
    padding:120px 0;
    background:#111;
}

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

.process-box{
    background:rgba(255,255,255,0.04);
    padding:45px 35px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.05);
    color:#fff;
    transition:.4s;
}

.process-box:hover{
    transform:translateY(-8px);
}

.process-box span{
    font-size:60px;
    color:#c8a96b;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
}

.process-box h3{
    margin:20px 0;
    font-size:26px;
}

.process-box p{
    color:#bbb;
}

/* ===================================
   COLLECTION
=================================== */

.collection-section{
    padding:120px 0;
}

.collection-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.collection-item{
    overflow:hidden;
    border-radius:24px;
}

.collection-item img{
    height:500px;
    object-fit:cover;
    transition:.5s;
}

.collection-item:hover img{
    transform:scale(1.08);
}

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

.contact-section{
    padding:120px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-info h2{
    font-family:'Cormorant Garamond',serif;
    font-size:55px;
    margin-bottom:25px;
}

.contact-box{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.contact-icon{
    min-width:60px;
    height:60px;
    background:#c8a96b;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.contact-details h4{
    margin-bottom:5px;
}

.contact-form{
    background:#fff;
    padding:50px;
    border-radius:24px;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.contact-form h3{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    margin-bottom:30px;
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:18px;
    border:none;
    background:#f5f5f5;
    border-radius:12px;
    font-family:'Montserrat',sans-serif;
    outline:none;
}

.full-btn{
    width:100%;
}

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

.cta-section{
    padding:130px 0;
    background:#111;
    text-align:center;
    color:#fff;
}

.cta-content{
    max-width:850px;
    margin:auto;
}

.cta-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    margin-bottom:25px;
}

.cta-content p{
    margin-bottom:40px;
    line-height:1.9;
}

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

.footer{
    background:#f1ebe2;
    padding:90px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;
    margin-bottom:60px;
}

.footer-logo img{
    width:190px;
    margin-bottom:20px;
}

.footer-description{
    color:#555;
    margin-bottom:25px;
}

.footer-socials{
    display:flex;
    gap:15px;
}

.footer-socials a{
    width:45px;
    height:45px;
    background:#c8a96b;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.footer-socials a:hover{
    background:#111;
}

.footer-column h3{
    font-family:'Cormorant Garamond',serif;
    font-size:32px;
    margin-bottom:25px;
}

.footer-column ul li{
    margin-bottom:14px;
}

.footer-column ul li a{
    color:#555;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#c8a96b;
}

.footer-contact p{
    margin-bottom:18px;
    color:#555;
}

.footer-contact i{
    color:#c8a96b;
    margin-right:10px;
}

.footer-btn{
    display:inline-block;
    margin-top:20px;
    background:#c8a96b;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
}

.footer-bottom{
    border-top:1px solid rgba(0,0,0,0.08);
    padding-top:25px;
    text-align:center;
    color:#777;
}

/* ===================================
   WHATSAPP FLOAT
=================================== */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

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

@media(max-width:992px){

    .nav-menu{
        position:fixed;
        top:85px;
        left:-100%;
        width:100%;
        background:#fff;
        padding:40px;
        transition:.4s;
    }

    .nav-menu.active{
        left:0;
    }

    .nav-links{
        flex-direction:column;
        gap:25px;
    }

    .menu-toggle{
        display:flex;
    }

    .nav-btn{
        display:none;
    }

    .hero-content h1{
        font-size:60px;
    }

    .about-grid,
    .contact-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

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

    .section-header h2,
    .about-content h2,
    .contact-info h2,
    .cta-content h2{
        font-size:48px;
    }

}

@media(max-width:600px){

    .hero{
        height:90vh;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .page-banner-content h1{
        font-size:42px;
    }

    .section-header h2,
    .about-content h2,
    .contact-info h2,
    .cta-content h2{
        font-size:36px;
    }

    .contact-form{
        padding:30px;
    }

}

/* =========================
   COLLECTION GALLERY FIX
========================= */

.collection-gallery-section{
    padding:120px 0;
    background:#f8f4ee;
}

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

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:.4s ease;
    height:450px;
}

.gallery-item:hover{
    transform:translateY(-10px);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* OVERLAY */

.gallery-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:30px;
    background:linear-gradient(to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0));
}

.gallery-overlay h3{
    color:#fff;
    font-size:32px;
    font-family:'Cormorant Garamond',serif;
    margin:0;
}

/* MOBILE */

@media(max-width:768px){

.collection-gallery-grid{
    grid-template-columns:1fr;
}

.gallery-item{
    height:350px;
}

}


<style>

/* =========================
   TABLET
========================= */

@media(max-width:992px){

.container{
    width:92% !important;
}

.page-banner{
    height:55vh !important;
    padding:120px 0 80px !important;
}

.page-banner-content h1{
    font-size:52px !important;
    line-height:1.1 !important;
}

.page-banner-content p{
    font-size:15px !important;
    line-height:1.8 !important;
}

.about-grid,
.services-intro-grid,
.collection-intro-grid,
.experience-grid,
.contact-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:40px !important;
}

.about-content h2,
.services-intro-content h2,
.collection-intro-content h2,
.experience-content h2,
.contact-info h2{
    font-size:42px !important;
}

.hero-content h1{
    font-size:60px !important;
}

.hero-buttons{
    flex-wrap:wrap !important;
}

.main-services-grid,
.collection-gallery-grid,
.philosophy-grid,
.why-grid,
.stats-grid{
    grid-template-columns:1fr 1fr !important;
}

.footer-grid{
    grid-template-columns:1fr 1fr !important;
}

.service-image,
.gallery-item,
.about-image img,
.experience-image img{
    height:auto !important;
}

}

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

@media(max-width:600px){

section{
    padding:70px 0 !important;
}

.container{
    width:92% !important;
}

.page-banner{
    height:auto !important;
    padding:140px 0 90px !important;
}

.page-banner-content h1{
    font-size:38px !important;
    line-height:1.1 !important;
}

.page-banner-content p{
    font-size:14px !important;
    line-height:1.7 !important;
}

.hero{
    height:auto !important;
    padding:180px 0 120px !important;
}

.hero-content h1{
    font-size:42px !important;
    line-height:1.1 !important;
}

.hero-content p{
    font-size:15px !important;
}

.hero-buttons{
    flex-direction:column !important;
    gap:15px !important;
}

.primary-btn,
.secondary-btn,
.nav-btn{
    width:100% !important;
    text-align:center !important;
    justify-content:center !important;
}

.about-grid,
.services-intro-grid,
.collection-intro-grid,
.experience-grid,
.contact-grid,
.footer-grid{
    grid-template-columns:1fr !important;
    gap:35px !important;
}

.main-services-grid,
.collection-gallery-grid,
.philosophy-grid,
.why-grid,
.stats-grid{
    grid-template-columns:1fr !important;
}

.about-content h2,
.services-intro-content h2,
.collection-intro-content h2,
.experience-content h2,
.contact-info h2,
.section-header h2,
.cta-content h2{
    font-size:32px !important;
    line-height:1.2 !important;
}

.service-content h3,
.philosophy-card h3,
.why-box h3{
    font-size:28px !important;
}

.contact-form{
    padding:30px 20px !important;
}

.contact-form h3{
    font-size:30px !important;
}

.about-image img,
.services-intro-image img,
.experience-image img{
    height:320px !important;
    object-fit:cover !important;
}

.service-image{
    height:240px !important;
}

.gallery-item{
    height:320px !important;
}

.service-content,
.philosophy-card,
.why-box,
.stat-box{
    padding:28px 22px !important;
}

.footer{
    padding:70px 0 30px !important;
}

.footer-column h3{
    font-size:28px !important;
}

.whatsapp-float{
    width:58px !important;
    height:58px !important;
    font-size:26px !important;
    bottom:18px !important;
    right:18px !important;
}

}

/* =========================
   EXTRA SMALL DEVICES
========================= */

@media(max-width:400px){

.page-banner-content h1,
.hero-content h1{
    font-size:32px !important;
}

.about-content h2,
.services-intro-content h2,
.collection-intro-content h2,
.experience-content h2,
.contact-info h2{
    font-size:28px !important;
}

.primary-btn,
.secondary-btn{
    padding:14px 20px !important;
    font-size:14px !important;
}

.service-content h3{
    font-size:24px !important;
}

}

</style>