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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    scroll-behavior: smooth;
}

/* Section Titles - Consistent margin-bottom */
section h2 {
    margin-bottom: 2rem !important;
}

/* All sections are now visible - removed display:none restrictions */

/* Hero Video Playlist */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
    z-index: 0;
    background: #000;
}

.hero-video.active {
    opacity: 1 !important;
    z-index: 1;
}

.hero-video.inactive {
    opacity: 0 !important;
    z-index: 0;
}

/* Hero Tagline Styling */
#home p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

/* Hero Buttons Visibility */
#home button {
    position: relative;
    z-index: 50;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
}

/* Responsive Hero Section */
@media (max-width: 640px) {
    #home h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    #home p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    #home button {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
    }
}

/* Blueprint Grid Animation */
.blueprint-grid {
    background-image:
        linear-gradient(rgba(211, 165, 60, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(211, 165, 60, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* AI Particles */
.ai-particles {
    position: relative;
}

.ai-particles::before,
.ai-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #D3A53C;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px #D3A53C;
}

.ai-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.ai-particles::after {
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) translateX(20px);
        opacity: 1;
    }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 165, 60, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.glass-card h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.glass-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 165, 60, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: #D3A53C;
    box-shadow: 0 20px 40px rgba(211, 165, 60, 0.2);
}

.glass-card .icon-wrapper {
    transition: transform 0.3s ease;
}

.glass-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* AI Cards */
.ai-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(211, 165, 60, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.ai-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #D3A53C;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(211, 165, 60, 0.15);
}

.ai-card .ai-icon {
    transition: transform 0.3s ease;
}

.ai-card:hover .ai-icon {
    transform: scale(1.1);
}

/* Counter Cards */
.counter-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(211, 165, 60, 0.1);
    transition: all 0.3s ease;
}

.counter-card:hover {
    border-color: #D3A53C;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

/* Project Slider */
.project-slider {
    position: relative;
}

.slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-dot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-dot.active {
    width: 12px;
    height: 12px;
}

.slider-dot:hover {
    background-color: #D3A53C !important;
}

/* Header Scroll Effect */
header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
}

/* Fix Project Highlights section visibility when scrolling */
#project-highlights {
    position: relative;
    z-index: 10;
    margin-top: 0;
    padding-top: 60px !important;
}

/* Ensure sections are not hidden behind fixed header */
section:not(#home) {
    position: relative;
    z-index: 1;
    scroll-margin-top: 100px;
}

/* Make sure content sections appear above header background when scrolling */
section:not(#home)>* {
    position: relative;
    z-index: 2;
}

/* Logo Styling */
header img {
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(211, 165, 60, 0.3));
}

header a:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(211, 165, 60, 0.5));
}

/* Navigation Active State */
.nav-link.active {
    color: #D3A53C !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #D3A53C;
    border-radius: 2px;
}

.mobile-nav-link.active {
    color: #D3A53C !important;
    font-weight: 700;
}

/* WhatsApp Button Pulse */
.whatsapp-btn {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Download Brochure Button */
.download-brochure-btn {
    white-space: nowrap;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(211, 165, 60, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(211, 165, 60, 0);
    }
}

/* Key Points in Hero */
.key-points-container {
    position: relative;
    z-index: 50 !important;
    width: 100%;
}

.key-point-item {
    text-align: center;
    padding: 2rem 2.5rem;
    background: #000000 !important;
    backdrop-filter: blur(30px);
    border: 3px solid #FFFFFF !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 1),
        0 0 30px rgba(255, 255, 255, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 50 !important;
    min-width: 160px;
    opacity: 1 !important;
    visibility: visible !important;
}

.key-point-item:hover {
    background: #000000 !important;
    border-color: #FFFFFF !important;
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        inset 0 0 40px rgba(255, 255, 255, 0.15);
}

.key-point-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #D3A53C !important;
    margin-bottom: 0.5rem;
    text-shadow:
        0 0 30px rgba(211, 165, 60, 1),
        0 0 60px rgba(211, 165, 60, 0.6),
        0 6px 12px rgba(0, 0, 0, 1);
    line-height: 1.2;
}

.key-point-number-small {
    font-size: 2.5rem;
}

.key-point-label {
    font-size: 1.125rem;
    font-weight: 800;
    color: #FFFFFF !important;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow:
        0 3px 6px rgba(0, 0, 0, 1),
        0 0 10px rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.key-point-label-small {
    font-size: 0.875rem;
}

.key-point-divider {
    width: 3px;
    height: 90px;
    background: linear-gradient(to bottom, transparent, #FFFFFF, transparent);
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 50;
}

@media (min-width: 768px) {
    .key-point-number {
        font-size: 4.5rem;
    }

    .key-point-number-small {
        font-size: 3rem;
    }

    .key-point-label {
        font-size: 1.25rem;
    }

    .key-point-label-small {
        font-size: 1rem;
    }
}

/* Apartment Tabs */
.apartment-tab {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(211, 165, 60, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 150px;
}

.apartment-tab:hover {
    border-color: rgba(211, 165, 60, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(211, 165, 60, 0.2);
}

.apartment-tab.active {
    border-color: #D3A53C;
    background: rgba(211, 165, 60, 0.1);
    box-shadow: 0 10px 30px rgba(211, 165, 60, 0.3);
}

/* Tab Content */
.tab-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apartment Image Container */
.apartment-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.apartment-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.apartment-image-container:hover .apartment-image {
    transform: scale(1.05);
}

/* Apartment Description */
.apartment-description {
    padding: 2rem;
}

.apartment-description h4 {
    text-shadow: 0 2px 10px rgba(211, 165, 60, 0.3);
}

/* Size Cards */
.size-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 165, 60, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.size-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 165, 60, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.size-card:hover::before {
    opacity: 1;
}

.size-card:hover {
    transform: translateY(-10px);
    border-color: #D3A53C;
    box-shadow: 0 20px 40px rgba(211, 165, 60, 0.3);
}

.penthouse-card {
    border: 2px solid rgba(211, 165, 60, 0.3);
    background: rgba(211, 165, 60, 0.05);
}

.penthouse-card:hover {
    background: rgba(211, 165, 60, 0.1);
    box-shadow: 0 20px 50px rgba(211, 165, 60, 0.4);
}

/* Penthouse Image Cards */
.penthouse-image-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 165, 60, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.penthouse-image-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #D3A53C;
    box-shadow: 0 25px 60px rgba(211, 165, 60, 0.3);
}

.penthouse-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #000;
}

.penthouse-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.penthouse-image-card:hover .penthouse-image {
    transform: scale(1.15);
}

.penthouse-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.penthouse-image-card:hover .penthouse-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.penthouse-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    z-index: 2;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.penthouse-image-card:hover .penthouse-content {
    transform: translateY(-5px);
}

/* Responsive adjustments for penthouse cards */
@media (max-width: 768px) {
    .penthouse-image-wrapper {
        height: 220px;
    }

    .penthouse-content {
        padding: 1.25rem;
    }

    /* Apartment Tabs Responsive - Display horizontally on mobile */
    .grid.grid-cols-1.md\:grid-cols-2>.flex.flex-col {
        flex-direction: row !important;
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .apartment-tab {
        padding: 1rem 1.5rem;
        min-width: 100px;
        flex: 1 1 calc(33.333% - 0.5rem);
        max-width: calc(33.333% - 0.5rem);
    }

    .apartment-tab .text-3xl {
        font-size: 1.75rem;
    }

    .apartment-description {
        padding: 1.5rem 1rem;
    }

    .apartment-description h4 {
        font-size: 1.75rem;
    }

    .tab-content-wrapper {
        min-height: 300px;
    }
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 165, 60, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 165, 60, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #D3A53C;
    box-shadow: 0 20px 40px rgba(211, 165, 60, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .glass-card,
    .ai-card,
    .counter-card,
    .size-card,
    .feature-card {
        padding: 1.5rem;
    }

    .project-slider {
        height: 300px;
    }

    .key-point-divider {
        display: none;
    }

    .key-point-item {
        margin-bottom: 1rem;
        padding: 1.25rem 1.5rem;
        min-width: 130px;
    }

    .key-point-item div:first-child {
        font-size: 2.5rem !important;
    }

    /* Section Headings */
    section h2 {
        font-size: 2rem !important;
        padding: 0 1rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    /* Project Highlights - Center icons and text */
    .glass-card {
        text-align: center;
    }

    .glass-card .icon-wrapper {
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .glass-card h3 {
        font-size: 1.25rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }

    .glass-card p {
        font-size: 0.875rem;
        text-align: center;
    }

    /* Company Features - Center icons */
    .feature-card {
        text-align: center;
    }

    .feature-card .feature-icon {
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card h3 {
        font-size: 1.125rem;
        text-align: center;
    }

    .feature-card p {
        text-align: center;
    }

    /* AI Cards - Center icons */
    .ai-card {
        text-align: center;
    }

    .ai-card .ai-icon {
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .ai-card h3 {
        font-size: 1.125rem;
        text-align: center;
    }

    .ai-card p {
        text-align: center;
    }

    /* Why Choose Us */
    .counter-value {
        font-size: 3rem !important;
    }
}

@media (max-width: 640px) {

    /* Hero Section */
    #home {
        min-height: 100vh;
        padding: 2rem 0;
    }

    /* Buttons - Ensure visibility */
    #home button {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Sections */
    section {
        padding: 3rem 1rem !important;
    }

    /* Grid adjustments */
    .grid {
        gap: 1.5rem !important;
    }

    /* Project Highlights heading */
    .glass-card h3 {
        font-size: 1.125rem !important;
        word-break: break-word;
    }

    /* Long titles */
    h3.text-xl {
        font-size: 1rem !important;
    }

    /* CTA Section */
    section h2 {
        font-size: 1.75rem !important;
        padding: 0 1rem;
    }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #D3A53C;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8942f;
}

.near-location-section {
    width: 100%;
    padding: 60px 0;
    position: relative;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.location-check-icon {
    width: 25px;
    height: 25px;
    background: #D3A53C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-check-icon svg {
    width: 15px;
    height: 15px;
    color: #000000;
}

.divider-section {
    width: 100%;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.divider-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.divider-left-border,
.divider-right-border {
    height: 2px;
    flex-grow: 1;
    max-width: 200px;
    position: relative;
}

.divider-left-border::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    right: 0;
    background: linear-gradient(270deg, #D3A53C, transparent);
}

.divider-right-border::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, #D3A53C, transparent);
}

.div-imgg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.div-imgg img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Mobile Menu Styles */
#hamburger-menu-btn {
    display: none;
}

#mobile-menu-overlay {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: 60;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    will-change: opacity;
}

#mobile-menu-overlay.show {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    display: flex !important;
    z-index: 60;
}

/* Popup Menu */
.mobile-menu-popup {
    position: relative;
    max-width: 280px;
    width: 100%;
    animation: popupSlideIn 0.3s ease-out;
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Pointer Arrow */
.mobile-menu-pointer {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Close Button */
#close-menu-btn {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 65;
}

#mobile-menu-overlay.show #close-menu-btn {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    position: relative;
    padding: 0.875rem 1.5rem;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
}

.mobile-menu-link:hover {
    color: #D3A53C;
}

/* Show hamburger menu at 1023px and below */
@media (max-width: 1023px) {
    #hamburger-menu-btn {
        display: flex !important;
        z-index: 55;
    }

    #mobile-menu-overlay {
        display: flex;
        z-index: 60;
    }

    .mobile-menu-popup {
        max-width: 280px;
        width: calc(100% - 2rem);
        margin: 0 1rem;
    }

    /* Ensure hero section doesn't interfere */
    #home {
        z-index: 1;
        position: relative;
    }

    #home .relative {
        z-index: 1;
    }

    /* When menu is hidden, ensure it doesn't block anything */
    #mobile-menu-overlay:not(.show) {
        display: none !important;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
    .mobile-menu-popup {
        max-width: 260px;
        padding: 1.5rem;
    }

    .mobile-menu-link {
        font-size: 1rem;
        padding: 0.625rem 0.875rem;
    }
}

/* Download Brochure Button - Hide icon by default */
.download-icon-mobile {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
}

/* Download Brochure Button - Icon only on small screens */
@media (max-width: 525px) {
    .download-brochure-btn {
        padding: 0 !important;
        background: transparent !important;
        border: none;
        width: auto;
        height: auto;
        border-radius: 0;
        justify-content: center;
    }

    .download-brochure-btn:hover {
        background: transparent !important;
        transform: scale(1.1);
    }

    .download-text {
        display: none;
    }

    .download-icon-mobile {
        display: block;
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Smaller icons at 425px */
@media (max-width: 425px) {
    .download-icon-mobile {
        width: 2rem;
        height: 2rem;
    }

    .whatsapp-btn {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }

    .whatsapp-btn svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }
}

/* Penthouse Gallery Modal */
.penthouse-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.penthouse-modal.active {
    display: flex;
}

.penthouse-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.penthouse-modal-content {
    position: relative;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(211, 165, 60, 0.3);
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.penthouse-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(211, 165, 60, 0.2);
    border: 1px solid rgba(211, 165, 60, 0.5);
    color: #D3A53C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
}

.penthouse-modal-close:hover {
    background: #D3A53C;
    color: #000;
    transform: rotate(90deg);
}

.penthouse-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.penthouse-modal-gallery {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.penthouse-gallery-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.penthouse-gallery-main-image {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.penthouse-gallery-nav {
    background: rgba(211, 165, 60, 0.2);
    border: 1px solid rgba(211, 165, 60, 0.5);
    color: #D3A53C;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.penthouse-gallery-nav:hover {
    background: #D3A53C;
    color: #000;
    transform: scale(1.1);
}

.penthouse-gallery-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.penthouse-gallery-thumbnails {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    max-height: 100px;
    overflow-y: auto;
}

.penthouse-gallery-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.penthouse-gallery-thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
}

.penthouse-gallery-thumbnail.active {
    border-color: #D3A53C;
    opacity: 1;
}

.penthouse-gallery-indicators {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.penthouse-gallery-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(211, 165, 60, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.penthouse-gallery-indicator.active {
    background: #D3A53C;
    transform: scale(1.3);
}

@media (max-width: 800px) {
    .penthouse-modal-close {
        top: -27px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        background: rgb(0 0 0 / 69%) !important;
    }

    .penthouse-modal-close:hover {
        transform: translateX(-50%) rotate(90deg);
    }
}

@media (max-width: 768px) {
    .penthouse-modal-content {
        padding: 1.5rem;
        max-width: 95vw;
    }

    .penthouse-gallery-nav {
        width: 40px;
        height: 40px;
    }

    .penthouse-gallery-container {
        min-height: 200px;
    }

    .penthouse-gallery-main-image {
        max-height: 40vh;
    }

    .penthouse-gallery-thumbnail {
        width: 60px;
        height: 60px;
    }

    .penthouse-gallery-thumbnails {
        max-height: 80px;
    }
}

footer {
    background-color: #080600 !important;
}

/* WhatsApp Icon Styles */
.whatsapp-icon-link {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.whatsapp-icon-link:hover .whatsapp-icon {
    transform: scale(1.2);
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(37, 211, 102, 0.4));
}

/* Simple hover effect */
.whatsapp-icon-link:hover {
    transform: scale(1.1);
}

/* Fallback for missing image */
.whatsapp-fallback-svg {
    display: none;
}

.whatsapp-icon:not([src]),
.whatsapp-icon[src=""],
.whatsapp-icon[src*="undefined"] {
    display: none;
}

.whatsapp-icon:not([src])+.whatsapp-fallback-svg,
.whatsapp-icon[src=""]+.whatsapp-fallback-svg,
.whatsapp-icon[src*="undefined"]+.whatsapp-fallback-svg {
    display: block;
}

/* Optional: Add subtle animation */
@keyframes whatsapp-icon-breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


/* Responsive adjustments */
@media (max-width: 425px) {
    .whatsapp-icon-link {
        width: 2.75rem;
        height: 2.75rem;
    }

    .whatsapp-icon,
    .whatsapp-fallback-svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}


.company-name {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    letter-spacing: 8px;
    background: linear-gradient(90deg, #d3a53c 0%, #f5da74 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Vaishnodevi Section with Background Image */
.vaishnodevi-section {
    position: relative;
    width: 100%;
    min-height: 700px;         /*Minimum vertical height */
    height: 600px !important;
    display: flex;
    overflow: hidden;
    background-image: url('img/why shivon for you.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 0;         /* Vertical padding for content */
}

.vaishnodevi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.700), rgba(0, 0, 0, 0.700), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

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

.vaishnodevi-section h2 {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .vaishnodevi-section {
        height: 100vh;
        padding: 40px 0;
    }
}

    /* section container */
    .vaishnodevi-section {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      /* Premium cinematic background image (urban + luxury feel) */
      background-image: url('img/Why\ shivon\ for\ you.png');
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
      background-attachment: fixed; /* subtle parallax effect */
      padding: 80px 24px;
    }

    /* dark gradient overlay for depth and text readability */
    .vaishnodevi-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.8) 100%);
      z-index: 1;
    }

    /* container content */
    .container {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      text-align: center;
      width: 100%;
    }

    /* heading styles */
    .section-heading {
      margin-bottom: 1.5rem;
    }

    .heading-main {
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: white;
      line-height: 1.2;
    }

    .heading-accent {
      color: #D3A53C;
      display: inline-block;
    }

    /* Divider (golden builder divider) */
    .divider-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      margin: 24px auto 32px auto;
      max-width: 280px;
      width: 100%;
    }

    .divider-line {
      flex: 1;
      height: 2px;
      position: relative;
      background: transparent;
    }

    .divider-line.left::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(270deg, #D3A53C, transparent);
    }

    .divider-line.right::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #D3A53C, transparent);
    }

    .divider-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .divider-icon img {
      width: 100%;
      height: auto;
      max-width: 44px;
      filter: drop-shadow(0 2px 6px rgba(211,165,60,0.5));
    }

    /* description text optional but elegant */
    .location-tagline {
      font-size: 1.125rem;
      color: #e0e0e0;
      max-width: 680px;
      margin: 0 auto 2rem auto;
      font-weight: 400;
      line-height: 1.5;
      text-shadow: 0 1px 2px rgba(0,0,0,0.3);
      letter-spacing: 0.3px;
    }

    /* video container - fully responsive */
    .video-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 30px 45px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(211,165,60,0.3), 0 0 0 4px rgba(0,0,0,0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: #000;
    }

    .video-wrapper:hover {
      transform: scale(1.01);
      box-shadow: 0 35px 55px -20px rgba(211,165,60,0.3), 0 0 0 2px #D3A53C;
    }

    .promo-video {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      aspect-ratio: 16 / 9;
      cursor: pointer;
    }

    /* optional smooth corner & responsive behavior */
    @media (max-width: 768px) {
      .vaishnodevi-section {
        padding: 60px 20px;
        background-attachment: scroll;
        min-height: auto;
      }
      
      .heading-main {
        font-size: 2rem;
      }

      .heading-accent {
        font-size: 2rem;
      }

      .divider-icon {
        width: 40px;
        height: 40px;
      }

      .divider-icon img {
        max-width: 36px;
      }

      .divider-wrapper {
        gap: 12px;
        max-width: 240px;
        margin: 20px auto 28px auto;
      }

      .location-tagline {
        font-size: 1rem;
        padding: 0 8px;
        margin-bottom: 1.5rem;
      }

      .video-wrapper {
        border-radius: 20px;
      }
    }

    @media (max-width: 480px) {
      .heading-main {
        font-size: 1.7rem;
      }
      .heading-accent {
        font-size: 1.7rem;
      }
      .vaishnodevi-section {
        padding: 48px 16px;
      }
      .divider-icon {
        width: 34px;
        height: 34px;
      }
      .divider-icon img {
        max-width: 30px;
      }
      .location-tagline {
        font-size: 0.9rem;
      }
    }

    /* extra polish for gold touch */
    .video-wrapper video {
      transition: all 0.2s;
    }

    /* optional small decorative shine */
    @keyframes subtleGlow {
      0% { border-color: rgba(211,165,60,0.2); }
      100% { border-color: rgba(211,165,60,0.6); }
    }
