/* ==========================================================================
   Elite India Pvt Ltd - Master Premium Theme Stylesheet (Mobile Optimized)
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

:root {
    --primary-blue: #0a1d33;   
    --accent-gold: #dfb76c;    
    --whatsapp-green: #1b9a4b; 
    --text-dark: #1e293b;      
    --text-muted: #64748b;    
    --bg-light: #f4f7fa;      
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Navigation Header */
.site-header {
    background-color: var(--primary-blue);
    padding: 18px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(10, 29, 51, 0.15);
    border-bottom: 2px solid var(--accent-gold);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.logo-text span {
    color: var(--accent-gold);
}

/* Desktop Action Links Layout Frame */
.header-action-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.phone-link-hotline {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
}

.phone-link-hotline:hover {
    color: var(--accent-gold);
}

.whatsapp-cta-button {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(27, 154, 75, 0.3);
    transition: transform 0.2s ease;
}

.whatsapp-cta-button:hover {
    transform: translateY(-2px);
    background-color: #157f3d;
}

/* Hero Content Frame */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    background: linear-gradient(rgba(10, 29, 51, 0.8), rgba(10, 29, 51, 0.85)), 
                url('../media/luxury-renders/gate-entrance.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.hero-content {
    max-width: 650px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent-gold);
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #e2e8f0;
}

/* Lead Capture Card */
.lead-form-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(10, 29, 51, 0.3);
    width: 100%;
    max-width: 420px;
    border-top: 4px solid var(--accent-gold);
}

.lead-form-box h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 800;
}

.lead-form-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    background-color: #f8fafc;
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-blue);
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(10, 29, 51, 0.2);
}

/* Sections & Structural Corporate Grid Modules */
.section-padding {
    padding: 90px 5%;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 55px;
    font-weight: 800;
}

.section-title span {
    color: var(--accent-gold);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.image-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(10, 29, 51, 0.05);
    border: 1px solid #e2e8f0;
}

.image-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.image-card-body {
    padding: 25px;
}

/* Automated Carousel Slider Stage Components */
.slider-wrapper {
    position: relative;
    max-width: 950px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(10, 29, 51, 0.15);
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.slides-container {
    display: flex;
    width: 100%;
    overflow-x: scroll;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.slides-container::-webkit-scrollbar {
    display: none;
}

.slide-card {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
    padding: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-image-box {
    width: 100%;
    height: 520px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #ffffff; 
}

.slide-image-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; 
    background-color: #ffffff;
}

.slide-caption-area {
    width: 100%;
    padding: 30px 25px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 30px;
    background: #ffffff;
}

.slider-nav a {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #cbd5e1;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.slider-nav a.active-dot, .slider-nav a:hover {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

/* Global Footer Landmark Module */
.site-footer {
    background-color: #061221; 
    color: #ffffff;
    padding: 65px 5% 25px 5%;
    border-top: 4px solid var(--accent-gold);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info-block {
    max-width: 400px;
}

.footer-info-block h4, .footer-links h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 700;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* Base Desktop Settings for Dynamic Displays */
.mobile-icon {
    display: none;
}
.desktop-text {
    display: inline;
}
.mobile-sticky-action-bar {
    display: none;
}

/* ==========================================================================
   📱 HIGH-CONVERTING MOBILE OPTIMIZATION MATRIX
   ========================================================================== */
@media (max-width: 900px) {
    /* Keep header elements visible on mobile screen widths */
    .header-action-links { 
        display: flex !important; 
        gap: 10px !important;
        align-items: center;
    }
    
    /* Senior Developer Rule: Safely hide long word strings on smartphones */
    .desktop-text {
        display: none !important;
    }

    /* Displays the compact action badges on the top row */
    .mobile-icon {
        display: inline-block !important;
        font-size: 16px;
    }

    /* Style for mobile header call circle box */
    .phone-link-hotline {
        background-color: #1e293b;
        padding: 8px 12px;
        border-radius: 6px;
        border: 1px solid var(--accent-gold);
        line-height: 1;
    }
    
    /* Style for mobile header WhatsApp button */
    .whatsapp-cta-button {
        padding: 8px 12px !important;
        background-color: var(--whatsapp-green) !important;
        border-radius: 6px !important;
        box-shadow: 0 4px 10px rgba(27, 154, 75, 0.2) !important;
        line-height: 1;
    }

    .hero-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; 
    }
    
    .hero-content h1 { 
        font-size: 30px; 
    }
    
    .hero-section { 
        height: auto; 
        padding: 40px 5% 90px 5%; 
    }
    
    .slide-image-box { 
        height: 300px; 
    }

    /* Floating Sticky Action Control Panel at screen bottom */
    .mobile-sticky-action-bar {
        display: grid !important; 
        grid-template-columns: 1fr 1fr;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        z-index: 9999;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
        background-color: var(--primary-blue);
        border-top: 2px solid var(--accent-gold);
    }

    .mobile-action-tab {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #ffffff;
        font-weight: 700;
        font-size: 14px;
        gap: 6px;
    }

    .mobile-action-tab.call-accent { background-color: var(--primary-blue); }
    .mobile-action-tab.whatsapp-accent { background-color: var(--whatsapp-green); }
    
    .site-footer {
        padding-bottom: 90px !important;
    }
}