/* Alpine x-cloak to prevent layout flashes & gaps */
[x-cloak] {
    display: none !important;
}

/* Ambient glow orbs disabled */
.ambient-glow-orb {
    display: none !important;
}

/* Unified Dholera Smart City UI/UX Light Design System */
:root {
    --color-navy-dholera: #0C447C;         /* Signature Dholera Deep Navy */
    --color-navy-dark: #072b50;            /* Dark Navy Accent */
    --color-sky-dholera: #0284c7;          /* Bright Royal Sky Blue Accent */
    --color-cta-orange: #d97e21;           /* Warm Copper Orange CTA */
    --color-cta-orange-hover: #c46d15;     /* Hover Orange */
    --color-body-bg: #ffffff;              /* Pure Clean White Body Background */
    --color-card-bg: #ffffff;              /* Crisp White Card Background */
    --color-slate-bg: #f8fafc;             /* Light Slate Section Background */
    --color-text-dark: #0f172a;            /* High Contrast Dark Text */
    --color-text-muted: #475569;          /* Muted Slate Text */
    --border-light: #e2e8f0;               /* Clean Light Border */
    --border-accent: #cbd5e1;              /* Accent Border */
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    color: var(--color-text-dark);
    background-color: #ffffff !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Swiper Hero Slider Light Mode Overlay */
.hero-slider-container {
    position: relative;
    width: 100%;
    min-height: 620px;
    background: #072b50;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-slide-item {
    min-height: 620px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 43, 80, 0.8) 0%, rgba(6, 24, 44, 0.9) 100%);
    z-index: 1;
}

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

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 12px;
    background: var(--color-cta-orange) !important;
    box-shadow: 0 0 14px rgba(217, 126, 33, 0.9);
}

.swiper-button-next, .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--color-navy-dholera) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 900;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--color-cta-orange);
    color: #ffffff !important;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(217, 126, 33, 0.5);
}

/* Glassmorphic & Light Card Containers */
.glass-panel {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(12, 68, 124, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-pro {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(12, 68, 124, 0.07);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card-pro:hover {
    border-color: var(--color-cta-orange);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(12, 68, 124, 0.15);
}

/* FAQ Accordion Styling (Light Mode) */
.glass-accordion .accordion-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.glass-accordion .accordion-button {
    background: #ffffff;
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: 17px;
    padding: 20px 24px;
    box-shadow: none;
}

.glass-accordion .accordion-button:not(.collapsed) {
    background: #f1f5f9;
    color: var(--color-navy-dholera);
}

.glass-accordion .accordion-button::after {
    filter: none;
}

.glass-accordion .accordion-body {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
    padding: 0 24px 22px 24px;
}

/* Testimonial Card Light */
.testimonial-card-glass {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}

.testimonial-card-glass:hover {
    border-color: var(--color-cta-orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(12, 68, 124, 0.12);
}

/* Text Gradients */
.text-gradient-blue {
    color: var(--color-navy-dholera);
}

.text-gradient-cyan, .text-gradient-sky {
    color: var(--color-sky-dholera);
}

.text-gradient-orange {
    color: var(--color-cta-orange);
}

/* Action Buttons */
.btn-dholera-orange, .btn-glass-gold, .btn-glass-blue {
    background: linear-gradient(135deg, #d97e21 0%, #c46d15 100%);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 13px 32px;
    border: none;
    box-shadow: 0 8px 20px rgba(217, 126, 33, 0.35);
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-dholera-orange:hover, .btn-glass-gold:hover, .btn-glass-blue:hover {
    background: linear-gradient(135deg, #e68a28 0%, #d97e21 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(217, 126, 33, 0.5);
    color: #ffffff !important;
}

.btn-dholera-navy {
    background: linear-gradient(135deg, #0C447C 0%, #072b50 100%);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 13px 32px;
    border: none;
    box-shadow: 0 8px 20px rgba(12, 68, 124, 0.35);
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-dholera-navy:hover {
    background: linear-gradient(135deg, #0e5091 0%, #0C447C 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(12, 68, 124, 0.5);
    color: #ffffff !important;
}

.btn-glass-outline {
    background: #ffffff;
    color: var(--color-navy-dholera) !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    border: 1.5px solid var(--color-navy-dholera);
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-glass-outline:hover {
    border-color: var(--color-cta-orange);
    background: var(--color-navy-dholera);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Light Mode Inputs */
.glass-input {
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    color: var(--color-text-dark) !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    transition: all 0.3s ease;
}

.glass-input:focus {
    border-color: var(--color-navy-dholera) !important;
    box-shadow: 0 0 0 4px rgba(12, 68, 124, 0.12) !important;
    background: #ffffff !important;
}

/* Status Badges Light */
.status-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tag-available, .tag-rera, .tag-residential {
    background: #e0f2fe;
    color: #0284c7;
    border: 1px solid #bae6fd;
}

.tag-limited, .tag-hot, .tag-villa {
    background: #ffedd5;
    color: #c2410c;
    border: 1px solid #fed7aa;
}

.tag-commercial {
    background: #e0e7ff;
    color: #3730a3;
    border: 1px solid #c7d2fe;
}

.tag-industrial {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
}

.tag-ready {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

/* Floating Action Buttons Widget */
.floating-action-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floating-btn-item {
    position: relative;
    display: flex;
    align-items: center;
}

.floating-btn-item .btn-action {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.35s ease;
    border: 2px solid #ffffff;
}

.floating-btn-item .btn-call {
    background: linear-gradient(135deg, #0C447C 0%, #072b50 100%);
}

.floating-btn-item .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-btn-item:hover .btn-action {
    transform: scale(1.12);
}

.floating-btn-tooltip {
    position: absolute;
    right: 66px;
    background: #0F172A;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.floating-btn-item:hover .floating-btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile App Bottom Navigation Bar Light */
.mobile-app-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -5px 25px rgba(0,0,0,0.08);
    z-index: 99990;
    padding: 8px 12px 10px 12px;
}

.mobile-app-nav-items {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.mobile-app-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    gap: 3px;
    transition: all 0.25s ease;
}

.mobile-app-nav-link i {
    font-size: 18px;
}

.mobile-app-nav-link.active, .mobile-app-nav-link:hover {
    color: var(--color-navy-dholera);
}

.mobile-app-nav-link.btn-app-cta {
    background: linear-gradient(135deg, #d97e21 0%, #c46d15 100%);
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(217, 126, 33, 0.4);
}

/* Hero Filter Engine Bar (Light Mode) */
.hero-filter-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(12, 68, 124, 0.12);
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.hero-filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.hero-filter-tab {
    background: transparent;
    border: 1px solid transparent;
    color: var(--color-text-muted);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 30px;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-filter-tab:hover {
    color: var(--color-navy-dholera);
    background: #f1f5f9;
}

.hero-filter-tab.active {
    background: linear-gradient(135deg, #0C447C 0%, #072b50 100%);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(12, 68, 124, 0.3);
}

/* Property Cards Portfolio Pro (Light Mode) */
.property-card-pro {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.property-card-pro:hover {
    transform: translateY(-8px);
    border-color: var(--color-cta-orange);
    box-shadow: 0 25px 50px rgba(12, 68, 124, 0.15);
}

.property-card-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.property-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-card-pro:hover .property-card-img-wrapper img {
    transform: scale(1.08);
}

.property-badge-group {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.property-price-overlay {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-light);
    padding: 6px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.property-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 16px 0;
    padding: 14px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid var(--border-light);
}

.property-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.property-spec-item i {
    color: var(--color-navy-dholera);
    width: 16px;
    text-align: center;
}

/* Category Feature Boxes Light */
.category-box-pro {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.category-box-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-navy-dholera) 0%, var(--color-cta-orange) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.category-box-pro:hover {
    transform: translateY(-6px);
    border-color: var(--color-navy-dholera);
    box-shadow: 0 20px 40px rgba(12, 68, 124, 0.12);
}

.category-box-pro:hover::before {
    opacity: 1;
}

.category-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--color-navy-dholera);
    margin-bottom: 20px;
}

/* Master Plan Interactive Plot Grid Modal Light */
.plot-master-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    max-height: 420px;
    overflow-y: auto;
}

.plot-node {
    height: 65px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
    user-select: none;
}

.plot-node.available {
    background: #e0f2fe;
    color: #0284c7;
    border-color: #7dd3fc;
}

.plot-node.available:hover {
    background: #bae6fd;
    transform: scale(1.08);
}

.plot-node.reserved {
    background: #ffedd5;
    color: #c2410c;
    border-color: #fed7aa;
}

.plot-node.sold {
    background: #f1f5f9;
    color: #94a3b8;
    border-color: #cbd5e1;
    cursor: not-allowed;
}

.plot-legend {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 14px;
    background: #f1f5f9;
    border-radius: 12px;
}

.plot-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-available { background: #0284c7; }
.legend-reserved { background: #d97e21; }
.legend-sold { background: #94a3b8; }

/* Video Tour Lightbox Cards */
.video-tour-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 240px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
}

.video-tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-tour-card:hover img {
    transform: scale(1.06);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d97e21 0%, #c46d15 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 30px rgba(217, 126, 33, 0.5);
    transition: all 0.3s ease;
    z-index: 3;
}

.video-tour-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: #ffffff;
    color: #d97e21;
}

.video-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,0.9) 100%);
    z-index: 2;
}

/* Bank Partner Marquee Badge */
.bank-partner-badge {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 10px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--color-navy-dholera);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* Responsive Polish */
@media (max-width: 991px) {
    .btn-glass-gold, .btn-glass-blue, .btn-dholera-orange, .btn-glass-outline { width: 100%; margin-bottom: 8px; }
    .floating-action-buttons { bottom: 75px; right: 18px; }
    .mobile-app-bottom-bar { display: block; }
    body { padding-bottom: 60px; }
    .hero-slider-container, .hero-slide-item { min-height: 480px !important; }
}
