@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;500&display=swap');

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

body{
    font-family:'Poppins', sans-serif;
    background:#0f0f0f;
    color:#fff;
    scroll-behavior:smooth;
}

/* ================= PREMIUM CURSOR ================= */

body {
    cursor: none;   /* Default cursor hide */
}

.cursor {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 500;
  pointer-events: none;
  z-index: 9999;
  background: rgba(212,175,55,0.08);
  border: 1px solid #d4af37;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.3s ease;
}

.cursor span {
  color: #d4af37;
}

@media (hover: none) and (pointer: coarse){
    body{
        cursor: auto;
    }
    .cursor{
        display:none !important;
    }
}

/* HEADER */
/* ===============================
   HEADER BASE
================================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 80px;
    background:transparent;
    z-index:1000;
    transition:all 0.4s ease;
}

/* Background only on scroll */
header.scrolled{
    background:rgba(10,10,10,0.95);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(198,167,94,0.2);
}

/* ===============================
   LOGO
================================= */

.logo{
    font-family:'Playfair Display', serif;
    font-size:26px;
    font-weight:700;
    letter-spacing:2px;
    background:linear-gradient(90deg,#C6A75E,#f5e6c4,#C6A75E);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.logo img {
    height: 100px;   /* apne header ke hisaab se adjust karein */
    width: auto;
}

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

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

.nav a{
    text-decoration:none;
    color:#ddd;
    font-size:20px;
    letter-spacing:1px;
    position:relative;
    transition:0.3s ease;
}

.nav a:hover{
    color:#C6A75E;
}

/* Underline */
.nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:1px;
    background:#C6A75E;
    transition:0.3s;
}

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

/* ===============================
   DROPDOWN DESKTOP
================================= */

.dropdown{
    position:relative;
}

.dropdown-toggle{
    display:flex;
    align-items:center;
    gap:6px;
}

/* Arrow */
.arrow{
    width:7px;
    height:7px;
    border-right:2px solid #C6A75E;
    border-bottom:2px solid #C6A75E;
    transform:rotate(45deg);
    transition:0.3s;
}

.dropdown:hover .arrow{
    transform:rotate(225deg);
}

/* Dropdown Menu */
.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width:220px;
    background:#111;
    border-radius:12px;
    padding:15px 0;
    border:1px solid rgba(198,167,94,0.2);
    box-shadow:0 20px 40px rgba(0,0,0,0.5);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.3s ease;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:10px 20px;
    font-size:18px;
}

.dropdown-menu a:hover{
    background:rgba(198,167,94,0.1);
    color:#C6A75E;
}

/* ===============================
   SUB DROPDOWN DESKTOP
================================= */

.sub-dropdown{
    position:relative;
}

.sub-toggle{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 20px;
}

.sub-arrow{
    width:6px;
    height:6px;
    border-right:2px solid #C6A75E;
    border-bottom:2px solid #C6A75E;
    transform:rotate(-45deg);
    transition:0.3s;
}

/* Submenu */
.sub-menu{
    position:absolute;
    top:0;
    left:100%;
    min-width:200px;
    background:#111;
    border-radius:10px;
    padding:10px 0;
    border:1px solid rgba(198,167,94,0.2);
    opacity:0;
    visibility:hidden;
    transform:translateX(10px);
    transition:0.3s ease;
}

.sub-dropdown:hover .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}

.sub-dropdown:hover .sub-arrow{
    transform:rotate(135deg);
}

.sub-menu a{
    display:block;
    padding:8px 18px;
    font-size:18px;
}
/* ===============================
   BUTTON
================================= */

.btn {
    display: inline-block;              /* Makes anchor behave like button */
    background: linear-gradient(135deg, #C6A75E, #e6c878);
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    color: #111;
    text-decoration: none;              /* Removes underline */
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

/* Optional: Desktop specific styling */
.desktop-btn {
    font-size: 16px;
}

/* ===============================
   HAMBURGER
================================= */

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

.hamburger span{
    width:25px;
    height:2px;
    background:#C6A75E;
}

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

@media (max-width:768px){

    header{
        padding:18px 25px;
    }

    .desktop-btn{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    /* Sidebar Nav */
    .nav{
        position:fixed;
        top:0;
        left:-100%;
        width:75%;
        height:100vh;
        background:#0a0a0a;
        flex-direction:column;
        align-items:flex-start;
        padding:120px 30px;
        gap:18px;   /* reduced gap */
        transition:0.4s ease;
    }

    .nav.active{
        left:0;
    }

    .nav a{
        font-size:18px;
        width:100%;
        text-align:left;
        margin:0;  /* remove extra spacing */
    }

    /* FIX DROPDOWN SPACING */
    .dropdown{
        width:100%;
    }

    .dropdown-toggle{
        width:100%;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .dropdown-menu{
        position:static;
        background:transparent;
        border:none;
        box-shadow:none;
        padding:5px 0 5px 15px; /* smaller padding */
        margin:0;
        max-height:0;
        overflow:hidden;
        transition:max-height 0.4s ease;
    }

    .dropdown-menu a{
        font-size:15px;
        padding:6px 0;  /* smaller spacing */
    }

    .dropdown.active .dropdown-menu{
        max-height:250px;
    }

    .dropdown.active .arrow{
        transform:rotate(225deg);
    }

    .sub-menu{
        position:static;
        background:transparent;
        border:none;
        padding-left:15px;
        max-height:0;
        overflow:hidden;
        opacity:1;
        visibility:visible;
        transform:none;
        transition:max-height 0.4s ease;
    }

    .sub-dropdown.active .sub-menu{
        max-height:300px;
    }

    .sub-dropdown.active .sub-arrow{
        transform:rotate(135deg);
    }

    .sub-menu a{
        font-size:14px;
        padding:6px 0;
    }
}
/* HERO */
/* ================= PREMIUM HERO ================= */

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Background Video */
.hero video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.6) contrast(1.1);
}

/* Dark Overlay */
.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:radial-gradient(circle at center, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}

/* Content */
.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:800px;
}

/* Luxury Heading */
.hero h1{
    font-family:'Playfair Display', serif;
    font-size:65px;
    font-weight:700;
    letter-spacing:3px;
    line-height:1.2;
    margin-bottom:25px;
    animation:fadeUp 1.5s ease forwards;
}

/* Golden Highlight Effect */
.hero h1 span{
    color:#C6A75E;
}

/* Subtitle */
.hero p{
    font-size:18px;
    color:#ddd;
    letter-spacing:2px;
    margin-bottom:40px;
    animation:fadeUp 2s ease forwards;
}

/* Buttons Container */
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/* Gold Button */
.gold-btn{
    background:linear-gradient(135deg,#C6A75E,#f5e6c4);
    border:none;
    padding:14px 35px;
    border-radius:40px;
    font-weight:600;
    letter-spacing:1px;
    cursor:pointer;
    transition:all 0.4s ease;
    box-shadow:0 0 25px rgba(198,167,94,0.4);
}

.gold-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 0 45px rgba(198,167,94,0.8);
}
.gold-btn,
.outline-btn{
    display: inline-block;   /* IMPORTANT for <a> */
    text-decoration: none;   /* Remove underline */
    text-align: center;
}

.gold-btn,
.gold-btn:visited,
.gold-btn:active {
    color: #111;
    text-decoration: none;
}

.outline-btn,
.outline-btn:visited,
.outline-btn:active {
    color: #C6A75E;
    text-decoration: none;
}

/* Outline Button */
.outline-btn{
    background:transparent;
    border:1px solid #C6A75E;
    color:#C6A75E;
    padding:14px 35px;
    border-radius:40px;
    letter-spacing:1px;
    cursor:pointer;
    transition:0.4s;
}

.outline-btn:hover{
    background:#C6A75E;
    color:#111;
    box-shadow:0 0 25px rgba(198,167,94,0.6);
}

/* Animation */
@keyframes fadeUp{
    from{opacity:0; transform:translateY(60px);}
    to{opacity:1; transform:translateY(0);}
}
/* ================= HAMBURGER ================= */

.hamburger{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    z-index:1100;
}

.hamburger span{
    width:28px;
    height:2px;
    background:#C6A75E;
    transition:0.4s;
}

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

@media(max-width: 900px){

    header{
        padding:20px 30px;
    }

    .desktop-btn{
        display:none;
    }

    .nav{
        position:fixed;
        top:0;
        right:-100%;
        width:100%;
        height:100vh;
        background:#0f0f0f;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:40px;
        transition:0.5s ease;
    }

    .nav a{
        font-size:22px;
        letter-spacing:2px;
    }

    .nav.active{
        right:0;
    }

    .hamburger{
        display:flex;
    }

    /* Hamburger to Cross Animation */
    .hamburger.active span:nth-child(1){
        transform:rotate(45deg) translate(5px,5px);
    }

    .hamburger.active span:nth-child(2){
        opacity:0;
    }

    .hamburger.active span:nth-child(3){
        transform:rotate(-45deg) translate(6px,-6px);
    }
}
/* ================= MOBILE HERO ================= */

@media(max-width: 900px){

    .hero{
        padding:0 20px;
        text-align:center;
    }

    .hero h1{
        font-size:34px;
        line-height:1.3;
        letter-spacing:1px;
    }

    .hero p{
        font-size:14px;
        letter-spacing:1px;
    }

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

    .gold-btn,
    .outline-btn{
        width:100%;
        padding:14px 0;
    }
}

/* ABOUT */
/* ================= MODERN ABOUT ================= */

/* ================= PREMIUM ABOUT ================= */

/* ===========================
   PREMIUM LUXURY ABOUT SECTION
=========================== */

/* =====================================
        PREMIUM LUXURY ABOUT SECTION
===================================== */

.about-premium{
    padding:50px 120px;
    background:radial-gradient(circle at top right,#1a1a1a,#0c0c0c 60%);
    position:relative;
    overflow:hidden;
    color:#fff;
}

/* ================= TOP CONTENT FIX ================= */

/* ================= TOP CENTER ALIGN ================= */

.about-top{
    text-align:center;
    max-width:900px;
    margin:0 auto 80px auto;   /* center + bottom spacing */
}
/* Initially hidden */
.about-image-wrapper,
.about-text-box{
    opacity:0;
    transform:translateX(80px);
    transition: all 1.2s cubic-bezier(.23,1,.32,1);

}

/* Image from left */
.about-image-wrapper{
    transform:translateX(-100px);
}

/* When active */
.about-image-wrapper.active,
.about-text-box.active{
    opacity:1;
    transform:translateX(0);
}

.section-tag{
    display:inline-block;
    font-size:13px;
    letter-spacing:5px;
    color:#C6A75E;
    margin-bottom:15px;
}

.about-top h2{
    font-family:'Playfair Display', serif;
    font-size:52px;
    line-height:1.2;
    font-weight:500;
    margin-bottom:20px;
    color:#fff;
}

.about-top h2 span{
    color:#C6A75E;
}

.section-subtitle{
    font-size:18px;
    color:#b5b5b5;
    line-height:1.7;
    max-width:650px;
    margin:0 auto;  /* center subtitle */
}

/* Luxury floating glow */
.about-premium::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(198,167,94,0.15), transparent 70%);
    top:-150px;
    right:-150px;
    filter:blur(40px);
}

.about-premium::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(198,167,94,0.08), transparent 70%);
    bottom:-150px;
    left:-150px;
    filter:blur(40px);
}

/* =====================================
            MAIN LAYOUT
===================================== */

.about-main{
    display:flex;
    align-items:flex-start;   /* center ki jagah */
    justify-content:space-between;
    gap:120px;
}
/* =====================================
            3D FLIP IMAGE
===================================== */

.about-image-wrapper{
    flex:1;
    display:flex;
    justify-content:center;
    perspective:2000px;
}

.about-flip-card{
    width:520px;
    height:520px;
    border-radius:50%;
    position:relative;
    cursor:pointer;
}

.about-flip-inner{
    width:100%;
    height:100%;
    position:relative;
    transform-style:preserve-3d;
    transition:1.2s cubic-bezier(.16,.8,.3,1);
    border-radius:50%;
}

/* Hover Flip */
.about-flip-card:hover .about-flip-inner{
    transform:rotateY(180deg) scale(1.05);
}

/* Front & Back */
.about-flip-front,
.about-flip-back{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    overflow:hidden;
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
    box-shadow:
        0 80px 150px rgba(0,0,0,0.9),
        0 0 80px rgba(198,167,94,0.2);
}

/* Images */
.about-flip-front img,
.about-flip-back img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

/* Slight zoom on hover */
.about-flip-card:hover img{
    transform:scale(1.08);
}

/* Back */
.about-flip-back{
    transform:rotateY(180deg);
}

/* Golden rotating border */
.about-flip-card::after{
    content:"";
    position:absolute;
    width:560px;
    height:560px;
    border-radius:50%;
    border:2px solid rgba(198,167,94,0.5);
    top:-20px;
    left:-20px;
    animation:rotateBorder 12s linear infinite;
    pointer-events:none;
}

@keyframes rotateBorder{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

/* =====================================
            TEXT OVERLAY ON BACK
===================================== */

.flip-text{
    position:absolute;
    bottom:50px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    padding:20px 35px;
    border-radius:50px;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(12px);
    box-shadow:0 10px 40px rgba(0,0,0,0.6);
}

.flip-text h4{
    margin:0;
    font-size:20px;
    letter-spacing:1px;
    color:#C6A75E;
}

.flip-text p{
    font-size:14px;
    margin-top:8px;
    color:#eee;
}

/* =====================================
            TEXT CONTENT SIDE
===================================== */

.about-text-box{
    flex:1;
}

.about-text-box h3{
    font-family:'Playfair Display', serif;
    font-size:40px;
    margin-bottom:30px;
    line-height:1.3;
    background:linear-gradient(90deg,#C6A75E,#fff,#C6A75E);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-text-box p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:24px;
    color:#cfcfcf;
    font-weight:300;
}

/* =====================================
            PREMIUM BUTTON
===================================== */

.about-btn{
    position:relative;
    display:inline-block;
    padding:16px 45px;
    background:transparent;
    border:1px solid rgba(198,167,94,0.6);
    color:#C6A75E;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;
    text-decoration:none;
    overflow:hidden;
    cursor:pointer;
    transition:all 0.5s ease;
    z-index:1;
}

/* Gold Sliding Background */
.about-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,#C6A75E,#f5e6b3,#C6A75E);
    transition:left 0.6s ease;
    z-index:-1;
}

/* Shine Effect */
.about-btn::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:50%;
    height:100%;
    background:rgba(255,255,255,0.2);
    transform:skewX(-25deg);
    transition:0.7s;
}

/* Hover */
.about-btn:hover::before{
    left:0;
}

.about-btn:hover::after{
    left:130%;
}

.about-btn:hover{
    color:#111;
    transform:translateY(-6px);
    box-shadow:0 15px 50px rgba(198,167,94,0.5);
    border-color:#C6A75E;
}
/* =====================================
            RESPONSIVE
===================================== */

/* ================= MOBILE LUXURY ABOUT SECTION ================= */

/* ============================= */
/*      ABOUT MOBILE VIEW        */
/* ============================= */

@media (max-width:768px){

    .about-premium{
        padding:50px 20px;
        background:#0f0f0f;
    }

    /* ---------- TOP CONTENT ---------- */

    .about-top{
        text-align:center;
        margin-bottom:50px;
    }

    .section-tag{
        font-size:11px;
        letter-spacing:4px;
        color:#C6A75E;
        display:block;
        margin-bottom:12px;
    }

    .about-top h2{
        font-size:26px;
        line-height:1.3;
        font-weight:500;
    }

    .about-top h2 span{
        display:block;
        margin-top:5px;
        color:#C6A75E;
    }

    .section-subtitle{
        font-size:14px;
        line-height:1.6;
        color:#aaa;
        margin-top:10px;
    }

    /* ---------- STACK LAYOUT ---------- */

    .about-main{
        flex-direction:column;
        align-items:center;
        gap:40px;
    }

    /* ---------- IMAGE FIX ---------- */

    .about-image-wrapper{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .about-flip-card{
    width:90%;
    max-width:320px;
    aspect-ratio:3/4;   /* 🔥 FIX */
    height:auto;
    margin:0 auto;
    border-radius:20px;
    overflow:hidden;
    perspective:1000px;
}

    .about-flip-inner{
        position:relative;
        width:100%;
        height:100%;
        transform-style:preserve-3d;
        transition:transform 0.7s ease;
        border-radius:20px;
    }

    .about-image-wrapper,
.about-text-box{
    opacity:1 !important;
    transform:none !important;
}

    /* Tap Flip */
    .about-flip-card:active .about-flip-inner{
        transform:rotateY(180deg);
    }

    .about-flip-front,
    .about-flip-back{
        position:absolute;
        width:100%;
        height:100%;
        top:0;
        left:0;
        backface-visibility:hidden;
        -webkit-backface-visibility:hidden;
        border-radius:20px;
        overflow:hidden;
    }

    .about-flip-back{
        transform:rotateY(180deg);
    }

   .about-flip-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

    /* Remove focus outline */
    .about-flip-card:focus{
        outline:none;
    }


    /* ---------- TEXT SECTION ---------- */

    .about-text-box{
        text-align:center;
        padding:0 10px;
        position:relative;
        z-index:5;
    }

    .about-text-box h3{
        font-size:20px;
        margin-bottom:15px;
    }

    .about-text-box p{
        font-size:14px;
        line-height:1.7;
        color:#b5b5b5;
        margin-bottom:15px;
    }

    /* ---------- BUTTON FIX ---------- */

    .about-btn{
        display:inline-block;
        margin-top:20px;
        padding:14px 36px;
        font-size:13px;
        letter-spacing:2px;
        border:1px solid #C6A75E;
        background:transparent;
        color:#C6A75E;
        border-radius:50px;
        transition:all 0.3s ease;
        cursor:pointer;
    }

    /* Tap effect for mobile */
    .about-btn:active{
        background:#C6A75E;
        color:#000;
        transform:scale(0.96);
    }

}

/* SERVICES */
/* ================= SERVICES EXPAND ================= */

/* ================= SERVICES SECTION ================= */

/* ================= SERVICES SECTION ================= */

.services-luxury{
    padding:50px 0;
    background:#0f0f0f;
    color:#fff;
}

/* ---------- HEADING ---------- */

.services-top{
    text-align:center;
    margin-bottom:50px;
}

.section-tag{
    font-size:12px;
    letter-spacing:5px;
    color:#C6A75E;
    display:block;
    margin-bottom:25px;
    text-transform:uppercase;
}

.services-top h2{
    font-family:'Playfair Display', serif;
    font-size:60px;
    font-weight:500;
    color:#ffffff; /* pure white */
    position:relative;
    display:inline-block;
    line-height:1.2;
    padding-bottom:15px; /* space for underline */
}

/* Premium Animated Underline */
.services-top h2::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:0;
    height:2px;
    background:linear-gradient(90deg,#C6A75E,transparent);
    border-radius:2px;
    animation:underlineGrow 1.4s cubic-bezier(.23,1,.32,1) forwards;
}

@keyframes underlineGrow{
    0%{
        width:0;
        opacity:0;
    }
    100%{
        width:110px;
        opacity:1;
    }
}

/* Underline */
.heading-line{
    width:0;
    height:2px;
    background:#C6A75E;
    margin:20px auto 0;
    animation:lineGrow 1.5s ease forwards;
}

@keyframes lineGrow{
    from{ width:0; }
    to{ width:90px; }
}


/* ---------- EXPAND LAYOUT ---------- */

.services-expand{
    display:flex;
    height:720px;   /* increased height */
}

.service-item{
    flex:1;
    position:relative;
    background-size:cover;
    background-position:center;
    transition:all 0.7s cubic-bezier(.23,1,.32,1);
    display:flex;
    align-items:flex-end;
    padding:50px;
    text-decoration:none;
    color:#fff;
    overflow:hidden;
}

.service-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    transition:0.5s;
}

.service-item:hover{
    flex:3;
}

.service-item:hover::before{
    background:rgba(0,0,0,0.25);
}

/* ---------- CONTENT ---------- */

.service-content{
    position:relative;
    z-index:2;
}

.service-number{
    font-size:70px;
    font-weight:200;
    color:rgba(255,255,255,0.35);
    display:block;
    margin-bottom:10px;
}

.service-content h3{
    font-size:28px;
    font-family:'Playfair Display', serif;
    margin-bottom:10px;
}

/* Hover Text Slide */
.service-hover-text{
    max-height:0;
    overflow:hidden;
    transition:0.6s ease;
}

.service-hover-text p{
    font-size:14px;
    line-height:1.6;
    max-width:300px;
    margin-top:10px;
}

/* Show text on hover */
.service-item:hover .service-hover-text{
    max-height:200px;
}

@media(max-width:900px){

    .services-expand{
        flex-direction:column;
        height:auto;
        padding:0 20px;
        gap:25px;   /* gap between services */
    }

    .service-item{
        flex:unset;
        height:320px;
        border-radius:18px;
        overflow:hidden;
        padding:30px;
        box-shadow:0 15px 35px rgba(0,0,0,0.35);
        transition:0.4s ease;
    }

    .service-item::before{
        background:rgba(0,0,0,0.4);
    }

    /* Slight scale effect on tap */
    .service-item:active{
        transform:scale(0.98);
    }

    .service-number{
        font-size:50px;
    }

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

    .service-hover-text{
        max-height:200px;
    }

    .services-top h2{
        font-size:32px;
        padding-bottom:15px;
    }

    .services-top h2::after{
        width:70px;
    }

    .section-tag{
        font-size:10px;
        letter-spacing:3px;
    }
}

/* PROJECTS */
.projects-wide{
    padding:50px 0;
    background:#0f0f0f;
    overflow:hidden;
    position:relative;
    z-index:1;   /* important */
}

/* SECTION HEADING */
.projects-header{
    text-align:center;
    margin-bottom:80px;
}

.section-tag{
    font-size:13px;
    letter-spacing:4px;
    color:#C6A75E;
    display:block;
    margin-bottom:15px;
}

.projects-header h2{
   font-family:'Playfair Display', serif;
    font-size:52px;
    font-weight:500;
    position:relative;
    display:inline-block;
}
.projects-header h2::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:0;
    height:2px;
    background:linear-gradient(90deg,#C6A75E,transparent);
    border-radius:2px;
    animation:underlineGrow 1.4s cubic-bezier(.23,1,.32,1) forwards;
}

@keyframes underlineGrow{
    0%{
        width:0;
        opacity:0;
    }
    100%{
        width:110px;
        opacity:1;
    }
}
.projects-header p{
    font-size:18px;
    color:#b5b5b5;
    line-height:1.7;
    max-width:650px;
    margin:0 auto;
}

/* SLIDER */
.wide-slider{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.wide-track{
    display:flex;
    gap:60px;
    transition:1s cubic-bezier(.23,1,.32,1);
}

/* SLIDE STYLE */
.wide-slide{
    position:relative;
    width:900px;      /* wider */
    height:450px;     /* lower height */
    border-radius:25px;
    overflow:hidden;
    transform:scale(.8);
    opacity:.4;
    transition:1s ease;
}

.wide-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* DARK OVERLAY */
.wide-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,0,0,.75), transparent);
}

/* ACTIVE CENTER */
.wide-slide.active{
    transform:scale(1);
    opacity:1;
    box-shadow:0 40px 120px rgba(0,0,0,.8);
}

/* TEXT ON SIDE */
.slide-content{
    position:absolute;
    left:60px;
    top:50%;
    transform:translateY(-50%);
    max-width:400px;
    z-index:2;
}

.slide-content h3{
    font-size:34px;
    color:#fff;
    margin-bottom:15px;
    position:relative;
}

/* UNDERLINE */
.slide-content h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:60px;
    height:2px;
    background:#C6A75E;
}

.slide-content p{
    color:#ddd;
    font-size:15px;
    line-height:1.6;
}

/* ARROWS */
.slider-arrow{
    position:absolute;
    width:60px;
    height:60px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.2);
    background:rgba(0,0,0,.5);
    color:#fff;
    cursor:pointer;
    font-size:22px;
    transition:.3s;
    z-index:10;
}

.slider-arrow:hover{
    background:#C6A75E;
    color:#000;
}

.prev{ left:60px; }
.next{ right:60px; }
@media (max-width:768px){

    .projects-wide{
        padding:40px 0;
    }

    .projects-header h2{
        font-size:28px;
    }

    .projects-header p{
        font-size:14px;
        padding:0 20px;
    }

    /* SLIDER WRAPPER */
    .wide-slider{
        overflow:hidden;
        padding:0 15px;
    }

    .wide-track{
        gap:20px;
    }

    /* MAIN SLIDE */
    .wide-slide{
        width:90vw;
        aspect-ratio:16/9;
        height:auto;
        margin:0 auto;
        border-radius:18px;
        transform:scale(.95);
        opacity:.7;
        transition: transform .5s ease, opacity .5s ease, box-shadow .5s ease;
        position:relative;
        overflow:hidden;
    }

   
    /* IMAGE */
    .wide-slide img{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
        border-radius:18px;
        display:block;
    }

    /* TEXT CONTENT */
   /* TEXT CONTENT */
/* TEXT CONTENT FIX */
.slide-content{
    display:block;
    position:absolute;
    bottom:30px;   /* 👈 upar shift */
    left:0;
    right:0;
    padding:12px 18px;
    color:#fff;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.5),
        transparent
    );
    border-radius:18px;
    
    opacity:1;              /* ✅ Always visible */
    transform:none;         /* ✅ Remove animation */
}

.slide-content h3{
    font-size:18px;        /* 👈 Thoda compact */
    font-weight:600;
    margin:0 0 4px;        /* 👈 Gap kam */
    line-height:1.2;
}

.slide-content p{
    font-size:13px;        /* 👈 Slightly smaller */
    line-height:1.3;
    margin:0;
}
    /* ARROWS SMALLER */
    .slider-arrow{
        width:40px;
        height:40px;
        font-size:16px;
        background:rgba(0,0,0,0.5);
        color:#fff;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        transition: background .3s ease;
    }

    .slider-arrow:hover{
        background:rgba(0,0,0,0.8);
    }

    .prev{ left:10px; }
    .next{ right:10px; }
}
/* ================================
   SIGNATURE FAQ SECTION
================================ */

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

/* ================= BOLD LUXURY FAQ ================= */

.faq-luxury{
    padding:50px 10%;
    background:#0a0a0a;
    position:relative;
    overflow:hidden;
}

/* Subtle moving glow background */

.faq-luxury::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(198,167,94,0.15), transparent);
    top:-200px;
    left:-200px;
    filter:blur(140px);
    animation:floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow{
    from{transform:translateY(0);}
    to{transform:translateY(60px);}
}

.faq-luxury-container{
    max-width:1000px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* Heading */

.faq-luxury-heading{
    text-align:center;
    margin-bottom:70px;
}

.faq-luxury-heading h2{
    font-family:'Playfair Display', serif;
    font-size:46px;
    margin-bottom:15px;
}

.faq-luxury-heading span{
    background:linear-gradient(90deg,#C6A75E,#fff,#C6A75E);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.faq-luxury-heading p{
    color:#bbb;
    font-size:16px;
}

/* FAQ CARD */

.luxury-faq-item{
    margin-bottom:25px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(198,167,94,0.3);
    overflow:hidden;
    transition:0.5s;
    position:relative;
}

.luxury-faq-item:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 60px rgba(198,167,94,0.2);
}

/* Gold animated border */

.luxury-faq-item::after{
    content:'';
    position:absolute;
    width:100%;
    height:3px;
    bottom:0;
    left:-100%;
    background:linear-gradient(90deg,#C6A75E,transparent);
    transition:0.6s;
}

.luxury-faq-item.active::after{
    left:0;
}

/* Question */

.luxury-faq-question{
    padding:28px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.luxury-faq-question h4{
    font-size:20px;
    color:#fff;
}

/* Custom Icon */

.icon{
    width:22px;
    height:22px;
    border:2px solid #C6A75E;
    border-radius:50%;
    position:relative;
    transition:0.4s;
}

.icon::before,
.icon::after{
    content:'';
    position:absolute;
    background:#C6A75E;
}

.icon::before{
    width:10px;
    height:2px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.icon::after{
    width:2px;
    height:10px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* Rotate to minus */

.luxury-faq-item.active .icon{
    transform:rotate(180deg);
    box-shadow:0 0 15px rgba(198,167,94,0.7);
}

.luxury-faq-item.active .icon::after{
    opacity:0;
}

/* Answer */

.luxury-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.6s ease, opacity 0.4s ease;
    opacity:0;
}

.luxury-faq-answer p{
    padding:0 30px 30px;
    color:#ccc;
    font-size:15px;
    line-height:1.7;
}

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

@media (max-width:768px){

    .faq-luxury{
        padding:30px 20px;
    }

    /* Reduce heavy glow on mobile */
    .faq-luxury::before{
        width:350px;
        height:350px;
        top:-120px;
        left:-120px;
        filter:blur(100px);
        opacity:0.6;
    }

    .faq-luxury-container{
        max-width:100%;
    }

    /* Heading */
    .faq-luxury-heading{
        margin-bottom:40px;
    }

    .faq-luxury-heading h2{
        font-size:28px;
    }

    .faq-luxury-heading p{
        font-size:13px;
        padding:0 10px;
    }

    /* FAQ Card */
    .luxury-faq-item{
        border-radius:16px;
        margin-bottom:18px;
    }

    .luxury-faq-item:hover{
        transform:none; /* remove heavy hover for mobile */
        box-shadow:none;
    }

    /* Question */
    .luxury-faq-question{
        padding:18px 18px;
    }

    .luxury-faq-question h4{
        font-size:15px;   /* smaller text */
        line-height:1.4;
    }

    /* Icon smaller */
    .icon{
        width:18px;
        height:18px;
    }

    .icon::before{
        width:8px;
        height:2px;
    }

    .icon::after{
        width:2px;
        height:8px;
    }

    /* Answer */
    .luxury-faq-answer p{
        padding:0 18px 18px;
        font-size:13px;   /* smaller paragraph text */
        line-height:1.6;
    }

    .luxury-faq-item.active .luxury-faq-answer{
        max-height:400px; /* allow longer answers */
    }
}
/* ================= PREMIUM DESIGN PROCESS ================= */

/* ================= PREMIUM AUTO PROCESS ================= */

.process-showcase{
    padding:50px 10%;
    background:linear-gradient(135deg,#0f0f0f,#141414);
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* Soft Golden Glow */
.process-showcase::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(circle, rgba(198,167,94,0.2), transparent);
    top:-150px;
    left:-150px;
    filter:blur(120px);
}

.process-container h2{
    font-family:'Playfair Display', serif;
    font-size:42px;
    margin-bottom:60px;
}

.process-container h2 span{
    background:linear-gradient(90deg,#C6A75E,#f5e6c4,#C6A75E);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Slider */

.process-slider{
    position:relative;
    max-width:600px;
    margin:auto;
    height:220px;
}

/* Each Item */

.process-item{
    position:absolute;
    width:100%;
    opacity:0;
    transform:translateY(40px) scale(0.95);
    transition:all 0.8s ease;
}

.process-item.active{
    opacity:1;
    transform:translateY(0) scale(1);
}

/* Step Number */

.process-item span{
    font-size:70px;
    font-family:'Playfair Display', serif;
    background:linear-gradient(180deg,#C6A75E,transparent);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    display:block;
    margin-bottom:15px;
}

/* Title */

.process-item h3{
    font-size:22px;
    color:#C6A75E;
    margin-bottom:10px;
}

/* Description */

.process-item p{
    font-size:15px;
    color:#bbb;
    letter-spacing:1px;
}
/* ================= MOBILE PROCESS SHOWCASE ================= */

@media(max-width: 768px){

    .process-showcase{
        padding:50px 20px;
    }

    .process-container h2{
        font-size:28px;
        margin-bottom:40px;
        line-height:1.3;
    }

    .process-slider{
        height:200px;
        max-width:100%;
    }

   
      .process-slider{
        height:170px;
    }

    .process-item span{
        font-size:40px;
    }

    .process-item h3{
        font-size:16px;
    }

    .process-item p{
        font-size:12px;
    }


}

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

.why-premium{
    padding:50px 10%;
    background:#0f0f0f;
    position:relative;
    overflow:hidden;
}

/* Subtle Golden Glow */
.why-premium::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(198,167,94,0.15), transparent);
    bottom:-200px;
    right:-200px;
    filter:blur(150px);
}

.why-container{
    display:flex;
    gap:80px;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}

/* LEFT SIDE */

.why-content{
    flex:1;
    min-width:320px;
}

.why-content h2{
    font-family:'Playfair Display', serif;
    font-size:42px;
    margin-bottom:20px;
}

.why-content h2 span{
    background:linear-gradient(90deg,#C6A75E,#fff,#C6A75E);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.subtitle{
    color:#bbb;
    margin-bottom:40px;
    letter-spacing:1px;
}

.why-item{
    margin-bottom:30px;
    padding-left:20px;
    border-left:2px solid rgba(198,167,94,0.4);
    transition:0.4s;
}

.why-item h4{
    color:#C6A75E;
    margin-bottom:8px;
    font-size:18px;
}

.why-item p{
    font-size:14px;
    color:#ccc;
    line-height:1.6;
}

.why-item:hover{
    border-left:2px solid #C6A75E;
    transform:translateX(10px);
}

/* RIGHT SIDE */

/* ===== PREMIUM STAT BOXES ===== */

.why-stats{
    display:flex;
    gap:40px;
    margin-top:40px;
    flex-wrap:wrap;
}

.stat-box{
    flex:1;
    min-width:200px;
    padding:40px 30px;
    border-radius:18px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
    border-left:4px solid #C6A75E;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(198,167,94,0.25);
}

/* Number Style */

.stat-box h3{
    font-size:42px;
    font-weight:600;
    color:#C6A75E;
    margin-bottom:10px;
}

.stat-box p{
    font-size:14px;
    letter-spacing:1px;
    color:#ccc;
}

/* Subtle glow pulse */

.stat-box::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:radial-gradient(circle, rgba(198,167,94,0.15), transparent);
    top:-40px;
    right:-40px;
    border-radius:50%;
}

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

/* ================= MOBILE WHY STATS ================= */

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

@media (max-width: 768px){

    .why-premium{
        padding:40px 20px;
        text-align:center;
    }

    .why-container{
        flex-direction:column;
        gap:40px;
    }

    /* ===== LEFT SIDE ===== */

    .why-content{
        min-width:100%;
    }

    .why-content h2{
        font-size:28px;
        line-height:1.3;
        margin-bottom:15px;
    }

    .subtitle{
        font-size:13px;
        margin-bottom:30px;
        line-height:1.6;
    }

    .why-item{
        margin-bottom:20px;
        padding-left:0;
        border-left:none;
        text-align:center;
    }

    .why-item h4{
        font-size:16px;
    }

    .why-item p{
        font-size:13px;
        line-height:1.5;
    }

    /* ===== RIGHT SIDE STATS ===== */

    .why-stats{
        flex-direction:column;
        gap:20px;
        margin-top:10px;
    }

    .stat-box{
        padding:25px 18px;
        border-left:none;
        border-top:3px solid #C6A75E;
        text-align:center;
    }

    .stat-box h3{
        font-size:30px;
        margin-bottom:6px;
    }

    .stat-box p{
        font-size:12px;
        letter-spacing:0.5px;
    }

}

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

.walkthrough-section{
    position:relative;
    height:70vh;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 20px;
}

/* Background Video */

.bg-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* Dark Overlay */

.video-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index:2;
}

/* Content */

.walkthrough-content{
    position:relative;
    z-index:3;
    max-width:800px;
}

.walkthrough-content h2{
    font-family:'Playfair Display', serif;
    font-size:48px;
    margin-bottom:20px;
    color:#fff;
}

.walkthrough-content h2 span{
    background:linear-gradient(90deg,#C6A75E,#fff,#C6A75E);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.walkthrough-content p{
    color:#ddd;
    font-size:16px;
    margin-bottom:35px;
    line-height:1.6;
}

/* Consultation Button */

.consult-btn{
    display:inline-block;
    padding:14px 40px;
    border-radius:40px;
    background:linear-gradient(90deg,#C6A75E,#d4af37);
    color:#000;
    font-weight:600;
    text-decoration:none;
    transition:0.4s ease;
    letter-spacing:1px;
}

.consult-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(198,167,94,0.4);
}
@media(max-width:768px){

    .walkthrough-section{
        height:60vh;
    }

    .walkthrough-content h2{
        font-size:28px;
        line-height:1.3;
    }

    .walkthrough-content p{
        font-size:13px;
        margin-bottom:25px;
    }

    .consult-btn{
        padding:12px 28px;
        font-size:13px;
    }

}

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

.luxury-footer{
    position:relative;
    background:url('../img/faqbackground.png') center/cover no-repeat;
    color:#fff;
    font-family:'Poppins', sans-serif;
}

.footer-overlay{
    padding:120px 10%;
    background:linear-gradient(
        to top,
        rgba(15,15,15,0.8),
        rgba(15,15,15,0.6),
        rgba(15,15,15,0.4)
    );
}

.footer-cta{
    text-align:center;
    margin-bottom:80px;
}

.footer-cta h2{
    font-family:'Playfair Display', serif;
    font-size:42px;
    font-weight:500;
    margin-bottom:20px;
}

.footer-cta p{
    color:#d0d0d0;
    max-width:600px;
    margin:auto;
    line-height:1.6;
    margin-bottom:35px;
}

.footer-grid{
    display:flex;
    justify-content:space-between;
    gap:40px;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:60px;
}

.footer-col h4{
    font-size:18px;
    margin-bottom:18px;
    color:#C6A75E;
}

/* 👇 IMPORTANT UPDATE START */
.footer-col p{
    margin-bottom:10px;
}

.footer-col a{
    color:#bbb;
    text-decoration:none;
    transition:0.3s;
    display:inline-block;
}

.footer-col a:hover{
    color:#C6A75E;
}
/* 👆 IMPORTANT UPDATE END */

.footer-btn{
    display:inline-block;
    padding:14px 40px;
    border-radius:50px;
    border:1.5px solid #C6A75E;
    color:#C6A75E;
    background:transparent;
    text-decoration:none;
    font-weight:500;
    transition:0.4s ease;
}

.footer-btn:hover{
    background:#C6A75E;
    color:#0f0f0f;
    box-shadow:0 15px 35px rgba(198,167,94,0.35);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:20px 8%;
    background:#0d0d0d;
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    font-size:14px;
    color:#aaa;
}

.footer-bottom a{
    color:#C6A75E;
    text-decoration:none;
    transition:0.3s;
}

.footer-bottom a:hover{
    color:white;
}

@media(max-width:768px){

    .faq-luxury{
        padding:40px 6%;
    }

    .faq-luxury-heading h2{
        font-size:30px;
    }

    .footer-overlay{
        padding:80px 6%;
    }

    .footer-grid{
        flex-direction:column;
        gap:30px;
    }

    .footer-bottom-content{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

}

/*---------------------------
Contact Section
-----------------------------*/
/* ================= GLOBAL ================= */

.container{
    max-width:1250px;
    margin:auto;
    padding:0 25px;
}

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

.contact-top{
    position:relative;
    padding:160px 0 90px;
    background:url("../img/contact.jpg") center/cover no-repeat fixed;
    overflow:hidden;
}

.contact-bg-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.85)
    );
}

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

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

.section-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 80px;
}



.section-header h2{
    font-size:60px;
    font-weight:500;
    margin-bottom:30px;
    color:#ffffff;
}

.section-header p{
    color:#d0d0d0;
    font-size:18px;
    line-height:1.9;
}

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

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

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

.contact-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:12px;
    transition:0.6s ease;
}

.contact-image img:hover{
    transform:scale(1.04);
}

/* ================= DETAILS ================= */

.contact-details h2{
    font-size:44px;
    margin-bottom:20px;
    color:#fff;
}

.subtitle{
    color:#c6a75e;
    margin-bottom:50px;
    font-size:18px;
}

.info-item{
    display:flex;
    gap:20px;
    margin-bottom:35px;
    align-items:flex-start;
}

.info-item i{
    font-size:20px;
    color:#fff;
    background:#1a1a1c;
    padding:14px;
    border-radius:50%;
    transition:0.4s ease;
}

.info-item:hover i{
    background:#c6a75e;
    color:#000;
}

.info-item h5{
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:8px;
    text-transform:uppercase;
    color:#fff;
}

.info-item p{
    color:#bbb;
    line-height:1.7;
}

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

.contact-bottom{
    padding:100px 0;
    background:#0b0b0c;
}

/* ================= FORM ================= */

.contact-form h3{
    font-size:38px;
    margin-bottom:50px;
    color:#fff;
}

.form-row{
    display:flex;
    gap:40px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    background:transparent;
    border:none;
    border-bottom:1px solid rgba(255,255,255,0.15);
    padding:18px 0;
    color:#fff;
    font-size:16px;
    margin-bottom:45px;
    transition:0.4s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-bottom:1px solid #c6a75e;
}

.contact-form button{
    background:transparent;
    border:1px solid #c6a75e;
    padding:15px 60px;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    transition:0.4s ease;
    color:#c6a75e;
}

.contact-form button:hover{
    background:#c6a75e;
    color:#000;
}

/* ================= MAP ================= */

.contact-map iframe{
    width:100%;
    height:520px;
    border-radius:12px;
    filter:grayscale(100%) contrast(110%);
}

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

@media(max-width:991px){

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

    .contact-top{
        padding:160px 0 100px;
        background-attachment:scroll;
    }

    .section-header h2{
        font-size:42px;
    }

    .contact-image img,
    .contact-map iframe{
        height:400px;
    }

    .form-row{
        flex-direction:column;
        gap:0;
    }
}

/*------------------------------------
About Section
--------------------------------------*/
.about-page{
    padding:150px 8%;
    background:#0f0f0f;
}

/* HERO */
.about-hero{
    text-align:center;
    margin-bottom:120px;
}

.about-hero h5{
    letter-spacing:4px;
    font-size:14px;
    color:#c6a75e;
    margin-bottom:25px;
    margin-top: 25px;
}

.about-hero h1{
    font-family:'Playfair Display', serif;
    font-size:50px;
    line-height:1.2;
    margin-bottom:25px;
}

.about-hero span{
    display:block;
    background:linear-gradient(90deg,#c6a75e,#f5d76e);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-hero p{
    max-width:700px;
    margin:0 auto;
    color:#aaa;
    font-size:18px;
}

/* STORY SECTION */
.about-story{
    display:flex;
    align-items:center;
    gap:80px;
    margin-bottom:80px;
}

.story-image{
    flex:1;
}

.story-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 30px 70px rgba(0,0,0,0.6);
    transition:0.8s ease;
}

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

.story-content{
    flex:1;
}

.story-content h2{
    font-family:'Playfair Display', serif;
    font-size:36px;
    margin-bottom:30px;
    color:#c6a75e;
}

.story-content p{
    margin-bottom:20px;
    line-height:1.9;
    color:#ccc;
}

/* PHILOSOPHY SECTION */
.design-philosophy{
    text-align:center;
}

.design-philosophy h2{
    font-family:'Playfair Display', serif;
    font-size:42px;
    margin-bottom:60px;
}

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

.philo-card{
    background:#1a1a1a;
    padding:40px;
    border-radius:20px;
    transition:0.5s ease;
    border:1px solid rgba(212,175,55,0.1);
}

.philo-card:hover{
    transform:translateY(-10px);
    border-color:#c6a75e;
}

.philo-card h3{
    color:#c6a75e;
    margin-bottom:20px;
}

.philo-card p{
    color:#aaa;
    line-height:1.8;
}

/* ========================= */
/* MOBILE RESPONSIVE DESIGN  */
/* ========================= */

@media (max-width: 992px){

    .about-page{
        padding:90px 6%;
    }

    /* HERO SECTION */
    .about-hero{
        margin-bottom:70px;
    }

    .about-hero h5{
        font-size:12px;
        letter-spacing:3px;
        margin-bottom:15px;
        margin-top: 30px;
        padding-top: 30px;
    }

    .about-hero h1{
        font-size:34px;
        line-height:1.3;
    }

    .about-hero span{
        font-size:30px;
    }

    .about-hero p{
        font-size:15px;
        line-height:1.7;
        margin-top:15px;
    }

    /* STORY SECTION */
    .about-story{
        flex-direction:column;
        gap:40px;
        margin-bottom:90px;
    }

    .story-image img{
        border-radius:15px;
    }

    .story-content h2{
        font-size:26px;
        margin-bottom:20px;
        text-align:center;
    }

    .story-content p{
        font-size:15px;
        line-height:1.8;
        text-align:center;
    }

    /* PHILOSOPHY */
    .design-philosophy h2{
        font-size:28px;
        margin-bottom:40px;
    }

    .philosophy-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .philo-card{
        padding:30px 20px;
        border-radius:15px;
    }

    .philo-card h3{
        font-size:18px;
        margin-bottom:15px;
    }

    .philo-card p{
        font-size:14px;
        line-height:1.7;
    }
}


/* EXTRA SMALL DEVICES (Very Small Phones) */
@media (max-width: 480px){

    .about-page{
        padding:90px 5%;
    }

    .about-hero h1{
        font-size:28px;
    }

    .about-hero span{
        font-size:24px;
    }

    .about-hero p{
        font-size:14px;
    }

    .story-content h2{
        font-size:22px;
    }

    .design-philosophy h2{
        font-size:24px;
    }
}

/*------------------------------
Project Section
-------------------------------*/
/* ================= PROJECT SECTION ================= */

.projects-section {
    background: #0d0d0d;
    padding: 150px 0;
}

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

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

.section-header h5 {
    color: #c6a75e;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.section-header h2 span {
    color: #c6a75e;
}

.section-header p {
    color: #aaa;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

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

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

/* Staggered Creative Layout */

.projects-grid .project-card:nth-child(1) {
    transform: translateY(40px);
}

.projects-grid .project-card:nth-child(2) {
    transform: scale(1.08);
    z-index: 2;
}

.projects-grid .project-card:nth-child(3) {
    transform: translateY(40px);
}

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

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #161616;
    transition: 0.5s ease;
    cursor: pointer;
}

/* Fixed Image Height for Premium Look */

.project-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: 0.6s ease;
}

/* Hover Zoom */

.project-card:hover img {
    transform: scale(1.1);
}

/* Overlay Always Visible */

.project-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    transition: 0.4s ease;
}

/* Title */

.project-info h4 {
    color: #c6a75e;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 8px;
}

/* Read More */

.read-more {
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid #c6a75e;
    padding-bottom: 3px;
    transition: 0.3s ease;
    text-decoration: none;
}

.read-more:hover {
    color: #c6a75e;
}

/* Premium Hover Glow */

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(198, 167, 94, 0.35);
}

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

@media (max-width: 768px) {

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .projects-grid .project-card:nth-child(1),
    .projects-grid .project-card:nth-child(2),
    .projects-grid .project-card:nth-child(3) {
        transform: none;
    }

    .project-card img {
        height: 300px;
    }

    .project-info {
        padding: 18px;
    }

    .project-info h4 {
        font-size: 16px;
    }

    .read-more {
        font-size: 13px;
    }

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

    .section-header p {
        font-size: 14px;
    }
}

/*-----------------------------------------
Architecture Section
------------------------------------------*/


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

body {
    background: #0b0b0b;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

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

.arch-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.arch-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.arch-hero h1 {
    font-size: 60px;
    color: #fff;
    letter-spacing: 2px;
}

.arch-hero p {
    color: #c6a75e;
    margin-top: 15px;
}

/* ================= INTRO ================= */

.arch-intro {
    padding: 100px 20px;
    text-align: center;
    background: #111;
}

.arch-intro h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.arch-intro p {
    max-width: 750px;
    margin: auto;
    color: #aaa;
    line-height: 1.8;
}

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

.arch-projects {
    padding: 50px 20px;
}

.arch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    background: #111;
}

.grid-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-item.wide {
    grid-column: span 2;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Hover Effect */
.grid-item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.5s ease;
}

.grid-item:hover .grid-overlay {
    opacity: 1;
}

.grid-overlay h3 {
    color: #fff;
    margin-bottom: 10px;
}

.grid-overlay a {
    color: #c6a75e;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #c6a75e;
    width: fit-content;
}

/* Premium Hover Shadow */
.grid-item:hover {
    box-shadow: 0 0 40px rgba(198, 167, 94, 0.25);
}

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

@media (max-width: 992px) {
    .arch-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .grid-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .grid-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .arch-hero h1 {
        font-size: 36px;
    }

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

    .grid-item,
    .grid-item.large,
    .grid-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}


/*-------------------------------------
Residential Section
-------------------------------------*/


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

body {
    background: #0b0b0b;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

.res-hero {
    height: 70vh;
    background: url('../img/images/9.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.res-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.res-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.res-hero h1 {
    font-size: 60px;
    color: #fff;
    letter-spacing: 2px;
}

.res-hero p {
    color: #c6a75e;
    margin-top: 15px;
}

/* ================= INTRO ================= */

.res-intro {
    padding: 100px 20px;
    text-align: center;
    background: #111;
}

.res-intro h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.res-intro p {
    max-width: 750px;
    margin: auto;
    color: #aaa;
    line-height: 1.8;
}

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

.res-projects {
    padding: 50px 20px;
}

.res-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    background: #111;
}

.grid-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-item.wide {
    grid-column: span 2;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Hover Effect */
.grid-item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.5s ease;
}

.grid-item:hover .grid-overlay {
    opacity: 1;
}

.grid-overlay h3 {
    color: #fff;
    margin-bottom: 10px;
}

.grid-overlay a {
    color: #c6a75e;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #c6a75e;
    width: fit-content;
}

/* Premium Hover Shadow */
.grid-item:hover {
    box-shadow: 0 0 40px rgba(198, 167, 94, 0.25);
}

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

@media (max-width: 992px) {
    .res-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .grid-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .grid-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .res-hero h1 {
        font-size: 36px;
    }

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

    .grid-item,
    .grid-item.large,
    .grid-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}


/*----------------------------------------
Commercial Section
----------------------------------------*/
/* ================= GLOBAL ================= */

body {
    background: #0b0b0b;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

.commr-hero {
    height: 70vh;
    background: url('../img/commercial-interior-design.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commr-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.commr-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.commr-hero h1 {
    font-size: 60px;
    color: #fff;
    letter-spacing: 2px;
}

.commr-hero p {
    color: #c6a75e;
    margin-top: 15px;
}

/* ================= INTRO ================= */

.commr-intro {
    padding: 100px 20px;
    text-align: center;
    background: #111;
}

.commr-intro h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.commr-intro p {
    max-width: 750px;
    margin: auto;
    color: #aaa;
    line-height: 1.8;
}

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

.commr-projects {
    padding: 50px 20px;
}

.commr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    background: #111;
}

.grid-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-item.wide {
    grid-column: span 2;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Hover Effect */
.grid-item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.5s ease;
}

.grid-item:hover .grid-overlay {
    opacity: 1;
}

.grid-overlay h3 {
    color: #fff;
    margin-bottom: 10px;
}

.grid-overlay a {
    color: #c6a75e;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #c6a75e;
    width: fit-content;
}

/* Premium Hover Shadow */
.grid-item:hover {
    box-shadow: 0 0 40px rgba(198, 167, 94, 0.25);
}

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

@media (max-width: 992px) {
    .commr-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .grid-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .grid-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .commr-hero h1 {
        font-size: 36px;
    }

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

    .grid-item,
    .grid-item.large,
    .grid-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}


/*-------------------------------------
Hospitality
-------------------------------------*/

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

body {
    background: #0b0b0b;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

.hosp-hero {
    height: 70vh;
    background: url('../img/download.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hosp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hosp-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hosp-hero h1 {
    font-size: 60px;
    color: #fff;
    letter-spacing: 2px;
}

.hosp-hero p {
    color: #c6a75e;
    margin-top: 15px;
}

/* ================= INTRO ================= */

.hosp-intro {
    padding: 100px 20px;
    text-align: center;
    background: #111;
}

.hosp-intro h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.hosp-intro p {
    max-width: 750px;
    margin: auto;
    color: #aaa;
    line-height: 1.8;
}

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

.hosp-projects {
    padding: 50px 20px;
}

.hosp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    background: #111;
}

.grid-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-item.wide {
    grid-column: span 2;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Hover Effect */
.grid-item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.5s ease;
}

.grid-item:hover .grid-overlay {
    opacity: 1;
}

.grid-overlay h3 {
    color: #fff;
    margin-bottom: 10px;
}

.grid-overlay a {
    color: #c6a75e;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #c6a75e;
    width: fit-content;
}

/* Premium Hover Shadow */
.grid-item:hover {
    box-shadow: 0 0 40px rgba(198, 167, 94, 0.25);
}

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

@media (max-width: 992px) {
    .hosp-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .grid-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .grid-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .hosp-hero h1 {
        font-size: 36px;
    }

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

    .grid-item,
    .grid-item.large,
    .grid-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/*---------------------------------
Quote Section
------------------------------------*/

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

.lux-quote {
  background: #0a0a0a;
  padding: 150px 0;
  color: #ddd;
}

/* ================= LEFT SIDE ================= */

.lux-left {
  padding-right: 60px;
}

.lux-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #c6a75e;
  margin-bottom: 20px;
}

.lux-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #fff;
}

.lux-left h2 span {
  color: #c6a75e;
}

.lux-left p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 35px;
}

.lux-contact div {
  margin-bottom: 10px;
  color: #bbb;
}

.lux-contact i {
  color: #c6a75e;
  margin-right: 10px;
}

/* ================= FORM ================= */

.lux-form {
  background: rgba(255,255,255,0.03);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198,167,94,0.15);
  transition: 0.4s ease;
}

.lux-form:hover {
  border-color: rgba(198,167,94,0.4);
}

.lux-form h4 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  margin-bottom: 30px;
}

/* Inputs */

.lux-form input,
.lux-form select,
.lux-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  padding: 14px 5px;
  margin-bottom: 25px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s ease;
}

/* ================= CUSTOM SELECT ================= */

.lux-select-wrapper {
  position: relative;
  margin-bottom: 25px;
}

/* Remove default appearance */
.lux-select-wrapper select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  padding: 14px 40px 14px 5px;
  color: #fff;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Focus Effect */
.lux-select-wrapper select:focus {
  border-color: #c6a75e;
  outline: none;
}

/* Custom Arrow */
.lux-select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #c6a75e;
  font-size: 14px;
  pointer-events: none;
}

/* Dropdown Options Dark */
.lux-select-wrapper select option {
  background: #111;
  color: #fff;
}

/* Remove blue highlight in some browsers */
select:focus option:checked {
  background: #c6a75e;
  color: #000;
}

.lux-form input:focus,
.lux-form select:focus,
.lux-form textarea:focus {
  border-color: #c6a75e;
  outline: none;
}

/* Button */

.lux-btn {
  background: transparent;
  border: 1px solid #c6a75e;
  color: #c6a75e;
  padding: 12px 35px;
  border-radius: 40px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.4s ease;
}

.lux-btn:hover {
  background: #c6a75e;
  color: #000;
  box-shadow: 0 0 20px rgba(198,167,94,0.5);
}

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

@media (max-width: 992px) {

  .lux-left {
    padding-right: 0;
    margin-bottom: 60px;
  }

  .lux-left h2 {
    font-size: 34px;
  }

  .lux-form {
    padding: 35px;
  }

}

/*-------------------------------
Pre Loader
---------------------------------*/

/* ================= PRELOADER ================= */

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-content img {
  width: 120px;
  animation: logoAnim 2s infinite ease-in-out;
  filter: drop-shadow(0 0 10px rgba(198,167,94,0.5));
}

/* Logo Animation */
@keyframes logoAnim {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

/* Hide Loader */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/*----------------------------
Project Details
-----------------------------*/

/* =========================================
   PREMIUM PROJECT DETAIL DESIGN
========================================= */
/* ================= ROOT ================= */
:root {
  --gold: #C6A75E;
  --gold-light: #f5d37a;
  --dark: #0a0a0a;
  --card: #111;
}

/* ================= GLOBAL ================= */
body {
  margin: 0;
  background: #000;
  color: #eee;
  font-family: 'Poppins', sans-serif;
}

.pd-container {
  width: 88%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 120px 0;
}

/* ================= HERO ================= */
.pd-hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), #000 90%);
}

.pd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.pd-hero-content span {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.pd-hero-content h1 {
  font-size: 60px;
  margin: 25px 0;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.pd-hero-content p {
  font-size: 18px;
  color: #bbb;
}

/* ================= OVERVIEW ================= */
.pd-overview-section {
  background: var(--dark);
}

.pd-overview-content {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.pd-overview-content h2 {
  font-size: 40px;
  margin-bottom: 30px;
  color: var(--gold);
}

.pd-overview-content h3 {
  margin-top: 60px;
  font-size: 22px;
  color: #fff;
}

.pd-overview-content p {
  color: #aaa;
  font-size: 17px;
  line-height: 1.9;
}

/* ================= FULL IMAGE (MADE SMALLER) ================= */
.pd-fullimage-section {
  background: #000;
  padding-top: 30px 0px, 30px;
}

.pd-fullimage-section img {
  width: 95%;              /* smaller than before */
  max-width: 1000px;
  display: block;
  margin: auto;
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.9);
  transition: 0.5s ease;
}

.pd-fullimage-section img:hover {
  transform: scale(1.02);
}

/* ================= PREMIUM GALLERY ================= */
/* ================= MODERN LUXURY GALLERY ================= */

.pd-gallery-section {
  background: #000;
  padding: 50px 0;
}

.pd-gallery-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 100px;
  color: #C6A75E;
  font-weight: 500;
  letter-spacing: 2px;
  position: relative;
}

.pd-gallery-section h2::after {
  content: "";
  width: 70px;
  height: 2px;
  background: #C6A75E;
  display: block;
  margin: 18px auto 0;
  opacity: 0.7;
}

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

.pd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.pd-gallery-item {
  position: relative;
  background: #111;
  border-radius: 18px;
  padding: 18px;
  overflow: hidden;              /* Prevent image overflow */
  transition: all 0.4s ease;
  cursor: pointer;               /* SHOW CURSOR */
}

/* Inner Border Frame */
.pd-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(198,167,94,0.3);
  border-radius: 18px;
  pointer-events: none;          /* Prevent cursor block */
  transition: 0.4s ease;
}

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

.pd-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;           /* Full image visible */
  transition: transform 0.6s ease;
  cursor: zoom-in;               /* Proper zoom cursor */
}

/* Hover Effects */
.pd-gallery-item:hover {
  transform: translateY(-6px);
}

.pd-gallery-item:hover::before {
  border-color: #C6A75E;
}

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

/* ================= LIGHTBOX FIX ================= */

/* Ensure cursor works inside lightbox */
.lightbox,
.lightbox img,
.lightbox-content {
  cursor: pointer !important;
}

/* If overlay blocking cursor */
.lightbox::before,
.lightbox::after {
  pointer-events: none;
}

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

@media (max-width: 1024px) {
  .pd-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {

  .pd-gallery-section {
    padding: 30px 0;
  }

  .pd-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pd-gallery-item {
    padding: 14px;
  }

  .pd-gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/* ===============================
   IMAGE LIGHTBOX
=================================*/

.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9999;
  cursor: default !important;   /* 🔥 FORCE CURSOR */
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
}

/* Image cursor */
.lightbox-img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: 20px;
  border: 2px solid rgba(198,167,94,0.6);
  box-shadow: 0 30px 80px rgba(0,0,0,0.9);
  animation: zoomIn 0.4s ease;
  cursor: zoom-out;             /* 👈 Better UX */
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 38px;
  color: #C6A75E;
  cursor: pointer;              /* 👈 Important */
  transition: 0.3s;
  z-index: 10001;
}