:root {
    --bg: #E9EEF3;
    --card: #ffffff;
    --text: #111827;
    --muted: #4b5563;
    --primary: #0077B6;
    --primary-dark: #023e8a;
    --accent: #0077B6;
    --border: #d1d5db;
    --good: #15803d;
    --warn: #b45309;
    --shadow-soft: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --font-heading: "Outfit", system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    background: var(--bg);
    color: var(--text);
    background-image:
        radial-gradient(circle at 10% 5%, rgba(255, 153, 51, 0.18), transparent 32%),
        radial-gradient(circle at 90% 0%, rgba(19, 136, 8, 0.16), transparent 30%);
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.12;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 253, 248, 0.92));
    pointer-events: none;
}

body.page-home::before {
    background-image: url("/images/houses/indian-house-1.svg");
}

body.page-about::before {
    background-image: url("/images/houses/indian-house-2.svg");
}

body.page-blog::before {
    background-image: url("/images/houses/indian-house-3.svg");
}

body.page-contact::before {
    background-image: url("/images/plans/plan-15x40.svg");
}

body.page-default::before {
    background-image: url("/images/houses/indian-house-1.svg");
}

.india-topbar { background: var(--primary-dark); color: #ffffff; font-weight: 700; font-size: 12px; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }

.india-topbar-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 7px 16px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.india-topbar i {
    margin-right: 6px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    letter-spacing: 0.2px;
}

h1 {
    font-size: clamp(36px, 5vw, 48px);
    line-height: 1.2;
}

h2 {
    font-size: clamp(28px, 4vw, 32px);
    line-height: 1.28;
}

h3 {
    font-size: clamp(22px, 3vw, 26px);
    line-height: 1.32;
}

p,
li {
    font-size: clamp(16px, 1.8vw, 18px);
}

small,
.small-text {
    font-size: 14px;
}

h2 i,
h3 i {
    margin-right: 8px;
}

.site-header { background: rgba(255, 255, 255, 0.85); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); transition: all 0.3s ease; }

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 24px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.2px; white-space: nowrap; flex-shrink: 0; }

.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.brand-text {
    font-size: 24px;
    font-weight: 800;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.nav::-webkit-scrollbar {
    display: none;
}

.nav a { color: var(--text); text-decoration: none; font-weight: 600; font-size: 14px; padding: 10px 12px; border-radius: 999px; transition: all 0.2s ease; }

.nav a i {
    margin-right: 6px;
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav a:hover { color: var(--primary); background: rgba(0, 119, 182, 0.08); }
.nav a:hover i { color: var(--primary); }

.nav a.active { color: #ffffff; background: var(--primary); box-shadow: var(--shadow-card); }
.nav a.active i { color: #ffffff; }

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 28px 16px 44px;
}

.consult-strip {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    padding: 18px;
    margin-bottom: 18px;
}

.festival-strip {
    border: 1px solid #ffd9a7;
    background: linear-gradient(135deg, #fff3e2, #f4fff2);
    margin-bottom: 14px;
}

.festival-strip p {
    margin: 0;
}

.consult-head h2 {
    margin: 0 0 6px;
}

.consult-head p {
    margin: 0 0 14px;
    color: var(--muted);
}

.consult-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr auto;
    gap: 10px;
}

.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #ffffff; border-radius: 22px; padding: 30px; margin-bottom: 24px; box-shadow: 0 20px 40px rgba(0, 119, 182, 0.25); }

.hero h1 { margin: 0 0 8px; line-height: 1.15; color: #ffffff; }

.hero p { margin: 0; opacity: 0.95; font-size: 16px; max-width: 540px; color: rgba(255, 255, 255, 0.9); }

.hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 14px;
}

.cta-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #ffffff !important; box-shadow: 0 4px 12px rgba(0, 119, 182, 0.25); transition: all 0.2s ease; }

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 119, 182, 0.35);
}

.hero-trust {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.hero-trust span {
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.7);
    color: #244b1f;
    padding: 6px 10px;
    border-radius: 999px;
}

.chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip { display: inline-flex; align-items: center; border: 1px solid var(--primary); background: transparent; color: var(--text); border-radius: 999px; padding: 6px 11px; font-weight: 600; font-size: 13px; }

.chip-link {
    text-decoration: none;
}

.chip-link:hover {
    transform: translateY(-1px);
}

.grid {
    display: grid;
    gap: 16px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(95, 76, 37, 0.14);
}

.card h2,
.card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.card h2 {
    font-size: clamp(28px, 4vw, 32px);
}

.city-card {
    text-align: center;
    border-top: 4px solid var(--primary);
}

.city-card:nth-child(even) {
    border-top-color: var(--primary-dark);
}

.mini-label {
    margin: 0 0 8px;
    color: var(--primary-dark);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, #fff3e2, #eefce8);
    color: #6b3f08;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid #f1d4b0;
}

.muted {
    color: var(--muted);
    line-height: 1.55;
}

.field {
    margin-bottom: 12px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

input,
select,
textarea,
button {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #ffb15a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
}

button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

button:hover {
    filter: brightness(0.98);
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.hero-image {
    border-radius: 16px;
    width: 100%;
    height: 270px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 28px rgba(91, 73, 36, 0.2);
}

.gallery {
    margin: 20px 0;
}

.home-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #efd8b9;
    background: var(--card);
}

.carousel-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    padding: 12px 14px;
    border-top: 1px solid #f0dfc8;
}

.carousel-caption h3 {
    margin: 0 0 6px;
}

.carousel-nav {
    position: absolute;
    top: 45%;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    color: #2a2a2a;
    font-size: 26px;
    cursor: pointer;
}

.carousel-nav.prev { left: 10px; }
.carousel-nav.next { right: 10px; }

.blog-page-title {
    margin: 0 0 8px;
}

.blog-menu {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.blog-menu a {
    text-decoration: none;
    font-weight: 600;
    color: #6b3f08;
    background: #fff7ec;
    border: 1px solid #f0d2ad;
    border-radius: 999px;
    padding: 6px 10px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.headline-list li {
    margin-bottom: 8px;
}

.featured-blog {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 12px;
    align-items: center;
}

.featured-blog img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #efd8b9;
}

.post-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.post-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    background: var(--card);
}

.post-meta {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 6px;
}

.side-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.house-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid #efd8b9;
}

.house-card h3 {
    margin: 0 0 6px;
}

.plan-link {
    text-decoration: none;
    color: inherit;
}

.service-link {
    text-decoration: none;
    color: inherit;
}

.plan-card {
    height: 100%;
}

.service-card {
    height: 100%;
}

.plan-cta {
    margin: 8px 0 0;
    font-weight: 700;
    color: var(--primary-dark);
}

.plan-detail-image {
    width: 100%;
    max-width: 900px;
    margin-top: 10px;
    border-radius: 14px;
    border: 1px solid #efd8b9;
    background: var(--card);
}

.stat-card {
    text-align: center;
}

.stat-card h3 { margin: 0; font-size: 30px; color: var(--primary); }

.faq-list {
    display: grid;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    background: #fbfdff;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-body);
}

.faq-item p {
    margin: 8px 0 0;
}

.section {
    scroll-margin-top: 90px;
}

.footer {
    text-align: center;
    color: var(--muted);
    padding: 26px 16px 34px;
    font-weight: 500;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 20;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    padding: 11px 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp i {
    margin-right: 6px;
}

.floating-whatsapp:hover {
    filter: brightness(0.95);
}

@media (max-width: 800px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #ffffff; border-radius: 22px; padding: 30px; margin-bottom: 24px; box-shadow: 0 20px 40px rgba(0, 119, 182, 0.25); }

    .consult-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .india-topbar-inner {
        flex-direction: column;
        gap: 4px;
    }

    .carousel-image {
        height: 230px;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .featured-blog {
        grid-template-columns: 1fr;
    }
}

.result {
    margin-top: 14px;
    border-left: 4px solid var(--primary);
    padding-left: 10px;
}

.priority {
    font-weight: 700;
}

.priority.high {
    color: #b42318;
}

.priority.medium {
    color: var(--warn);
}

.priority.low {
    color: var(--good);
}
