/* ==========================================================
SHRI HARI GROUP - Main Stylesheet
========================================================== */

:root {
    --shg-primary: #E11546;
    --shg-primary-dark: #A50E33;
    --shg-primary-light: #F03A66;
    --shg-accent: #0073B6;
    --shg-accent-dark: #005a8e;
    --shg-green: #BAD700;
    --shg-text: #2c3e50;
    --shg-text-light: #5a6c7d;
    --shg-bg: #ffffff;
    --shg-bg-light: #f8f9fb;
    --shg-bg-dark: #1a1a2e;
    --shg-border: #e1e7ef;
    --shg-success: #28a745;
    --shg-danger: #dc3545;
    --shg-warning: #ffc107;
    --shg-info: #17a2b8;
    --shg-shadow: 0 4px 20px rgba(225, 21, 70, 0.08);
    --shg-shadow-lg: 0 10px 40px rgba(225, 21, 70, 0.12);
    --shg-radius: 8px;
    --shg-radius-lg: 16px;
    --shg-transition: all 0.3s ease;
    --shg-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shg-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--shg-font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--shg-text);
    background: var(--shg-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--shg-font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--shg-primary);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(1.875rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--shg-primary);
    text-decoration: none;
    transition: var(--shg-transition);
}

a:hover { color: var(--shg-accent); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.bg-light { background: var(--shg-bg-light); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--shg-font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--shg-radius);
    cursor: pointer;
    transition: var(--shg-transition);
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: var(--shg-primary);
    color: white;
    border-color: var(--shg-primary);
}
.btn-primary:hover {
    background: var(--shg-primary-dark);
    border-color: var(--shg-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 21, 70, 0.3);
}

.btn-accent {
    background: var(--shg-accent);
    color: white;
    border-color: var(--shg-accent);
}
.btn-accent:hover {
    background: var(--shg-accent-dark);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--shg-primary);
    border-color: var(--shg-primary);
}
.btn-outline:hover {
    background: var(--shg-primary);
    color: white;
}

.btn-light {
    background: #ffffff;
    color: var(--shg-primary);
    border-color: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-light:hover {
    background: #f8f9fb;
    border-color: #f8f9fb;
    color: var(--shg-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.btn-outline-light {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border-color: #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
    background: #ffffff;
    color: var(--shg-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { display: flex; width: 100%; margin-bottom: 10px; }

/* Topbar */
.shg-topbar {
    background: var(--shg-bg-dark);
    color: #cad5e8;
    padding: 10px 0;
    font-size: 13px;
}
.shg-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.topbar-left { display: flex; gap: 25px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-left a { color: #cad5e8; }
    .topbar-left a:hover { color: var(--shg-accent); }
    .topbar-right { display: flex; gap: 12px; align-items: center; }
    .topbar-right a {
        color: #cad5e8;
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
    }
    .topbar-right a:hover { background: var(--shg-accent); color: white; }
    .topbar-right .whatsapp-link {
        width: auto;
        padding: 0 12px;
        gap: 5px;
        border-radius: 14px;
        background: #25d366;
        color: white;
    }
    .topbar-right .whatsapp-link:hover { background: #1ea954; }

        /* Header */
        .shg-header {
            background: white;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--shg-border);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
        }
        @media (max-width: 992px) {
            .header-inner { padding: 10px 0; }
        }
        .site-title-link { text-decoration: none; display: inline-block; }
        .shg-default-logo {
            max-height: 65px;
            width: auto;
            display: block;
        }

        .custom-logo { max-height: 65px; width: auto; }

        .main-navigation {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .main-navigation ul {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .main-navigation ul a {
            color: var(--shg-text);
            font-weight: 500;
            font-size: 15px;
            padding: 8px 0;
            position: relative;
        }
        .main-navigation ul a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--shg-accent);
            transition: var(--shg-transition);
        }
        .main-navigation ul a:hover::after,
        .main-navigation ul .current-menu-item a::after { width: 100%; }
        .main-navigation ul a:hover { color: var(--shg-primary); }

        .header-cta { margin-left: 24px; }

        /* Push nav to right so Book Now sits next to it on desktop
           (replaces the old space-between behavior since the button now lives
           outside the nav instead of inside it) */
        .header-inner > .main-navigation { margin-left: auto; }

        .mobile-menu-toggle {
            display: none;
            background: var(--shg-bg-light);
            border: none;
            width: 44px;
            height: 44px;
            cursor: pointer;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            padding: 0;
            border-radius: 8px;
            transition: all 0.2s;
        }
        .mobile-menu-toggle:hover,
        .mobile-menu-toggle:active {
            background: var(--shg-primary);
        }
        .mobile-menu-toggle:hover span,
        .mobile-menu-toggle:active span {
            background: #ffffff;
        }
        .mobile-menu-toggle span {
            display: block;
            width: 22px;
            height: 2.5px;
            background: var(--shg-primary);
            border-radius: 2px;
            transition: var(--shg-transition);
        }
        .mobile-menu-toggle.active {
            background: var(--shg-primary);
        }
        .mobile-menu-toggle.active span {
            background: #ffffff;
        }
        .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
        .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

        /* Hero Section */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, #C9123E 0%, #E11546 50%, #F03A66 100%);
            background-size: cover;
            background-position: center;
            color: white;
            padding: 110px 0 140px;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 115, 182, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero-content {
            max-width: 820px;
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.18);
            color: #ffffff;
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.8px;
            margin-bottom: 22px;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            text-transform: uppercase;
        }
        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #BAD700;
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(186, 215, 0, 0.6);
        }
        .hero-title {
            color: #ffffff;
            margin-bottom: 22px;
            font-weight: 700;
            text-shadow: 0 2px 20px rgba(0,0,0,0.15);
        }
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 38px;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 400;
        }
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }
        .hero-stats {
            display: flex;
            gap: 0;
            flex-wrap: wrap;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.22);
            padding-top: 32px;
        }
        .stat-item {
            position: relative;
            padding: 0 32px;
            min-width: 130px;
        }
        .stat-item:first-child {
            padding-left: 0;
        }
        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 8px;
            bottom: 8px;
            width: 1px;
            background: rgba(255, 255, 255, 0.18);
        }
        .stat-item h3 {
            color: #ffffff;
            font-size: 2.4rem;
            margin-bottom: 6px;
            font-family: var(--shg-font-body);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.02em;
        }
        .stat-item h3 .stat-plus {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            margin-left: 2px;
        }
        .stat-item p {
            margin: 0;
            color: rgba(255, 255, 255, 0.88);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .hero-shape {
            position: absolute;
            right: -150px;
            top: -150px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-shape-2 {
            position: absolute;
            left: -100px;
            bottom: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 115, 182, 0.18) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Section Header */
        .section-header { margin-bottom: 50px; }
        .section-tag {
            display: inline-block;
            color: var(--shg-accent);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
            position: relative;
        }
        .section-header.text-center .section-tag::before,
        .section-header.text-center .section-tag::after {
            content: '';
            display: inline-block;
            width: 30px;
            height: 1px;
            background: var(--shg-accent);
            vertical-align: middle;
            margin: 0 12px;
        }
        .section-title {
            margin-bottom: 15px;
        }
        .section-desc {
            color: var(--shg-text-light);
            max-width: 700px;
            margin: 0 auto;
            font-size: 16px;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: 30px;
        }
        .feature-card {
            background: white;
            padding: 32px 28px;
            border-radius: var(--shg-radius-lg);
            box-shadow: var(--shg-shadow);
            transition: var(--shg-transition);
            border: 1px solid var(--shg-border);
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--shg-primary), var(--shg-primary-light));
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease;
        }
        .feature-card:hover::before {
            transform: scaleY(1);
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shg-shadow-lg);
            border-color: transparent;
        }
        .feature-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--shg-text);
            font-weight: 700;
        }
        .feature-card p {
            color: var(--shg-text-light);
            margin: 0;
            font-size: 14.5px;
            line-height: 1.6;
        }

        /* Projects Grid */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
            gap: 30px;
        }
        .project-card {
            background: white;
            border-radius: var(--shg-radius-lg);
            overflow: hidden;
            box-shadow: var(--shg-shadow);
            transition: var(--shg-transition);
            border: 1px solid var(--shg-border);
        }
        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shg-shadow-lg);
        }
        .project-image {
            position: relative;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            background: var(--shg-bg-light);
        }
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
            display: block;
        }
        .project-card:hover .project-image img { transform: scale(1.05); }
        .project-status {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: white;
            background: var(--shg-success);
        }
        .status-ongoing { background: var(--shg-warning); color: #333; }
            .status-upcoming { background: var(--shg-info); }
            .status-completed { background: var(--shg-success); }
            .project-content { padding: 25px; }
            .project-location {
                color: var(--shg-text-light);
                font-size: 13px;
                margin-bottom: 10px;
            }
            .project-location i { color: var(--shg-accent); margin-right: 5px; }
            .project-title {
                font-size: 1.35rem;
                margin-bottom: 12px;
                line-height: 1.3;
            }
            .project-title a { color: var(--shg-primary); }
            .project-title a:hover { color: var(--shg-accent); }
            .project-excerpt {
                color: var(--shg-text-light);
                font-size: 14px;
                margin-bottom: 15px;
            }
            .project-meta {
                display: flex;
                flex-wrap: wrap;
                gap: 15px;
                margin-bottom: 18px;
                padding: 15px 0;
                border-top: 1px solid var(--shg-border);
                border-bottom: 1px solid var(--shg-border);
            }
            .project-meta span {
                font-size: 13px;
                color: var(--shg-text-light);
                display: inline-flex;
                align-items: center;
                gap: 5px;
            }
            .project-meta i { color: var(--shg-primary); }
            .project-actions {
                display: flex;
                gap: 10px;
            }

            /* About Brief */
            .about-brief-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: center;
            }
            .about-brief-image {
                position: relative;
            }
            .about-brief-image img {
                border-radius: var(--shg-radius-lg);
                box-shadow: var(--shg-shadow-lg);
            }
            .experience-badge {
                position: absolute;
                bottom: -20px;
                left: -20px;
                background: var(--shg-accent);
                color: white;
                padding: 25px 30px;
                border-radius: var(--shg-radius-lg);
                text-align: center;
                box-shadow: var(--shg-shadow-lg);
            }
            .experience-badge h3 {
                color: white;
                font-size: 3rem;
                margin: 0;
                font-family: var(--shg-font-body);
                font-weight: 800;
            }
            .experience-badge p { margin: 0; font-weight: 500; }
            .about-points {
                margin: 25px 0;
                list-style: none;
                padding: 0;
            }
            .about-points li {
                padding: 8px 0;
                color: var(--shg-text);
                font-size: 15px;
            }
            .about-points i {
                color: var(--shg-success);
                margin-right: 10px;
            }
            .lead-text {
                font-size: 1.05rem;
                color: var(--shg-text);
                font-weight: 500;
                margin-bottom: 16px;
                line-height: 1.55;
            }

            /* Bank Partners */
            .bank-logos {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                align-items: stretch;
            }
            @media (min-width: 480px) {
                .bank-logos { grid-template-columns: repeat(3, 1fr); }
            }
            @media (min-width: 768px) {
                .bank-logos { grid-template-columns: repeat(4, 1fr); gap: 18px; }
            }
            @media (min-width: 1024px) {
                .bank-logos { grid-template-columns: repeat(6, 1fr); }
            }
            .bank-logo {
                background: white;
                padding: 22px 14px;
                border-radius: var(--shg-radius);
                text-align: center;
                box-shadow: var(--shg-shadow);
                transition: var(--shg-transition);
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 92px;
            }
            .bank-logo:hover {
                transform: translateY(-3px);
                box-shadow: var(--shg-shadow-lg);
            }
            .bank-logo img {
                max-height: 60px;
                max-width: 100%;
                margin: 0 auto;
                filter: grayscale(40%);
                transition: var(--shg-transition);
            }
            .bank-logo:hover img { filter: grayscale(0%); }
            /* Text-based bank name (shown when no logo image is set) */
            .bank-logo-name {
                display: block;
                font-family: var(--shg-font-heading);
                font-weight: 700;
                font-size: 13.5px;
                line-height: 1.3;
                color: var(--shg-text);
                letter-spacing: -0.01em;
            }
            .bank-logo:hover .bank-logo-name { color: var(--shg-primary); }

            /* CTA Section */
            .cta-section {
                background: linear-gradient(135deg, var(--shg-primary) 0%, var(--shg-primary-dark) 100%);
                padding: 70px 0;
                color: white;
                position: relative;
                overflow: hidden;
            }
            .cta-section::before {
                content: '';
                position: absolute;
                right: -100px;
                top: -100px;
                width: 300px;
                height: 300px;
                background: radial-gradient(circle, rgba(0, 115, 182, 0.2) 0%, transparent 70%);
                border-radius: 50%;
            }
            .cta-inner {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                gap: 30px;
                position: relative;
                z-index: 2;
            }
            .cta-content h2 {
                color: white;
                margin-bottom: 10px;
            }
            .cta-content p { margin: 0; opacity: 0.9; }
            .cta-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

            /* Page Header */
            .page-header-section {
                background: linear-gradient(135deg, var(--shg-primary) 0%, var(--shg-primary-dark) 100%);
                color: white;
                padding: 60px 0;
                text-align: center;
                position: relative;
                overflow: hidden;
            }
            .page-header-section::before {
                content: '';
                position: absolute;
                inset: 0;
                background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"%3E%3Cpath fill="%23ffffff" fill-opacity="0.05" d="M30 0c16.569 0 30 13.431 30 30S46.569 60 30 60 0 46.569 0 30 13.431 0 30 0zm0 4C15.64 4 4 15.64 4 30s11.64 26 26 26 26-11.64 26-26S44.36 4 30 4z"/%3E%3C/svg%3E');
                opacity: 0.5;
            }
            .page-title {
                color: white;
                margin-bottom: 15px;
                position: relative;
                z-index: 2;
            }
            .breadcrumb {
                color: rgba(255,255,255,0.85);
                font-size: 14px;
                position: relative;
                z-index: 2;
            }
            .breadcrumb a {
                color: #ffffff;
                text-decoration: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.5);
                padding-bottom: 1px;
                transition: border-color 0.2s;
            }
            .breadcrumb a:hover { border-bottom-color: #ffffff; }
            .breadcrumb .separator { margin: 0 8px; opacity: 0.6; }

            /* About Page */
            .about-content-grid {
                display: grid;
                grid-template-columns: 1fr 1.2fr;
                gap: 60px;
                align-items: center;
            }
            .about-content .lead {
                font-size: 18px;
                color: var(--shg-text);
                font-weight: 500;
                margin-bottom: 20px;
            }
            .about-image img { border-radius: var(--shg-radius-lg); box-shadow: var(--shg-shadow-lg); }

            .vm-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
                gap: 30px;
            }
            .vm-card {
                background: white;
                padding: 40px 30px;
                border-radius: var(--shg-radius-lg);
                text-align: center;
                box-shadow: var(--shg-shadow);
                transition: var(--shg-transition);
            }
            .vm-card:hover { transform: translateY(-5px); box-shadow: var(--shg-shadow-lg); }
            .vm-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, var(--shg-primary), var(--shg-primary-light));
                color: white;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                font-size: 32px;
                margin: 0 auto 20px;
            }

            .stats-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
                gap: 30px;
            }
            .stat-box {
                text-align: center;
                padding: 30px 20px;
            }
            .stat-icon {
                color: var(--shg-accent);
                font-size: 48px;
                margin-bottom: 15px;
            }
            .stat-number {
                font-size: 3rem;
                color: var(--shg-primary);
                margin: 0 0 5px;
                font-family: var(--shg-font-body);
                font-weight: 800;
            }

            /* Contact Page */
            .contact-info-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
                gap: 25px;
                margin-bottom: 60px;
            }
            .contact-info-card {
                background: white;
                padding: 35px 25px;
                border-radius: var(--shg-radius-lg);
                text-align: center;
                box-shadow: var(--shg-shadow);
                transition: var(--shg-transition);
                border: 1px solid var(--shg-border);
            }
            .contact-info-card:hover {
                transform: translateY(-5px);
                box-shadow: var(--shg-shadow-lg);
                border-color: var(--shg-accent);
            }
            .info-icon {
                width: 65px;
                height: 65px;
                background: var(--shg-primary);
                color: white;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                font-size: 24px;
                margin: 0 auto 18px;
            }
            .contact-info-card h4 { margin-bottom: 10px; }
            .contact-info-card p { margin: 0; color: var(--shg-text-light); }

            .contact-form-grid {
                display: grid;
                grid-template-columns: 1.2fr 1fr;
                gap: 50px;
                align-items: start;
            }
            .contact-form-wrap, .contact-map {
                background: white;
                padding: 40px;
                border-radius: var(--shg-radius-lg);
                box-shadow: var(--shg-shadow);
            }
            .contact-form-wrap h3, .contact-map h3 {
                margin-bottom: 10px;
            }
            .map-wrap { border-radius: var(--shg-radius); overflow: hidden; }

            /* Forms - SHG Forms */
            .shg-form { display: block; }
            .shg-form-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                margin-bottom: 15px;
            }
            .shg-form-row.full { grid-template-columns: 1fr; }
            .shg-form-group { margin-bottom: 18px; }
            .shg-form-group label {
                display: block;
                margin-bottom: 8px;
                font-weight: 500;
                color: var(--shg-text);
                font-size: 14px;
            }
            .shg-form-group label .required { color: var(--shg-danger); }
            .shg-form-group input,
            .shg-form-group select,
            .shg-form-group textarea {
                width: 100%;
                padding: 13px 16px;
                border: 1.5px solid var(--shg-border);
                border-radius: var(--shg-radius);
                font-size: 15px;
                font-family: inherit;
                transition: var(--shg-transition);
                background: white;
                color: var(--shg-text);
            }
            .shg-form-group input:focus,
            .shg-form-group select:focus,
            .shg-form-group textarea:focus {
                outline: none;
                border-color: var(--shg-primary);
                box-shadow: 0 0 0 3px rgba(225, 21, 70, 0.1);
            }
            .shg-form-group textarea { resize: vertical; min-height: 100px; }
            .shg-form-section-title {
                font-size: 1.2rem;
                color: var(--shg-primary);
                margin: 30px 0 20px;
                padding-bottom: 10px;
                border-bottom: 2px solid var(--shg-accent);
                font-family: var(--shg-font-body);
                font-weight: 600;
            }
            .shg-form-section-title:first-child { margin-top: 0; }

            .shg-checkbox-wrap {
                display: flex;
                align-items: flex-start;
                gap: 10px;
                padding: 15px;
                background: var(--shg-bg-light);
                border-radius: var(--shg-radius);
                margin-bottom: 20px;
            }
            .shg-checkbox-wrap input[type="checkbox"] {
                width: auto;
                margin-top: 3px;
            }
            .shg-checkbox-wrap label {
                margin: 0;
                font-size: 14px;
                color: var(--shg-text-light);
            }

            .shg-form-submit-row {
                margin-top: 25px;
                text-align: center;
            }
            .shg-form-message {
                padding: 15px 20px;
                border-radius: var(--shg-radius);
                margin-bottom: 20px;
                display: none;
            }
            .shg-form-message.show { display: block; }
            .shg-form-message.success {
                background: #d4edda;
                color: #155724;
                border: 1px solid #c3e6cb;
            }
            .shg-form-message.error {
                background: #f8d7da;
                color: #721c24;
                border: 1px solid #f5c6cb;
            }
            .shg-form-loader { display: none; }
            .shg-form-loader.show { display: inline-block; }

            /* Project Detail */
            .project-detail-grid {
                display: grid;
                grid-template-columns: 2fr 1fr;
                gap: 40px;
                align-items: start;
            }
            .project-detail-image {
                position: relative;
                border-radius: var(--shg-radius-lg);
                overflow: hidden;
                margin-bottom: 30px;
            }
            .project-detail-meta {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
                gap: 20px;
                padding: 25px;
                background: var(--shg-bg-light);
                border-radius: var(--shg-radius-lg);
                margin-bottom: 30px;
            }
            .meta-item {
                display: flex;
                gap: 15px;
                align-items: center;
            }
            .meta-item i {
                color: var(--shg-primary);
                font-size: 24px;
                width: 45px;
                height: 45px;
                background: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .meta-label {
                display: block;
                font-size: 12px;
                color: var(--shg-text-light);
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
            .meta-item strong { color: var(--shg-text); font-size: 14px; }

            .project-description {
                color: var(--shg-text);
                line-height: 1.8;
                margin-bottom: 30px;
            }
            .features-list, .amenities-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
                gap: 12px;
                margin-bottom: 30px;
            }
            .feature-item, .amenity-item {
                padding: 10px 15px;
                background: var(--shg-bg-light);
                border-radius: var(--shg-radius);
                font-size: 14px;
            }
            .feature-item i { color: var(--shg-success); margin-right: 8px; }
            .amenity-item i { color: var(--shg-accent); margin-right: 8px; }

            .layouts-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                margin-bottom: 30px;
            }
            .layout-item {
                text-align: center;
            }
            .layout-item h4 { margin-bottom: 10px; }
            .layout-item img {
                border: 1px solid var(--shg-border);
                border-radius: var(--shg-radius);
                cursor: zoom-in;
            }

            .project-gallery {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
                gap: 12px;
                margin-bottom: 30px;
            }
            .project-gallery a img {
                border-radius: var(--shg-radius);
                transition: var(--shg-transition);
            }
            .project-gallery a:hover img { transform: scale(1.05); }

            .project-map { border-radius: var(--shg-radius); overflow: hidden; }

            /* Sidebar */
            .project-sidebar, .booking-sidebar {
                display: flex;
                flex-direction: column;
                gap: 20px;
                position: sticky;
                top: 100px;
            }
            .sidebar-card {
                background: white;
                padding: 25px;
                border-radius: var(--shg-radius-lg);
                box-shadow: var(--shg-shadow);
                border: 1px solid var(--shg-border);
            }
            .price-card { border-top: 4px solid var(--shg-accent); }
            .price-display {
                font-size: 2rem;
                font-weight: 800;
                color: var(--shg-primary);
                margin: 10px 0 20px;
                font-family: var(--shg-font-body);
            }
            .sidebar-contact { list-style: none; padding: 0; margin: 0; }
            .sidebar-contact li {
                padding: 8px 0;
                display: flex;
                align-items: center;
                gap: 10px;
            }
            .sidebar-contact i { color: var(--shg-accent); width: 20px; }

            .highlight-card {
                background: linear-gradient(135deg, var(--shg-primary) 0%, var(--shg-primary-dark) 100%);
                color: white;
            }
            .highlight-card h3, .highlight-card h4 { color: white; }
            .process-steps {
                list-style: none;
                counter-reset: step;
                padding: 0;
                margin: 0;
            }
            .process-steps li {
                counter-increment: step;
                padding: 12px 0 12px 45px;
                position: relative;
                font-size: 14px;
                color: rgba(255,255,255,0.9);
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .process-steps li:last-child { border-bottom: none; }
            .process-steps li::before {
                content: counter(step);
                position: absolute;
                left: 0;
                top: 14px;
                width: 32px;
                height: 32px;
                background: #ffffff;
                color: var(--shg-primary);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 700;
                font-size: 14px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            }

            .benefits-list { padding: 0; margin: 0; }
            .benefits-list li {
                padding: 8px 0;
                font-size: 14px;
                color: var(--shg-text-light);
            }
            .benefits-list i {
                color: var(--shg-success);
                margin-right: 10px;
            }

            /* Project Filters */
            .project-filters {
                display: flex;
                justify-content: center;
                gap: 12px;
                margin-bottom: 40px;
                flex-wrap: wrap;
            }
            .filter-btn {
                padding: 10px 24px;
                background: white;
                border: 1.5px solid var(--shg-border);
                border-radius: 50px;
                color: var(--shg-text);
                cursor: pointer;
                font-weight: 500;
                transition: var(--shg-transition);
                font-family: inherit;
                font-size: 14px;
            }
            .filter-btn:hover, .filter-btn.active {
                background: var(--shg-primary);
                color: white;
                border-color: var(--shg-primary);
            }

            /* Gallery Page */
            .gallery-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
                gap: 20px;
            }
            .gallery-item {
                position: relative;
                border-radius: var(--shg-radius-lg);
                overflow: hidden;
                aspect-ratio: 4/3;
                display: block;
            }
            .gallery-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }
            .gallery-item:hover img { transform: scale(1.1); }
            .gallery-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(to top, rgba(225,21,70,0.85) 0%, rgba(225,21,70,0) 60%);
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                align-items: center;
                padding: 20px;
                opacity: 0;
                transition: opacity 0.3s ease;
                color: white;
            }
            .gallery-item:hover .gallery-overlay { opacity: 1; }
            .gallery-overlay i {
                font-size: 32px;
                margin-bottom: 10px;
            }
            .gallery-overlay span { font-size: 14px; font-weight: 500; }

            /* Booking Page */
            .booking-grid {
                display: grid;
                grid-template-columns: 1.7fr 1fr;
                gap: 40px;
                align-items: start;
            }
            .booking-main {
                background: white;
                padding: 40px;
                border-radius: var(--shg-radius-lg);
                box-shadow: var(--shg-shadow);
            }

            /* Site Visit page */
            .site-visit-grid {
                display: grid;
                grid-template-columns: 1.6fr 1fr;
                gap: 40px;
                align-items: start;
            }
            .site-visit-main {
                background: white;
                padding: 40px;
                border-radius: var(--shg-radius-lg);
                box-shadow: var(--shg-shadow);
            }
            .site-visit-intro,
            .shg-site-visit-intro {
                background: linear-gradient(135deg, rgba(225, 21, 70, 0.06), rgba(0, 115, 182, 0.05));
                border-left: 3px solid var(--shg-primary);
                padding: 18px 22px;
                border-radius: 0 var(--shg-radius) var(--shg-radius) 0;
                margin-bottom: 28px;
            }
            .shg-site-visit-intro h4 {
                margin: 0 0 8px;
                color: var(--shg-primary);
                font-size: 1.1rem;
                font-weight: 600;
            }
            .shg-site-visit-intro h4 i {
                margin-right: 8px;
            }
            .shg-site-visit-intro p {
                margin: 0;
                color: var(--shg-text);
                font-size: 14px;
                line-height: 1.55;
            }
            .visit-benefits {
                list-style: none;
                padding: 0;
                margin: 12px 0 0;
            }
            .visit-benefits li {
                padding: 8px 0;
                color: rgba(255, 255, 255, 0.92);
                font-size: 13.5px;
                line-height: 1.45;
                display: flex;
                gap: 10px;
                align-items: flex-start;
            }
            .visit-benefits li i {
                color: #BAD700;
                margin-top: 4px;
                flex-shrink: 0;
                font-size: 11px;
            }

            /* Floating Whatsapp */
            .floating-whatsapp {
                position: fixed;
                bottom: 30px;
                right: 30px;
                width: 60px;
                height: 60px;
                background: #25d366;
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 30px;
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
                z-index: 999;
                transition: var(--shg-transition);
                animation: pulse 2s infinite;
            }
            .floating-whatsapp:hover {
                background: #1ea954;
                color: white;
                transform: scale(1.1);
            }
            @keyframes pulse {
                0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
                70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
                100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
            }

            /* Footer */
            .site-footer {
                background: var(--shg-bg-dark);
                color: #b8c3d6;
            }
            .footer-main { padding: 70px 0 40px; }
            .footer-grid {
                display: grid;
                grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
                gap: 40px;
            }
            .footer-widget-title {
                color: white;
                margin-bottom: 20px;
                font-size: 1.1rem;
                font-family: var(--shg-font-body);
                position: relative;
                padding-bottom: 12px;
            }
            .footer-widget-title::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 40px;
                height: 2px;
                background: var(--shg-accent);
            }
            .footer-about p { margin-bottom: 20px; line-height: 1.7; }
            .footer-social {
                display: flex;
                gap: 10px;
            }
            .footer-social a {
                width: 38px;
                height: 38px;
                background: rgba(255,255,255,0.08);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: var(--shg-transition);
            }
            .footer-social a:hover {
                background: var(--shg-accent);
                transform: translateY(-3px);
            }

            .footer-links { padding: 0; }
            .footer-links li { padding: 6px 0; }
            .footer-links a {
                color: #b8c3d6;
                font-size: 14px;
                transition: var(--shg-transition);
            }
            .footer-links a:hover { color: var(--shg-accent); padding-left: 5px; }
            .footer-links i { margin-right: 8px; color: var(--shg-accent); }

            .contact-info { padding: 0; }
            .contact-info li {
                display: flex;
                gap: 12px;
                margin-bottom: 12px;
                align-items: flex-start;
                font-size: 14px;
            }
            .contact-info i {
                color: var(--shg-accent);
                margin-top: 5px;
                min-width: 16px;
            }
            .contact-info a { color: #b8c3d6; }
                .contact-info a:hover { color: var(--shg-accent); }

                .footer-bottom {
                    background: rgba(0,0,0,0.2);
                    padding: 20px 0;
                    border-top: 1px solid rgba(255,255,255,0.05);
                }
                .footer-bottom .container {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 10px;
                }
                .footer-bottom p {
                    margin: 0;
                    font-size: 13px;
                    color: #8a96ad;
                }
                .footer-bottom a { color: var(--shg-accent); }
                .footer-disclaimer { font-style: italic; }

                /* Booking Form Specific */
                .shg-payment-summary {
                    background: linear-gradient(135deg, var(--shg-primary), var(--shg-primary-dark));
                    color: white;
                    padding: 28px 25px;
                    border-radius: var(--shg-radius);
                    margin-bottom: 25px;
                    text-align: center;
                    box-shadow: 0 8px 24px rgba(225, 21, 70, 0.18);
                }
                .shg-payment-summary h4 {
                    color: rgba(255, 255, 255, 0.92);
                    margin-bottom: 12px;
                    font-family: var(--shg-font-body);
                    font-size: 14px;
                    font-weight: 500;
                    text-transform: uppercase;
                    letter-spacing: 1.2px;
                }
                .shg-payment-summary .amount {
                    font-size: 2.6rem;
                    font-weight: 800;
                    color: #ffffff;
                    margin-bottom: 10px;
                    line-height: 1;
                    letter-spacing: -0.02em;
                }
                .shg-payment-summary p { margin: 0; opacity: 0.9; font-size: 13px; }

                /* Responsive */
                @media (max-width: 992px) {
                    .about-brief-grid, .about-content-grid, .booking-grid, .site-visit-grid, .project-detail-grid, .contact-form-grid {
                        grid-template-columns: 1fr;
                    }
                    .project-sidebar, .booking-sidebar { position: relative; top: 0; }
                    .hero-title { font-size: 2.5rem; }
                    .features-grid { grid-template-columns: repeat(2, 1fr); }
                }

                /* Mobile drawer menu - hidden by default on desktop */
                .mobile-menu-header,
                .mobile-menu-close,
                .mobile-menu-contact,
                .mobile-menu-overlay {
                    display: none;
                }

                @media (max-width: 992px) {
                    .section-padding { padding: 50px 0; }
                    .shg-topbar { display: none; }
                    .mobile-menu-toggle { display: flex; }

                    /* Compact "Book Now" button - sits right before hamburger on mobile.
                       margin-left: auto pushes it to the right side of the header bar. */
                    .header-cta {
                        margin-left: auto;
                        margin-right: 8px;
                        padding: 8px 14px;
                        min-height: 38px;
                        font-size: 13px;
                        font-weight: 600;
                        line-height: 1;
                        border-radius: 8px;
                        white-space: nowrap;
                    }

                    /* Drawer slides in from LEFT */
                    .main-navigation {
                        position: fixed;
                        top: 0;
                        left: 0;
                        bottom: 0;
                        width: 320px;
                        max-width: 85vw;
                        height: 100vh;
                        background: #ffffff;
                        flex-direction: column;
                        align-items: stretch;
                        padding: 0;
                        gap: 0;
                        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.18);
                        transform: translateX(-100%);
                        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                        z-index: 1001;
                        overflow-y: auto;
                        -webkit-overflow-scrolling: touch;
                        max-height: none;
                    }
                    .main-navigation.active {
                        transform: translateX(0);
                    }

                    /* Drawer header with logo + close button */
                    .mobile-menu-header {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        padding: 18px 22px;
                        border-bottom: 1px solid var(--shg-border);
                        background: #ffffff;
                        position: sticky;
                        top: 0;
                        z-index: 5;
                    }
                    .mobile-menu-logo img {
                        height: 38px;
                        width: auto;
                        display: block;
                    }
                    .mobile-menu-close {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 38px;
                        height: 38px;
                        border-radius: 50%;
                        background: var(--shg-bg-light);
                        border: none;
                        cursor: pointer;
                        font-size: 16px;
                        color: var(--shg-text);
                        transition: all 0.2s;
                    }
                    .mobile-menu-close:hover,
                    .mobile-menu-close:active {
                        background: var(--shg-primary);
                        color: #ffffff;
                    }

                    /* Nav links */
                    .main-navigation ul {
                        flex-direction: column;
                        gap: 0;
                        width: 100%;
                        padding: 12px 0;
                    }
                    .main-navigation ul li {
                        width: 100%;
                        border-bottom: 1px solid var(--shg-border);
                    }
                    .main-navigation ul li:last-child {
                        border-bottom: none;
                    }
                    .main-navigation ul a {
                        padding: 16px 24px;
                        display: flex;
                        align-items: center;
                        font-size: 15px;
                        font-weight: 500;
                        color: var(--shg-text);
                        text-decoration: none;
                        transition: all 0.2s;
                    }
                    .main-navigation ul a:hover,
                    .main-navigation ul a:active,
                    .main-navigation ul .current-menu-item > a {
                        background: var(--shg-bg-light);
                        color: var(--shg-primary);
                        padding-left: 28px;
                    }

                    /* Contact info section at bottom of drawer */
                    .mobile-menu-contact {
                        display: block;
                        padding: 22px;
                        margin-top: 18px;
                        background: var(--shg-bg-light);
                        border-top: 1px solid var(--shg-border);
                    }
                    .mobile-menu-contact-title {
                        font-size: 11px;
                        font-weight: 700;
                        text-transform: uppercase;
                        letter-spacing: 1.2px;
                        color: var(--shg-text-light);
                        margin: 0 0 12px;
                    }
                    .mobile-menu-contact a {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        padding: 10px 0;
                        color: var(--shg-text);
                        font-size: 14px;
                        text-decoration: none;
                        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                    }
                    .mobile-menu-contact a:last-child {
                        border-bottom: none;
                    }
                    .mobile-menu-contact a i {
                        color: var(--shg-primary);
                        width: 18px;
                        text-align: center;
                        font-size: 14px;
                    }
                    .mobile-menu-contact .mobile-menu-whatsapp {
                        margin-top: 10px;
                        padding: 12px 16px;
                        background: #25d366;
                        color: #ffffff;
                        border-radius: var(--shg-radius);
                        justify-content: center;
                        font-weight: 600;
                        border-bottom: none;
                    }
                    .mobile-menu-contact .mobile-menu-whatsapp i {
                        color: #ffffff;
                        font-size: 18px;
                    }

                    /* Overlay backdrop */
                    .mobile-menu-overlay {
                        display: block;
                        position: fixed;
                        inset: 0;
                        background: rgba(15, 18, 32, 0.55);
                        opacity: 0;
                        visibility: hidden;
                        z-index: 1000;
                        transition: opacity 0.3s ease, visibility 0.3s ease;
                        backdrop-filter: blur(2px);
                        -webkit-backdrop-filter: blur(2px);
                    }
                    .mobile-menu-overlay.active {
                        opacity: 1;
                        visibility: visible;
                    }

                    /* Lock body scroll when menu is open */
                    body.shg-menu-open {
                        overflow: hidden;
                    }
                }

                @media (max-width: 768px) {
                    /* Hero mobile - critical fixes */
                    .hero-section { padding: 60px 0 70px; }
                    .hero-title { font-size: 2rem; line-height: 1.2; margin-bottom: 16px; }
                    .hero-subtitle { font-size: 1rem; margin-bottom: 28px; }
                    .hero-badge { font-size: 11px; padding: 7px 16px; margin-bottom: 18px; }
                    .hero-buttons { gap: 12px; margin-bottom: 40px; }
                    .hero-buttons .btn { font-size: 14px; padding: 13px 24px; }
                    /* Hero stats on mobile - clean horizontal row */
                    .hero-stats {
                        gap: 0;
                        padding-top: 25px;
                        margin-top: 28px;
                        justify-content: space-between;
                    }
                    .stat-item {
                        padding: 0 8px;
                        min-width: 0;
                        flex: 1;
                        text-align: left;
                    }
                    .stat-item:first-child { padding-left: 0; }
                    .stat-item:last-child { padding-right: 0; }
                    .stat-item:not(:last-child)::after {
                        right: 0;
                    }
                    .stat-item h3 { font-size: 1.65rem; }
                    .stat-item p { font-size: 10.5px; line-height: 1.35; }
                    .hero-shape { width: 300px; height: 300px; right: -80px; top: -80px; }
                    .hero-shape-2 { width: 250px; height: 250px; left: -60px; bottom: -60px; }

                    .section-title { font-size: 1.7rem; }
                    .section-desc { font-size: 14px; }
                    .features-grid { grid-template-columns: 1fr; gap: 20px; }
                    .feature-card { padding: 25px 22px; }
                    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
                    .shg-form-row { grid-template-columns: 1fr; }
                    .booking-main { padding: 22px 18px; }
                    .site-visit-main { padding: 22px 18px; }
                    .cta-inner { flex-direction: column; text-align: center; }
                    .cta-content h2 { font-size: 1.7rem; }
                    .cta-buttons { justify-content: center; width: 100%; }
                    .cta-buttons .btn { flex: 1; min-width: 140px; }
                    .contact-form-wrap, .contact-map { padding: 22px 18px; }
                    .projects-grid { grid-template-columns: 1fr; }
                    .bank-logos { gap: 14px; }

                    /* Header logo size */
                    .shg-default-logo, .custom-logo { max-height: 50px; }

                    /* Typography */
                    h1 { font-size: 2rem; }
                    h2 { font-size: 1.7rem; }
                    h3 { font-size: 1.3rem; }
                }

                @media (max-width: 480px) {
                    .container { padding: 0 16px; }
                    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
                    .hero-buttons { flex-direction: column; align-items: stretch; }
                    .hero-buttons .btn { width: 100%; justify-content: center; }

                    /* Hero stats - 3 column grid on tiny screens */
                    .hero-stats {
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        gap: 0;
                        padding-top: 22px;
                        margin-top: 26px;
                    }
                    .stat-item {
                        padding: 0 6px;
                        text-align: left;
                        min-width: 0;
                    }
                    .stat-item h3 {
                        font-size: 1.5rem;
                        margin-bottom: 4px;
                        word-spacing: -2px;
                    }
                    .stat-item p {
                        font-size: 9.5px;
                        letter-spacing: 0.4px;
                    }
                    .floating-whatsapp { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
                    .layouts-grid { grid-template-columns: 1fr; }
                    .cta-buttons { flex-direction: column; }
                    .cta-buttons .btn { width: 100%; }
                    .hero-section { padding: 50px 0 60px; }
                    .hero-title { font-size: 1.7rem; }
                    .section-padding { padding: 40px 0; }
                    .section-title { font-size: 1.5rem; }
                    .shg-default-logo, .custom-logo { max-height: 44px; }
                }

                /* ============================================================
                   COMPREHENSIVE MOBILE POLISH - all pages
                   ============================================================ */

                @media (max-width: 768px) {
                    /* Page headers (about, projects, contact, gallery, project detail) */
                    .page-header-section {
                        padding: 50px 0 40px;
                    }
                    .page-title {
                        font-size: 1.7rem;
                        margin-bottom: 10px;
                    }
                    .breadcrumb {
                        font-size: 13px;
                    }

                    /* Section tag (eyebrow) - chhota karo */
                    .section-tag {
                        font-size: 11px;
                        letter-spacing: 1.2px;
                        margin-bottom: 8px;
                    }
                    .section-header.text-center .section-tag::before,
                    .section-header.text-center .section-tag::after {
                        width: 18px;
                        margin: 0 8px;
                    }

                    /* Section header content */
                    .section-header { margin-bottom: 32px; }
                    .section-header .section-title { margin-bottom: 8px; }

                    /* About brief points and lead text */
                    .lead-text { font-size: 0.95rem; line-height: 1.55; }
                    .about-points li { font-size: 14px; padding: 6px 0; }
                    .about-points i { font-size: 14px; }

                    /* Single Project page */
                    .project-detail-grid {
                        gap: 30px;
                    }
                    .project-detail-image {
                        aspect-ratio: 16 / 10;
                        border-radius: var(--shg-radius);
                    }
                    .project-detail-meta {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 12px;
                    }
                    .project-detail-meta .meta-card {
                        padding: 14px 12px;
                    }
                    .project-sidebar, .booking-sidebar {
                        margin-top: 0;
                    }
                    .sidebar-card {
                        padding: 22px 20px;
                        margin-bottom: 16px;
                    }
                    .sidebar-card h4 {
                        font-size: 1.05rem;
                        margin-bottom: 12px;
                    }

                    /* Project features & amenities lists */
                    .feature-item, .amenity-item {
                        font-size: 14px;
                        padding: 8px 0;
                    }

                    /* Flat layouts */
                    .layouts-grid {
                        grid-template-columns: 1fr;
                        gap: 20px;
                    }
                    .layout-card {
                        padding: 18px;
                    }

                    /* Contact page cards */
                    .contact-info-grid {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 14px;
                        margin-bottom: 30px;
                    }
                    .contact-info-card {
                        padding: 22px 14px;
                    }
                    .contact-info-card .icon-circle {
                        width: 48px;
                        height: 48px;
                        font-size: 20px;
                        margin-bottom: 12px;
                    }
                    .contact-info-card h4 {
                        font-size: 14px;
                        margin-bottom: 6px;
                    }
                    .contact-info-card p {
                        font-size: 13px;
                        word-break: break-word;
                    }

                    /* Forms - prevent iOS auto-zoom by using 16px+ on inputs */
                    .shg-form input,
                    .shg-form select,
                    .shg-form textarea,
                    .shg-input,
                    input[type="text"],
                    input[type="email"],
                    input[type="tel"],
                    input[type="number"],
                    input[type="date"],
                    input[type="password"],
                    input[type="search"],
                    textarea,
                    select {
                        font-size: 16px !important;
                        padding: 13px 14px;
                    }
                    .shg-form-group label {
                        font-size: 13px;
                        margin-bottom: 6px;
                    }
                    .shg-form-section-title {
                        font-size: 15px;
                        margin-top: 22px;
                        margin-bottom: 14px;
                    }
                    .shg-checkbox-wrap {
                        padding: 14px;
                    }
                    .shg-checkbox-wrap label {
                        font-size: 12.5px;
                        line-height: 1.55;
                    }

                    /* Buttons - min tap target 44px */
                    .btn {
                        min-height: 44px;
                        padding: 12px 22px;
                    }
                    .btn-sm {
                        min-height: 36px;
                        padding: 8px 16px;
                    }
                    .btn-lg {
                        min-height: 48px;
                        padding: 14px 28px;
                    }

                    /* Project card content */
                    .project-card .project-content {
                        padding: 18px 16px;
                    }
                    .project-card .project-title {
                        font-size: 1.15rem;
                        margin-bottom: 8px;
                    }
                    .project-card .project-meta {
                        font-size: 12.5px;
                        gap: 10px;
                    }

                    /* Project filters */
                    .filters {
                        gap: 8px;
                        padding-bottom: 4px;
                        overflow-x: auto;
                        scrollbar-width: none;
                        -webkit-overflow-scrolling: touch;
                    }
                    .filters::-webkit-scrollbar { display: none; }
                    .filter-btn {
                        flex-shrink: 0;
                        padding: 9px 18px;
                        font-size: 13px;
                        white-space: nowrap;
                    }

                    /* Gallery */
                    .gallery-grid {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 8px;
                    }

                    /* CTA Section */
                    .cta-section {
                        padding: 50px 0;
                    }

                    /* Vision/Mission cards */
                    .vm-grid {
                        gap: 16px;
                    }
                    .vm-card {
                        padding: 28px 22px;
                    }
                    .vm-icon {
                        width: 60px;
                        height: 60px;
                        font-size: 24px;
                    }

                    /* About stats */
                    .stats-grid {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 16px;
                    }
                    .stat-box {
                        padding: 22px 14px;
                    }
                    .stat-box .stat-number {
                        font-size: 2.25rem;
                    }
                    .stat-icon {
                        font-size: 36px;
                        margin-bottom: 10px;
                    }

                    /* Map iframe */
                    .contact-map iframe,
                    .project-map iframe {
                        height: 280px;
                    }

                    /* Floating WhatsApp */
                    .floating-whatsapp {
                        width: 52px;
                        height: 52px;
                        font-size: 24px;
                        bottom: 18px;
                        right: 18px;
                    }
                }

                @media (max-width: 480px) {
                    /* Even tighter on tiny phones */
                    .container { padding: 0 14px; }

                    .page-header-section {
                        padding: 38px 0 32px;
                    }
                    .page-title { font-size: 1.45rem; }

                    /* Project detail meta - single column */
                    .project-detail-meta {
                        grid-template-columns: 1fr 1fr;
                    }

                    /* Contact cards - single column on very small */
                    .contact-info-grid {
                        grid-template-columns: 1fr 1fr;
                    }

                    /* About stats 2x2 */
                    .stats-grid {
                        grid-template-columns: repeat(2, 1fr);
                    }
                    .stat-box .stat-number {
                        font-size: 2rem;
                    }

                    /* Gallery single column */
                    .gallery-grid {
                        grid-template-columns: 1fr;
                    }

                    /* Tighten card spacing */
                    .sidebar-card {
                        padding: 20px 16px;
                    }

                    /* Hero section - even tighter */
                    .hero-section { padding: 44px 0 50px; }
                    .hero-title { font-size: 1.55rem; line-height: 1.18; }
                    .hero-subtitle { font-size: 0.95rem; }

                    /* Headings tighter */
                    h1 { font-size: 1.7rem; }
                    h2 { font-size: 1.4rem; }
                    .section-title { font-size: 1.4rem; }
                }

/* ====== LEGAL PAGES (Privacy, Terms, Refund) ====== */
.legal-page {
    background: white;
    padding: 50px 0 70px;
}
.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}
.legal-page .last-updated {
    background: var(--shg-bg-light);
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--shg-text-light);
    margin-bottom: 30px;
    border-left: 3px solid var(--shg-primary);
}
.legal-page p {
    color: var(--shg-text);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 15.5px;
}
.legal-page h2 {
    color: var(--shg-text);
    font-size: 1.45rem;
    font-weight: 700;
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--shg-primary);
    display: inline-block;
}
.legal-page h2:first-of-type { margin-top: 20px; }
.legal-page ul,
.legal-page ol {
    color: var(--shg-text);
    line-height: 1.75;
    margin: 12px 0 20px;
    padding-left: 24px;
}
.legal-page li {
    margin-bottom: 8px;
    font-size: 15px;
}
.legal-page li strong { color: var(--shg-text); }
.legal-page a {
    color: var(--shg-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-page a:hover { color: var(--shg-primary-dark); }
.legal-page .contact-block {
    background: var(--shg-bg-light);
    padding: 18px 22px;
    border-radius: 8px;
    border-left: 3px solid var(--shg-primary);
    margin: 16px 0 24px;
}
.legal-page .contact-block p {
    margin: 0;
    line-height: 1.7;
    font-size: 14.5px;
}
.legal-page .policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    background: white;
    border: 1px solid var(--shg-border);
    border-radius: 8px;
    overflow: hidden;
}
.legal-page .policy-table th {
    background: var(--shg-primary);
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}
.legal-page .policy-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--shg-border-light);
    font-size: 14px;
}
.legal-page .policy-table tr:last-child td { border-bottom: none; }
.legal-page .policy-table tr:nth-child(even) td { background: var(--shg-bg-light); }

@media (max-width: 768px) {
    .legal-page { padding: 30px 0 50px; }
    .legal-page p, .legal-page li { font-size: 14.5px; }
    .legal-page h2 { font-size: 1.2rem; }
    .legal-page .policy-table { font-size: 13px; }
    .legal-page .policy-table th, .legal-page .policy-table td { padding: 9px 12px; }
}

/* ====== FOOTER POLICY ROW (Privacy, Terms, Refund) ====== */
.footer-policy-row {
    background: rgba(0, 0, 0, 0.2);
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-policy-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}
.footer-policy-links li {
    position: relative;
}
.footer-policy-links li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}
.footer-policy-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    white-space: nowrap;
}
.footer-policy-links a:hover {
    color: white;
}

@media (max-width: 600px) {
    .footer-policy-row { padding: 12px 0; }
    .footer-policy-links {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .footer-policy-links li:not(:last-child)::after {
        display: none;
    }
    .footer-policy-links a { font-size: 13px; }
}

/* ============================================================
   RESPONSIVE OVERFLOW FIX (v1.1.1)
   Prevents grid/flex children from blowing out narrow viewports.
   Fixes "project page not responsive / page zooms out" on mobile.
   ============================================================ */

/* Grid + flex children: allow shrinking below intrinsic content width.
   By default these have `min-width: auto`, which is why long meta text
   or fixed-width icons inside .project-detail-main forced the column
   to exceed its 1fr track and overflow the viewport on phones. */
.project-detail-main,
.project-detail-content,
.project-sidebar,
.booking-sidebar,
.booking-main,
.site-visit-main,
.contact-form-wrap,
.contact-map,
.about-image,
.about-content,
.about-brief-grid > *,
.about-content-grid > *,
.booking-grid > *,
.site-visit-grid > *,
.contact-form-grid > *,
.project-detail-grid > * {
    min-width: 0;
    min-height: 0;
}

/* Project meta cards - allow the flex children inside each .meta-item
   to wrap text instead of forcing the card wider than its column. */
.meta-item { min-width: 0; }
.meta-item > div { min-width: 0; flex: 1; overflow-wrap: anywhere; word-wrap: break-word; }
.meta-item i { flex-shrink: 0; }
.meta-item strong { overflow-wrap: anywhere; word-wrap: break-word; }
.meta-label { overflow-wrap: anywhere; }

/* Media containers - hard guarantee they never exceed their parent. */
.project-detail-image,
.project-detail-image img,
.layout-item img,
.project-gallery img,
.gallery-item img,
.about-image img,
.vm-card img,
.feature-card img {
    max-width: 100%;
    height: auto;
}

/* Embedded maps and iframes - constrain on every page. */
.project-map,
.contact-map,
.map-wrap {
    max-width: 100%;
    overflow: hidden;
}
.project-map iframe,
.contact-map iframe,
.map-wrap iframe {
    max-width: 100%;
    width: 100%;
    display: block;
    border: 0;
}

/* Long URLs / emails in sidebar contact lists shouldn't push the card wider. */
.sidebar-contact li,
.sidebar-contact a,
.contact-info-card p,
.contact-info-card a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Tighter mobile spacing for the project meta block. */
@media (max-width: 480px) {
    .project-detail-meta {
        padding: 18px 14px;
        gap: 14px;
    }
    .meta-item {
        gap: 12px;
        align-items: flex-start;
    }
    .meta-item i {
        width: 38px;
        height: 38px;
        font-size: 18px;
        margin-top: 2px;
    }
    .meta-item strong { font-size: 13px; line-height: 1.4; }
    .meta-label { font-size: 11px; }
}

/* Ultra-narrow phones (≤360px): stack meta items in a single column
   so labels + values always have room to breathe. */
@media (max-width: 360px) {
    .project-detail-meta {
        grid-template-columns: 1fr;
        padding: 16px 12px;
    }
    .container { padding: 0 12px; }
    /* Compact the Book Now button further on tiny phones */
    .header-cta {
        padding: 7px 11px;
        font-size: 12px;
        min-height: 36px;
        margin-right: 6px;
    }
}
