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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #000;
}

/* Header */
header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    background: transparent; 
    transition: all 0.4s ease; 
}

header.scrolled { 
    background: rgba(255,255,255,0.97); 
    box-shadow: 0 2px 20px rgba(0,0,0,0.08); 
    backdrop-filter: blur(10px); 
}

header.scrolled .logo-text, 
header.scrolled nav ul li a { 
    color: #1a1a2e; 
}

header.scrolled .enquire-btn { 
    color: #fff !important; 
}

.header-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 18px 30px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-text { 
    font-family: 'Poppins', sans-serif; 
    font-size: 22px; 
    font-weight: 600; 
    color: #fff; 
    letter-spacing: 1px; 
    transition: color 0.4s; 
}

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 35px; 
    align-items: center; 
}

nav ul li a { 
    text-decoration: none; 
    color: rgba(255,255,255,0.9); 
    font-size: 13px; 
    font-weight: 500; 
    text-transform: uppercase; 
    transition: all 0.3s ease; 
    letter-spacing: 1px; 
    position: relative;\n    animation: fadeInDown 0.6s ease forwards;\n}\n\nnav ul li:nth-child(1) a { animation-delay: 0.1s; }\nnav ul li:nth-child(2) a { animation-delay: 0.2s; }\nnav ul li:nth-child(3) a { animation-delay: 0.3s; }\nnav ul li:nth-child(4) a { animation-delay: 0.4s; }\nnav ul li:nth-child(5) a { animation-delay: 0.5s; }\nnav ul li:nth-child(6) a { animation-delay: 0.6s; }\nnav ul li:nth-child(7) a { animation-delay: 0.7s; }\nnav ul li:nth-child(8) a { animation-delay: 0.8s; }

nav ul li a::after { 
    content: ''; 
    position: absolute; 
    bottom: -4px; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: linear-gradient(90deg, #c9a84c, #dfc67a); 
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    box-shadow: 0 0 10px rgba(201,168,76,0.3);\n}

nav ul li a:hover::after { 
    width: 100%; 
    box-shadow: 0 0 20px rgba(201,168,76,0.5);\n}

nav ul li a:hover { 
    color: #c9a84c;
    text-shadow: 0 0 10px rgba(201,168,76,0.3);
    
}

.enquire-btn { 
    background: #c9a84c; 
    color: #fff !important; 
    padding: 10px 28px; 
    border-radius: 2px; 
    transition: all 0.3s; 
    letter-spacing: 1.5px; 
}

.enquire-btn::after { 
    display: none !important; 
}

.enquire-btn:hover { 
    background: #b8962a; 
    transform: translateY(-1px); 
}

.mobile-menu { 
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
}

.mobile-menu span { 
    width: 25px; 
    height: 2px; 
    background: #fff; 
    margin: 3px 0; 
    transition: background 0.4s; 
}

header.scrolled .mobile-menu span { 
    background: #1a1a2e; 
}

/* Hero */
.hero { 
    position: relative; 
    height: 100vh; 
    min-height: 700px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    overflow: hidden; 
}

.hero-bg { 
    position: absolute; 
    inset: 0; 
    z-index: 0; 
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: url("images/hero image.webp") center/cover no-repeat;
    z-index: 1;
}

.hero-bg-shimmer { 
    position: absolute; 
    inset: 0; 
    z-index: 2; 
    background: none; 
}

@keyframes shimmer { 
    0% { 
        opacity: 0.6; 
        transform: translateY(0); 
    } 
    100% { 
        opacity: 1; 
        transform: translateY(-10px); 
    } 
}

.hero-particles { 
    position: absolute; 
    inset: 0; 
    z-index: 3; 
    overflow: hidden; 
}

.particle { 
    position: absolute; 
    width: 3px; 
    height: 3px; 
    background: rgba(201,168,76,0.4); 
    border-radius: 50%; 
    animation: float-up linear infinite; 
}

.particle:nth-child(1) { 
    left: 10%; 
    animation-duration: 12s; 
    animation-delay: 0s; 
    width: 2px; 
    height: 2px; 
}

.particle:nth-child(2) { 
    left: 25%; 
    animation-duration: 15s; 
    animation-delay: 2s; 
}

.particle:nth-child(3) { 
    left: 40%; 
    animation-duration: 10s; 
    animation-delay: 4s; 
    width: 4px; 
    height: 4px; 
}

.particle:nth-child(4) { 
    left: 55%; 
    animation-duration: 14s; 
    animation-delay: 1s; 
    width: 2px; 
    height: 2px; 
}

.particle:nth-child(5) { 
    left: 70%; 
    animation-duration: 11s; 
    animation-delay: 3s; 
}

.particle:nth-child(6) { 
    left: 85%; 
    animation-duration: 13s; 
    animation-delay: 5s; 
    width: 2px; 
    height: 2px; 
}

.particle:nth-child(7) { 
    left: 15%; 
    animation-duration: 16s; 
    animation-delay: 6s; 
}

.particle:nth-child(8) { 
    left: 60%; 
    animation-duration: 9s; 
    animation-delay: 2.5s; 
    width: 4px; 
    height: 4px; 
    opacity: 0.3; 
}

.particle:nth-child(9) { 
    left: 90%; 
    animation-duration: 12s; 
    animation-delay: 7s; 
    width: 2px; 
    height: 2px; 
}

.particle:nth-child(10) { 
    left: 35%; 
    animation-duration: 14s; 
    animation-delay: 1.5s; 
}

@keyframes float-up { 
    0% { 
        transform: translateY(100vh) scale(0); 
        opacity: 0; 
    } 
    10% { 
        opacity: 1; 
        transform: translateY(90vh) scale(1); 
    } 
    90% { 
        opacity: 0.5; 
    } 
    100% { 
        transform: translateY(-10vh) scale(0.3); 
        opacity: 0; 
    } 
}

.hero-horizon { 
    position: absolute; 
    bottom: 35%; 
    left: 0; 
    right: 0; 
    height: 1px; 
    background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.15) 20%, rgba(201,168,76,0.3) 50%, rgba(201,168,76,0.15) 80%, transparent 100%); 
    z-index: 3; 
}

.hero-water { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    height: 0; 
    z-index: 3; 
}

.hero-water::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(74,144,196,0.03) 3px, rgba(74,144,196,0.03) 6px); 
    animation: water-move 4s linear infinite; 
}

@keyframes water-move { 
    0% { 
        transform: translateY(0); 
    } 
    100% { 
        transform: translateY(6px); 
    } 
}

.hero-overlay { 
    position: absolute; 
    inset: 0; 
    z-index: 4; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.55) 100%);
}

.hero-content { 
    position: relative; 
    z-index: 10; 
    text-align: center; 
    max-width: 1000px; 
    padding: 0 20px; 
}



.hero h2 { 
    font-family: 'Poppins', serif; 
    font-size: 58px; 
    font-weight: 700; 
    margin-bottom: 8px; 
    line-height: 1.15; 
    animation: fadeInUp 1s ease 0.5s both; 
    letter-spacing: -0.5px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 4px 20px rgba(0,0,0,0.3);
}

.hero h2 .gold-text { 
    color: #c9a84c; 
    font-style: italic; 
}

.hero-subtitle { 
    font-family: 'Poppins', sans-serif; 
    font-size: 22px; 
    font-weight: 400; 
    font-style: italic; 
    color: rgba(255,255,255,0.95);
    margin-bottom: 15px; 
    animation: fadeInUp 1s ease 0.65s both; 
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-location { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 14px; 
    font-weight: 500; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    color: #fff; 
    margin-bottom: 35px; 
    animation: fadeInUp 1s ease 0.8s both; 
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(201,168,76,0.5); 
    padding: 10px 28px; 
    border-radius: 50px; 
    backdrop-filter: blur(8px);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-description { 
    font-size: 15px; 
    line-height: 1.9; 
    margin-bottom: 15px; 
    font-weight: 300; 
    color: rgba(255,255,255,0.75); 
    max-width: 720px; 
    margin-left: auto; 
    margin-right: auto; 
    animation: fadeInUp 1s ease 0.9s both; 
}

.hero-price { 
    display: block; 
    font-size: 22px; 
    font-weight: 700; 
    color: #fff; 
    margin-bottom: 35px; 
    animation: fadeInUp 1s ease 0.95s both; 
    letter-spacing: 1px; 
    background: linear-gradient(135deg, rgba(201,168,76,0.95), rgba(184,150,42,0.95)); 
    padding: 14px 40px; 
    border-radius: 4px; 
    box-shadow: 0 4px 30px rgba(201,168,76,0.5);\n    text-shadow: 0 1px 4px rgba(0,0,0,0.2);\n}

.hero-price span { 
    font-size: 14px; 
    font-weight: 400; 
    color: rgba(255,255,255,0.8); 
}

.hero-cta { 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    flex-wrap: wrap; 
    margin-bottom: 50px; 
    animation: fadeInUp 1s ease 1s both; 
}

.cta-primary { 
    padding: 14px 40px; 
    background: #c9a84c; 
    color: #fff; 
    border: none; 
    border-radius: 2px; 
    font-size: 13px; 
    font-weight: 600; 
    cursor: pointer; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    transition: all 0.4s ease; 
    font-family: 'Poppins', sans-serif; 
    position: relative; 
    overflow: hidden;\n    animation: fadeInUp 0.8s ease 0.6s both;\n}

.cta-primary::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent); 
    transform: translateX(-100%); 
    transition: transform 0.6s; 
}

.cta-primary:hover::before { 
    transform: translateX(100%); 
}

.cta-primary:hover { 
    background: #b8962a; 
    transform: translateY(-3px) scale(1.05); 
    box-shadow: 0 15px 40px rgba(201,168,76,0.4); 
}

.cta-secondary { 
    padding: 14px 40px; 
    background: transparent; 
    color: #fff; 
    border: 1px solid rgba(255,255,255,0.3); 
    border-radius: 2px; 
    font-size: 13px; 
    font-weight: 500; 
    cursor: pointer; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    transition: all 0.4s ease; 
    font-family: 'Poppins', sans-serif; 
}

.cta-secondary:hover { 
    border-color: #c9a84c; 
    color: #c9a84c;\n    background: rgba(201,168,76,0.1);\n    transform: translateY(-3px);\n    box-shadow: 0 10px 30px rgba(201,168,76,0.25);\n}

.hero-stats { 
    display: flex; 
    justify-content: center; 
    gap: 0; 
    animation: fadeInUp 1s ease 1.1s both; 
}

.hero-stat { 
    padding: 0 40px; 
    text-align: center; 
    border-right: 1px solid rgba(255,255,255,0.12); 
}

.hero-stat:last-child { 
    border-right: none; 
}

.hero-stat-value { 
    font-family: 'Playfair Display', serif; 
    font-size: 28px; 
    font-weight: 700; 
    color: #c9a84c; 
    line-height: 1; 
    margin-bottom: 6px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero-stat-label { 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.scroll-indicator { 
    position: absolute; 
    bottom: 35px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 10; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px; 
    animation: fadeInUp 1s ease 1.4s both; 
}

.scroll-indicator span { 
    font-size: 10px; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    color: rgba(255,255,255,0.4); 
}

.scroll-line { 
    width: 1px; 
    height: 40px; 
    background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent); 
    animation: scroll-pulse 2s ease-in-out infinite; 
}

@keyframes scroll-pulse { 
    0%, 100% { 
        opacity: 0.3; 
        transform: scaleY(0.6); 
        transform-origin: top; 
    } 
    50% { 
        opacity: 1; 
        transform: scaleY(1); 
    } 
}

@keyframes fadeInUp { 
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

@keyframes fadeInDown { 
    from { 
        opacity: 0; 
        transform: translateY(-20px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

@keyframes slideInLeft { 
    from { 
        opacity: 0; 
        transform: translateX(-50px); 
    } 
    to { 
        opacity: 1; 
        transform: translateX(0); 
    } 
}

@keyframes slideInRight { 
    from { 
        opacity: 0; 
        transform: translateX(50px); 
    } 
    to { 
        opacity: 1; 
        transform: translateX(0); 
    } 
}

@keyframes scaleIn { 
    from { 
        opacity: 0; 
        transform: scale(0.9); 
    } 
    to { 
        opacity: 1; 
        transform: scale(1); 
    } 
}

@keyframes glow { 
    0% { 
        box-shadow: 0 0 10px rgba(201,168,76,0); 
    } 
    50% { 
        box-shadow: 0 0 20px rgba(201,168,76,0.4); 
    } 
    100% { 
        box-shadow: 0 0 10px rgba(201,168,76,0); 
    } 
}

@keyframes bounce { 
    0%, 100% { 
        transform: translateY(0); 
    } 
    50% { 
        transform: translateY(-10px); 
    } 
}

@keyframes gradientShift { 
    0% { 
        background-position: 0% 50%; 
    } 
    50% { 
        background-position: 100% 50%; 
    } 
    100% { 
        background-position: 0% 50%; 
    } 
}

@keyframes hoverLift { 
    0% { 
        transform: translateY(0px); 
    } 
    100% { 
        transform: translateY(-8px); 
    } 
}

/* Sections shared */
.section-title { 
    text-align: center; 
    margin-bottom: 50px;
    animation: fadeInDown 0.7s ease;
}

.section-title h3 { 
    font-family: 'Poppins', sans-serif; 
    font-size: 34px; 
    font-weight: 600; 
    color: #1a1a2e; 
    margin-bottom: 20px;
    position: relative;\n    display: inline-block;\n    padding-bottom: 15px;\n}\n\n.section-title h3::after {\n    content: '';\n    position: absolute;\n    bottom: 0;\n    left: 50%;\n    transform: translateX(-50%);\n    width: 80px;\n    height: 3px;\n    background: linear-gradient(90deg, transparent, #c9a84c, transparent);\n    animation: slideInRight 1s ease 0.3s both;\n}

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

.form-group input { 
    width: 100%; 
    padding: 13px 16px; 
    border: 1px solid #e0e0e0; 
    border-radius: 3px; 
    font-size: 14px; 
    font-family: 'Poppins', sans-serif; 
    transition: border-color 0.3s; 
}

.form-group input:focus { 
    outline: none; 
    border-color: #c9a84c; 
}

.checkbox-label { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    color: #333; 
    font-size: 13px; 
    margin-bottom: 15px; 
}

.submit-btn { 
    width: 100%; 
    padding: 14px; 
    background: #c9a84c; 
    color: #fff; 
    border: none; 
    border-radius: 3px; 
    font-size: 14px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-family: 'Poppins', sans-serif; 
}

.submit-btn:hover { 
    background: #b8962a; 
    transform: translateY(-1px); 
}

/* Overview */
.overview { 
    padding: 80px 20px; 
    background: #f9f9f9; 
}

.overview-grid { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
}

.overview-item { 
    
    border-radius: 8px; 
}

.overview-item img { 
    width: 100%; 
    height: 280px; 
    object-fit: cover; 
    border-radius: 8px; 
    transition: transform 0.5s ease; 
}

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

.overview-content { 
    max-width: 1200px; 
    margin: 40px auto 0; 
    text-align: center; 
}

.overview-content p { 
    font-size: 16px; 
    line-height: 1.8; 
    color: #000000; 
    margin-bottom: 30px; 
}

.download-brochure { 
    display: inline-block; 
    padding: 12px 30px; 
    background: #c9a84c; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 3px; 
    font-weight: 600; 
    transition: all 0.3s; 
    letter-spacing: 1px; 
}

.download-brochure:hover { 
    background: #b8962a; 
    transform: translateY(-2px); 
}

.photo-1 { 
    z-index: 49;
    transform-origin: 25% 25%;
    transform: rotate(8deg);
}
.photo-2 { 
    transform: rotate(-8deg) translate(-2%, 6%) !important;
}
.photo-3 { 
    transform: rotate(-9.66deg) translate(-5%, 5%) !important;
}
.photo-4 { 
    transform: rotate(11.24deg) translate(12%, 5%) !important;
}

/* Features */
.features { 
    max-width: 1200px; 
    margin: 50px auto; 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px; 
    padding: 0 20px; 
}

.feature-box { 
    background: #fff; 
    padding: 28px 16px; 
    text-align: center; 
    border-radius: 8px; 
    box-shadow: 0 3px 15px rgba(0,0,0,0.08); 
    transition: all 0.4s ease;
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-box:nth-child(1) { animation-delay: 0s; }
.feature-box:nth-child(2) { animation-delay: 0.1s; }
.feature-box:nth-child(3) { animation-delay: 0.2s; }
.feature-box:nth-child(4) { animation-delay: 0.3s; }
.feature-box:nth-child(5) { animation-delay: 0.4s; }

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-box:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 40px rgba(201,168,76,0.25);
    border-top: 3px solid #c9a84c;
}

.feature-icon { 
    width: 56px; 
    height: 56px; 
    margin: 0 auto 12px; 
    background: linear-gradient(135deg, #c9a84c, #dfc67a); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201,168,76,0.2);
}

.feature-box:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.feature-icon i { 
    font-size: 24px; 
    color: #fff; 
}

.feature-box p { 
    font-size: 16px; 
    color: #000000; 
    font-weight: 500; 
    line-height: 1.6; 
}

/* Configuration */
.configuration { 
    padding: 80px 20px; 
    background: #fff; 
}

.config-grid { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
    padding: 0 20px;
}

.config-card { 
    background: #fff; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.12); 
    transition: all 0.4s ease;
    border: 1px solid rgba(201,168,76,0.1);
}

.config-card:hover { 
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    border-color: rgba(201,168,76,0.3);
}

.config-card img { 
    width: 100%; 
    height: 300px; 
    object-fit: contain;
    background: #f5f5f5;
    display: block;
    transition: transform 0.4s ease;
    padding: 20px;
}

.config-card:hover img {
    transform: scale(1.05);
}

.config-image { 
    width: 100%; 
    height: 300px; 
    background: linear-gradient(135deg, #e8e0d0, #d4cfc5); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #888; 
    font-size: 16px; 
    font-style: italic; 
}

.config-details { 
    padding: 40px 30px; 
}

.config-details h3 { 
    font-family: 'Poppins', sans-serif; 
    font-size: 25px; 
    font-weight: 600; 
    color: #1a1a2e; 
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.config-details h4 { 
    font-size: 16px; 
    color: #000000;
    font-weight: 400;
    margin-bottom: 20px; 
    line-height: 1.6;
}

.config-details a { 
    display: inline-block; 
    padding: 12px 32px; 
    background: linear-gradient(135deg, #c9a84c, #b8962a);
    color: #fff; 
    text-decoration: none; 
    border-radius: 4px; 
    font-size: 13px; 
    font-weight: 600;
    margin-top: 20px; 
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.config-details a:hover { 
    background: linear-gradient(135deg, #b8962a, #a0821e);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(201,168,76,0.3);
}





/* About */
.about { 
    padding: 80px 20px; 
    background: #f9f9f9; 
}

.about-content { 
    max-width: 900px; 
    margin: 0 auto; 
    text-align: center; 
}

.about-content h3 { 
    font-family: 'Poppins', sans-serif; 
    font-size: 34px; 
    font-weight: 600; 
    color: #1a1a2e; 
    margin-bottom: 20px; 
}

.about-content p { 
    font-size: 16px; 
    line-height: 1.8; 
    color: #ffffff; 
    margin-bottom: 30px; 
}

.partners-grid { 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    flex-wrap: wrap; 
    margin-bottom: 30px; 
}

.partner-item { 
    text-align: center; 
}

.partner-item i { 
    font-size: 28px; 
    color: #c9a84c; 
    margin-bottom: 8px; 
    display: block; 
}

.partner-item h5 { 
    font-size: 13px; 
    font-weight: 600; 
    color: #1a1a2e; 
    margin-bottom: 3px; 
}

.partner-item p { 
    font-size: 12px; 
    color: #888; 
    margin-bottom: 0; 
}

.know-more { 
    display: inline-block; 
    padding: 12px 30px; 
    background: #c9a84c; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 3px; 
    font-weight: 600; 
    transition: all 0.3s; 
    letter-spacing: 1px; 
}

.know-more:hover { 
    background: #b8962a; 
    transform: translateY(-2px); 
}

/* Connectivity */
.connectivity { 
    padding: 80px 20px; 
    background: #fff; 
}

.connectivity-header { 
    text-align: center; 
    margin-bottom: 50px; 
}

.connectivity-header h3 { 
    font-family: 'Poppins', sans-serif; 
    font-size: 34px; 
    font-weight: 600; 
    color: #1a1a2e; 
    margin-bottom: 10px; 
}

.connectivity-header p { 
    font-size: 14px; 
    color: #c9a84c; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
}

.connectivity-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    align-items: start; 
}

.map-container { 
    background: #f0f0f0; 
    border-radius: 8px; 
    overflow: hidden; 
    min-height: 350px; 
}

.map-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.connectivity-list { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 0; 
}

.location-category { 
    margin-bottom: 0; 
}

.location-category h4 { 
    font-size: 14px; 
    font-weight: 600; 
    color: #1a1a2e; 
    margin-bottom: 15px; 
    padding-bottom: 10px; 
    border-bottom: 2px solid #c9a84c; 
    letter-spacing: 1px; 
}

.location-item { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 14px; 
    font-size: 14px; 
    color: #666; 
}

.location-item i { 
    color: #c9a84c; 
    font-size: 14px; 
    width: 20px; 
    text-align: center; 
}

.location-distance { 
    margin-left: auto; 
    font-weight: 600; 
    color: #1a1a2e; 
    white-space: nowrap; 
}

/* Contact */
.contact { 
    padding: 80px 20px; 
    background: #f3efe8;
}

.contact-header { 
    text-align: center; 
    margin-bottom: 50px; 
}

.contact-header h3 { 
    font-family: 'Poppins', sans-serif; 
    font-size: 34px; 
    font-weight: 600; 
    color: #1a1a2e; 
}

.contact-form-container { 
    max-width: 600px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 40px; 
    border-radius: 5px; 
    box-shadow: 0 3px 20px rgba(0,0,0,0.08); 
}

/* Footer */
footer { 
    background: #0c1929; 
    color: #fff; 
    padding: 50px 20px 20px; 
}

.footer-content { 
    max-width: 1200px; 
    margin: 0 auto; 
    text-align: center; 
}

.footer-logo { 
    margin-bottom: 30px; 
}

.footer-logo .logo-text { 
    font-family: 'Playfair Display', serif; 
    color: #fff; 
    font-size: 24px; 
}

.rera-info { 
    background: rgba(255,255,255,0.05); 
    border: 1px solid rgba(255,255,255,0.08); 
    padding: 20px; 
    border-radius: 5px; 
    margin: 30px 0; 
    text-align: left; 
}

.rera-info h4 { 
    font-size: 14px; 
    margin-bottom: 10px; 
    color: #c9a84c; 
    letter-spacing: 1px; 
}

.rera-info p { 
    font-size: 8px; 
    margin-bottom: 8px; 
    color: rgba(255,255,255,0.6); 
}

.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.08); 
    padding-top: 20px; 
    margin-top: 30px; 
    font-size: 12px; 
    color: rgba(255,255,255,0.4); 
}

.footer-bottom a { 
    color: #c9a84c; 
    text-decoration: none; 
}

/* Modal */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.7); 
    backdrop-filter: blur(5px); 
    align-items: center; 
    justify-content: center; 
}

.modal.active { 
    display: flex; 
}

.modal-content { 
    background: #fff; 
    padding: 40px; 
    border-radius: 5px; 
    max-width: 500px; 
    width: 90%; 
    position: relative; 
    animation: modalSlideIn 0.3s ease; 
}

@keyframes modalSlideIn { 
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

.modal-close { 
    position: absolute; 
    top: 15px; 
    right: 20px; 
    font-size: 28px; 
    cursor: pointer; 
    color: #999; 
    transition: color 0.3s; 
}

.modal-close:hover { 
    color: #333; 
}

.modal-content h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 24px; 
    margin-bottom: 20px; 
    color: #1a1a2e; 
    text-align: center; 
}

/* Fixed Buttons */
.fixed-buttons { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    z-index: 999; 
}

.fixed-btn { 
    padding: 14px 28px; 
    background: #c9a84c; 
    color: #fff; 
    border: none; 
    border-radius: 50px; 
    font-weight: 600; 
    cursor: pointer; 
    box-shadow: 0 4px 20px rgba(201,168,76,0.4); 
    transition: all 0.4s ease; 
    text-transform: uppercase; 
    font-size: 12px; 
    letter-spacing: 1.5px; 
    font-family: 'Poppins', sans-serif;\n    animation: bounce 2s infinite;\n    position: relative;\n    overflow: hidden;\n}\n\n.fixed-btn::before {\n    content: '';\n    position: absolute;\n    inset: 0;\n    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);\n    transform: translateX(-100%);\n    transition: transform 0.6s;\n}\n\n.fixed-btn:hover::before {\n    transform: translateX(100%);\n}

.fixed-btn:hover { 
    background: #b8962a; 
    transform: translateY(-4px) scale(1.08);\n    box-shadow: 0 12px 40px rgba(201,168,76,0.6); \n    animation: none;\n}

/* Responsive */
@media (max-width: 968px) {
    .mobile-menu { 
        display: flex; 
    }
    
    nav ul { 
        display: none; 
    }
    
    .hero h2 { 
        font-size: 36px; 
    }
    
    .hero-subtitle { 
        font-size: 44px; 
    }
    
    .hero-stat { 
        padding: 0 20px; 
    }
    
    .hero-stat-value { 
        font-size: 22px; 
    }
    
    .overview-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .features { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .config-grid { 
        grid-template-columns: 1fr; 
    }

    .config-card img {
        height: 220px;
        padding: 15px;
    }
    
    .config-details {
        padding: 25px 20px;
    }
    
    .connectivity-container { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 640px) {
    .hero h2 { 
        font-size: 28px; 
    }
    
    .hero-subtitle { 
        font-size: 20px; 
    }
    
    .hero-description { 
        font-size: 14px; 
    }
    
    .hero-stats { 
        flex-wrap: wrap; 
        gap: 20px; 
    }
    
    .hero-stat { 
        border-right: none; 
        padding: 0 15px; 
    }
    
    .hero-cta { 
        flex-direction: column; 
        align-items: center; 
    }
    
    .cta-primary, 
    .cta-secondary { 
        width: 100%; 
        max-width: 280px; 
        text-align: center; 
    }
    
    .section-title h3 { 
        font-size: 26px; 
    }
    
    .features { 
        grid-template-columns: 1fr; 
    }
    
    .overview-grid { 
        grid-template-columns: 1fr 1fr; 
        width: 80%;
    }
    
    .scroll-indicator { 
        display: none; 
    }
    .hero-price {
  
    font-size: 18px;
    font-weight: 600;
    padding: 12px 17px;
    }
      
      .hero-content{
          
          margin-top: -165px;
          
      }
    
        .overview-item img { 
           width: 100%; 
             height: 200px; 
             object-fit: cover; 
             border-radius: 8px;}

   
    
    
}

/* Mobile CTA bar - hidden on desktop */
.mobile-cta-bar {
  display: none;
}

@media (hover: none) and (pointer: coarse) {
  .fixed-btn {
    display: none;
  }
  
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background: #000;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
  }
  
  .mobile-cta-bar button {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 11px;
    font-weight: 500px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
  }

  .mobile-cta-bar button i {
    font-size: 14px;
  }

  .cta-divider {
    width: 1px;
    height: 60%;
    background: rgba(255,255,255,0.3);
  }
  
}




/* ===== GALLERY COMPONENT ===== */
.gallery-component {
  --cream: #f3efe8;
  --warm-gold: #b8864e;
  --dark-brown: #3a2a1a;
  --text: #5a4a3a;
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 60px 0;
}

.gallery-component *,
.gallery-component *::before,
.gallery-component *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== AMENITIES SECTION ===== */
.gallery-component .section {
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
}

.gallery-component .section-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
  animation: gcFadeDown 0.8s ease-out;
}

.gallery-component .section-header .line {
  width: 48px;
  height: 2px;
  background: var(--warm-gold);
  flex-shrink: 0;
}

.gallery-component .section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.28em;
  color: var(--warm-gold);
  text-transform: uppercase;
}

.gallery-component .gallery-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-component .gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gallery-component .gallery-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 300px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  animation: gcFadeUp 0.7s ease-out forwards;
}

.gallery-component .gallery-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-component .gallery-card:nth-child(2) { animation-delay: 0.25s; }
.gallery-component .gallery-card:nth-child(3) { animation-delay: 0.4s; }
.gallery-component .gallery-card:nth-child(4) { animation-delay: 0.55s; }
.gallery-component .gallery-card:nth-child(5) { animation-delay: 0.7s; }

.gallery-component .gallery-card .image-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.gallery-component .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gallery-component .gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-component .badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(20, 20, 20, 0.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.gallery-component .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(58, 42, 26, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-component .gallery-card:hover .overlay {
  opacity: 1;
}

.gallery-component .overlay-text {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transform: translateY(10px);
  transition: transform 0.5s ease;
}

.gallery-component .gallery-card:hover .overlay-text {
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.gallery-component .gallery-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  animation: gcFadeUp 0.8s ease-out 0.6s both;
}

.gallery-component .nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--warm-gold);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  color: var(--warm-gold);
}

.gallery-component .nav-btn:hover {
  background: var(--warm-gold);
  color: #fff;
}

.gallery-component .nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-component .nav-dots {
  display: flex;
  gap: 8px;
  margin: 0 16px;
}

.gallery-component .nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184, 134, 78, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.gallery-component .nav-dot.active {
  background: var(--warm-gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== GALLERY 2 SECTION ===== */
.gallery-component .gallery-section {
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
}

.gallery-component .gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-component .gallery-header .label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 8px;
}

.gallery-component .gallery-header .label-line {
  width: 32px;
  height: 2px;
  background: var(--warm-gold);
  margin: 12px auto 20px;
}

.gallery-component .gallery-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.6rem;
  color: var(--dark-brown);
  letter-spacing: 0.02em;
}

.gallery-component .gallery2-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-component .gallery2-track {
  display: flex;
  gap: 24px;
  transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  align-items: center;
}

.gallery-component .gallery2-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  animation: gcFadeUp 0.7s ease-out forwards;
}

.gallery-component .gallery2-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-component .gallery2-card:nth-child(2) { animation-delay: 0.25s; }
.gallery-component .gallery2-card:nth-child(3) { animation-delay: 0.4s; }
.gallery-component .gallery2-card:nth-child(4) { animation-delay: 0.55s; }
.gallery-component .gallery2-card:nth-child(5) { animation-delay: 0.7s; }

.gallery-component .gallery2-card.center-card {
  flex: 0 0 calc(40% - 16px);
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(58, 42, 26, 0.18);
  z-index: 2;
}

.gallery-component .gallery2-card .img-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.gallery-component .gallery2-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gallery-component .gallery2-card:hover img {
  transform: scale(1.05);
}

.gallery-component .gallery2-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(20, 20, 20, 0.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.gallery-component .gallery2-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.gallery-component .gallery2-nav .nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 1.5px solid rgba(90, 74, 58, 0.3);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  color: var(--text);
}

.gallery-component .gallery2-nav .nav-btn:hover {
  background: var(--warm-gold);
  border-color: var(--warm-gold);
  color: #fff;
}

.gallery-component .gallery2-nav .nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== LIGHTBOX ===== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: pointer;
}

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

.gallery-lightbox .lb-content {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gallery-lightbox.active .lb-content {
  transform: scale(1);
}

.gallery-lightbox .lb-content img {
  display: block;
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 8px;
}

.gallery-lightbox .lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  color: #fff;
}

.gallery-lightbox .lb-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.gallery-lightbox .lb-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.gallery-lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.gallery-lightbox .lb-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.gallery-lightbox .lb-nav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-lightbox .lb-prev { left: 24px; }
.gallery-lightbox .lb-next { right: 24px; }

/* ===== ANIMATIONS ===== */
@keyframes gcFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gcFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gallery-component .gallery-card { flex: 0 0 calc(50% - 10px); }
  .gallery-component .gallery2-card { flex: 0 0 calc(50% - 12px); }
  .gallery-component .gallery2-card.center-card { flex: 0 0 calc(50% - 12px); transform: scale(1); }
}

@media (max-width: 640px) {
  .gallery-component .section,
  .gallery-component .gallery-section { padding: 0 20px; }
  .gallery-component .section-header h2 { font-size: 1.4rem; letter-spacing: 0.2em; }
  .gallery-component .gallery-header h2 { font-size: 1.8rem; }
  .gallery-component .gallery-card { flex: 0 0 100%; min-width: unset; }
  .gallery-component .gallery2-card,
  .gallery-component .gallery2-card.center-card { flex: 0 0 100%; min-width: unset; transform: scale(1); }
}

