/* ======================================================
   LIVDECOR INTERIOR — Premium Redesign Stylesheet
   Theme: Coral-Red + Deep Purple Premium Design System
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* ======== VARIABLES & DESIGN SYSTEM ======== */
:root {
    /* Color Palette */
    --primary: #d3525e;          /* Coral Red / Pinkish Red */
    --primary-light: #fdf0f1;    /* Light pink for badges/pills background */
    --primary-hover: #b8404b;
    --secondary: #8c4fad;        /* Deep Purple */
    --secondary-light: #f4ebf8;  /* Light purple for background highlights */
    --accent: #9c69cf;           /* Bright Purple/Violet */
    --navy-dark: #131924;        /* Dark Navy for Footer background */
    --navy-text: #0b0f19;        /* Dark Navy/Black for headers */
    --white: #ffffff;
    
    /* Neutral Shades */
    --bg-light: #fafafa;
    --border-light: #e2e8f0;
    --text-main: #334155;        /* Slate 700 for body copy */
    --text-muted: #64748b;       /* Slate 500 for captions/subtext */
    
    /* WhatsApp Color Scheme */
    --wa-green: #1ebd60;
    --wa-bg: #ebfaf2;
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-header: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* UI Helpers */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
    --radius-lg: 24px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    --container-width: 1200px;
}

/* ======== RESET & BASE STYLES ======== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy-text);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

/* ======== UTILITY ELEMENTS ======== */
/* Pill Badge Headers */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Title Highlight Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--navy-text);
}

.section-title span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

/* Custom Checkmark Icons */
.check-icon {
    color: var(--wa-green);
    margin-right: 0.5rem;
}

.purple-check-icon {
    color: var(--secondary);
    margin-right: 0.6rem;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(211, 82, 94, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 82, 94, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(211, 82, 94, 0.25);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(211, 82, 94, 0.35);
    filter: brightness(1.05);
}

/* ======== NAVBAR ======== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Design */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    height: 55px;
    width: auto;
    display: block;
}

.footer-logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-title {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--navy-text);
}

.logo-sub {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-indent: 0.25em;
    text-align: center;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 24px;
    height: 18px;
    padding: 0;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--navy-text);
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-toggle .bar:nth-child(1) {
    top: 0px;
}

.menu-toggle .bar:nth-child(2) {
    top: 8px;
}

.menu-toggle .bar:nth-child(3) {
    top: 16px;
}

/* Active Morphing State */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-15px);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary);
}

/* ======== HERO SECTION ======== */
.hero {
    position: relative;
    padding: 8rem 0 5rem 0;
    background-color: var(--bg-light);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden; /* prevent absolute children from causing horizontal scroll */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Content */
.hero-content {
    color: var(--navy-text);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    opacity: 0.85;
}

.hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.9) 100%);
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Hero Form Card */
.hero-form-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem 2.25rem;
    position: relative;
    z-index: 5;
    border: 1px solid var(--border-light);
}

.hero-form-card .pill-badge {
    margin-bottom: 0.75rem;
}

.hero-form-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--navy-text);
}

/* Step Progress Bar */
.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-light);
    z-index: 1;
    transform: translateY(-50%);
}

.step-indicator-progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background-color: var(--primary);
    z-index: 2;
    transform: translateY(-50%);
    width: 0%;
    transition: width 0.3s ease;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    z-index: 3;
    transition: var(--transition);
}

.step-dot.active {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
}

.step-dot.completed {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Form Styles */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy-text);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--navy-text);
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(211, 82, 94, 0.1);
}

/* Custom Phone Field */
.phone-field-wrapper {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.5rem;
}

.phone-prefix {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy-text);
}

/* WhatsApp Option Box */
.whatsapp-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--wa-bg);
    color: var(--wa-green);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.whatsapp-banner input[type="checkbox"] {
    accent-color: var(--wa-green);
    width: 18px;
    height: 18px;
}

/* Options Grid for Steps 2, 3, 4 */
.options-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.option-select-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.option-select-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.option-select-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.option-select-card:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.option-select-card.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(211, 82, 94, 0.1);
}

.form-step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-step-actions .btn {
    flex: 1;
}

.secure-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Success View */
.success-view {
    text-align: center;
    padding: 1.5rem 0;
}

.success-view i.success-icon {
    font-size: 3.5rem;
    color: var(--wa-green);
    margin-bottom: 1rem;
}

.success-view h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.success-view p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.success-summary-box {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
}

.success-summary-box div {
    margin-bottom: 0.4rem;
}

/* ======== USP STRIP ======== */
.usp-strip {
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 2rem 0;
}

.usp-strip-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.usp-strip-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.usp-strip-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.usp-strip-text h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy-text);
}

.usp-strip-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .usp-strip-grid {
        flex-direction: column;
        align-items: flex-start;
        width: max-content;
        max-width: 100%;
        margin: 0 auto;
        gap: 1.5rem;
    }
}

/* ======== WHY CHOOSE US (STATS) ======== */
.stats-section {
    background-color: var(--secondary);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
    gap: 2rem;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.stat-card p {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 40px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

/* ======== HOMES FOR EVERY BUDGET ======== */
.budget-packages-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.budget-packages-header .header-left {
    max-width: 600px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: relative;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-card-img-wrapper img {
    transform: scale(1.08);
}

.package-tag-pill {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.package-card-body {
    padding: 2rem;
    position: relative;
}

.package-card-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--navy-text);
}

.package-card-body .package-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.package-features-list {
    margin-bottom: 1.5rem;
}

.package-features-list li {
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}

.package-house-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.package-card:hover .package-house-btn {
    background-color: var(--primary);
    color: var(--white);
}

/* ======== WHAT WE OFFER ======== */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offer-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offer-icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.75rem;
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--navy-text);
}

.offer-card .offer-card-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.offer-list li {
    font-size: 0.92rem;
    color: var(--text-main);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

/* ======== GET AN ESTIMATE (CALCULATORS) ======== */
.estimator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.estimate-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.estimate-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--primary-light);
    opacity: 0.5;
    z-index: 1;
}

.estimate-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.estimate-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 15px rgba(140, 79, 173, 0.25);
}

.estimate-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--navy-text);
    position: relative;
    z-index: 2;
}

.estimate-card .estimate-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 220px;
}

.estimate-features {
    margin-bottom: 2rem;
    width: 100%;
}

.estimate-features li {
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.estimate-features li i {
    color: var(--wa-green);
    margin-right: 0.4rem;
    font-size: 0.85rem;
}

.estimate-card .btn {
    width: 100%;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

/* ======== HOW IT WORKS (PROCESS TIMELINE) ======== */
.timeline-container {
    position: relative;
    margin: 4rem 0 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 2px;
    border-top: 2px dotted var(--primary-light);
    z-index: 1;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.timeline-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-circle-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
}

.timeline-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--white);
    border: 6px solid #f8fafc;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.timeline-step-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

/* Active Work Starts Timeline Item styling */
.timeline-item.active .timeline-circle {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(211, 82, 94, 0.35);
}

.timeline-item.active .timeline-step-badge {
    background-color: #f59e0b; /* Golden circle badge */
}

.timeline-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--navy-text);
}

.timeline-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.timeline-item p.price-milestone {
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.25rem;
}

.timeline-active-badge {
    display: inline-block;
    background-color: #2563eb;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

/* ======== DOWNLOAD GUIDE SECTION ======== */
.download-guide-container {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.download-guide-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: stretch;
}

.download-guide-img {
    min-height: 400px;
}

.download-guide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-guide-content {
    padding: 4rem 3.5rem;
    background-color: #fffdf9; /* Warm light cream */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-guide-content .pill-badge {
    background-color: #f4ebf8;
    color: var(--secondary);
    align-self: flex-start;
}

.download-guide-content h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--navy-text);
    line-height: 1.35;
}

.download-guide-content h2 .download-text {
    color: var(--secondary);
}

.download-guide-content h2 .faq-text {
    color: var(--primary);
}

.download-guide-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.download-guide-list {
    margin-bottom: 2.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.download-guide-list li {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.download-guide-content .btn {
    align-self: flex-start;
    padding: 1rem 2.5rem;
}

.download-subtext {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.download-subtext i {
    color: var(--wa-green);
}

/* ======== CLIENTS SAY (TESTIMONIALS) ======== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

/* Video Card Thumbnail */
.video-testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    height: 380px;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.video-play-btn i {
    margin-left: 5px; /* offset play icon slightly */
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background-color: var(--primary);
    color: var(--white);
}

.video-badge-bottom {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-badge-stars {
    display: flex;
    flex-direction: column;
}

.stars {
    color: #fbbf24; /* Gold Star color */
    font-size: 0.9rem;
    gap: 0.2rem;
    display: flex;
    margin-bottom: 2px;
}

.video-badge-stars span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.video-badge-rating {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-text);
}

/* Quote testimonial card */
.quote-testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 3.5rem;
    color: var(--primary-light);
    line-height: 1;
}

.quote-text {
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.8;
    color: var(--navy-text);
    margin-bottom: 2.25rem;
    position: relative;
    z-index: 2;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.client-info-text h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy-text);
    margin-bottom: 2px;
}

.client-info-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.client-info-text p i {
    color: var(--primary);
}

/* ======== FAQ ACCORDION ======== */
.faq-max-width {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card-item {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-card-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(211, 82, 94, 0.2);
}

.faq-header-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-text);
}

.faq-plus-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.faq-body-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-body-content-inner {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    border-top: 1px solid transparent;
}

/* FAQ Active state */
.faq-card-item.open {
    border-color: rgba(211, 82, 94, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-card-item.open .faq-plus-icon {
    transform: rotate(45deg);
    background-color: var(--primary);
    color: var(--white);
}

.faq-card-item.open .faq-body-content {
    max-height: 300px; /* arbitrary height to allow animation */
}

/* ======== FOOTER ======== */
.footer {
    background-color: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
}

.footer-brand-col .logo-title {
    color: var(--white);
}

.footer-brand-col .logo-sub {
    color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 1.5rem 0;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.footer-links-list li {
    margin-bottom: 0.85rem;
}

.footer-links-list a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-list a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
}

.footer-contact-info i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-contact-info div strong {
    color: var(--white);
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links a:hover {
    color: var(--white);
}

/* ======== FLOATING WHATSAPP BUTTON ======== */
.whatsapp-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--wa-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(30, 189, 96, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: waPulse 2s infinite;
}

.whatsapp-floating:hover {
    transform: scale(1.08) rotate(10deg);
    box-shadow: 0 6px 20px rgba(30, 189, 96, 0.6);
    animation: none;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 189, 96, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(30, 189, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(30, 189, 96, 0);
    }
}

/* ======== FADE IN ANIMATION ======== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======== MEDIA QUERIES (RESPONSIVENESS) ======== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-bg-img {
        display: block;
        width: 100%;
        height: 100%;
        clip-path: none;
        opacity: 0.75;
    }
    .hero-bg-overlay {
        display: block;
        width: 100%;
        height: 100%;
        clip-path: none;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.75) 100%);
    }
    .hero {
        background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(244,235,248,0.3) 100%);
        padding: 6.5rem 0 4rem 0;
    }
    .stats-grid, .packages-grid, .offer-grid, .estimator-grid, .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .timeline-line {
        display: none; /* hide timeline connecting line */
    }
    .download-guide-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
        gap: 1.25rem;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        font-size: 1rem;
        font-weight: 600;
        color: var(--navy-text);
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--bg-light);
        width: 100%;
        opacity: 0;
    }
    .nav-links.active a {
        animation: mobileNavFadeSlide 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
    .nav-links.active a:nth-child(1) { animation-delay: 0.05s; }
    .nav-links.active a:nth-child(2) { animation-delay: 0.1s; }
    .nav-links.active a:nth-child(3) { animation-delay: 0.15s; }
    .nav-links.active a:nth-child(4) { animation-delay: 0.2s; }
    .nav-links.active a:nth-child(5) { animation-delay: 0.25s; }
    .nav-links.active a:nth-child(6) { animation-delay: 0.3s; }
    .nav-links.active a:nth-child(7) { animation-delay: 0.35s; }
    .nav-links.active a:nth-child(8) { animation-delay: 0.4s; }
    
    @keyframes mobileNavFadeSlide {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .navbar .btn {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .packages-main-heading {
        font-size: 1.8rem;
    }
    .stats-grid, .packages-grid, .offer-grid, .estimator-grid, .timeline-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .download-guide-content {
        padding: 2.5rem 1.75rem;
    }
    .quote-testimonial-card {
        padding: 2rem;
    }
    .faq-header-btn {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

/* ==========================================
   NEW PRICE CARDS SECTION
   ========================================== */
.packages-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.packages-sec-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.packages-sec-badge {
    align-self: flex-start;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.packages-main-heading {
    font-family: var(--font-header);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--navy-text);
    margin: 0;
    line-height: 1.2;
}

.packages-sec-desc {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 450px;
    line-height: 1.5;
}

.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background-color: white;
    overflow: hidden;
}

@media (max-width: 991px) {
    .price-cards-grid {
        grid-template-columns: 1fr;
        border: none;
        background-color: transparent;
        gap: 2rem;
        overflow: visible;
    }
}

.price-card {
    background-color: white;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .price-card:not(:last-child) {
        border-right: 1px solid var(--border-light);
    }
}

.price-card-header {
    margin-bottom: 2rem;
}

.price-card-tier {
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.price-card-amount {
    font-family: var(--font-header);
    font-weight: 800;
    color: var(--navy-text);
    display: flex;
    align-items: baseline;
}

.price-card-amount .currency {
    font-size: 1.6rem;
    margin-right: 2px;
    font-weight: 700;
}

.price-card-amount .amount {
    font-size: 2.5rem;
    line-height: 1;
}

.price-card-amount .per-sqft {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 4px;
}

.price-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.price-card-features li {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.price-card-features .check-icon {
    color: var(--secondary);
    margin-right: 8px;
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.price-card-footer {
    margin-top: auto;
}

.btn-price-outline {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--border-light);
    color: var(--navy-text);
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-price-outline:hover {
    background-color: var(--navy-text);
    color: white;
    border-color: var(--navy-text);
}

.price-card.featured {
    background-color: #12091b;
    color: white;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
    .price-card.featured {
        transform: scale(1.02);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(140, 79, 173, 0.3);
    }
}

.price-card.featured .price-card-tier {
    color: #c246b2;
    font-weight: 800;
}

.price-card.featured .price-card-amount {
    color: white;
}

.price-card.featured .price-card-amount .per-sqft {
    color: rgba(255, 255, 255, 0.5);
}

.price-card.featured .price-card-features li {
    color: rgba(255, 255, 255, 0.85);
}

.price-card.featured .price-card-features .check-icon {
    color: #c246b2;
}

.popular-badge {
    background-color: #c246b2;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    width: max-content;
    margin-bottom: 1rem;
}

.btn-price-solid {
    width: 100%;
    background-color: #c246b2;
    border: 1px solid #c246b2;
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(194, 70, 178, 0.3);
}

.btn-price-solid:hover {
    background-color: #a8369b;
    border-color: #a8369b;
    box-shadow: 0 6px 18px rgba(194, 70, 178, 0.4);
}

/* ==========================================
   CONTACT US SPLIT SECTION
   ========================================== */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info-col {
    display: flex;
    flex-direction: column;
}

.contact-subtitle-badge {
    font-family: var(--font-header);
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-left: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.contact-subtitle-badge::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2px;
    background-color: var(--secondary);
}

.contact-main-heading {
    font-family: var(--font-header);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-text);
    margin-bottom: 1rem;
}

.contact-intro-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-text);
    font-size: 1.1rem;
    background-color: white;
    flex-shrink: 0;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.detail-val {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--navy-text);
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

/* Contact Form Card Styling */
.contact-form-card {
    background-color: white;
    border: 1px solid var(--border-light);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

@media (max-width: 575px) {
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
}

.contact-form-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form-row.two-cols {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 575px) {
    .contact-form-row.two-cols {
        grid-template-columns: 1fr;
    }
}

.form-label-caps {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy-text);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.btn-contact-submit {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #8c4fad, #a855f7);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(140, 79, 173, 0.3);
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #7c3fa2, #9946e4);
    box-shadow: 0 6px 20px rgba(140, 79, 173, 0.4);
    transform: translateY(-1px);
}

/* ==========================================
   MISSION & VISION SECTION
   ========================================== */
.mission-section-title {
    font-family: var(--font-header);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.mission-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-light);
    max-width: 800px;
    margin: 1.5rem auto 0 auto;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1050px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.mission-card {
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mission-card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    flex-shrink: 0;
}

.mission-card-icon-wrapper.dark {
    background-color: #12091b;
    color: white;
}

.mission-card-icon-wrapper.light {
    background-color: #c246b2;
    color: white;
}

.mission-card-content {
    display: flex;
    flex-direction: column;
}

.mission-card-content h3 {
    font-family: var(--font-header);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-text);
    margin-bottom: 0.5rem;
}

.mission-card-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* ==========================================
   TEAM SECTION
   ========================================== */
.team-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.team-header-left {
    display: flex;
    flex-direction: column;
}

.team-subtitle-tag {
    font-family: var(--font-header);
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-left: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.team-subtitle-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2px;
    background-color: var(--secondary);
}

.team-main-heading {
    font-family: var(--font-header);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.team-header-right {
    font-family: var(--font-body);
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
}

.team-matrix-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.team-member-card {
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition);
    width: 100%;
}

/* Position cards for desktop (3 in first row, 2 centered in second row) */
.team-member-card:nth-child(1) { grid-column: span 2; }
.team-member-card:nth-child(2) { grid-column: span 2; }
.team-member-card:nth-child(3) { grid-column: span 2; }
.team-member-card:nth-child(4) { grid-column: 2 / span 2; }
.team-member-card:nth-child(5) { grid-column: 4 / span 2; }

/* Responsive layout for tablets and medium screens (2-2-1 layout) */
@media (max-width: 767px) {
    .team-matrix-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 520px;
        gap: 1.5rem;
    }
    .team-member-card:nth-child(1) { grid-column: span 2; }
    .team-member-card:nth-child(2) { grid-column: span 2; }
    .team-member-card:nth-child(3) { grid-column: span 2; }
    .team-member-card:nth-child(4) { grid-column: span 2; }
    .team-member-card:nth-child(5) { grid-column: 2 / span 2; }
}

/* Responsive layout for mobile (1 card per row) */
@media (max-width: 479px) {
    .team-matrix-grid {
        grid-template-columns: 1fr;
        max-width: 290px;
        gap: 1.25rem;
    }
    .team-member-card {
        grid-column: auto !important;
    }
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-member-img-wrap {
    width: 160px;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    background-color: #f8f9fa;
}

.team-member-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-img-wrap img.img-manoj {
    object-position: center top;
}

.team-member-img-wrap img.img-heena {
    object-position: center top;
    transform: scale(1.35);
    transform-origin: 50% 0%;
}

.team-member-card h3 {
    font-family: var(--font-header);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-text);
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Team Group Photo Section */
.team-group-photo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 4rem;
}

.team-group-title {
    font-family: var(--font-header);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.team-group-img-box {
    max-width: 900px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-group-img-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   SUPPORT SYSTEM SECTION
   ========================================== */
.support-system-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .support-system-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.support-card {
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.support-card-img-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.support-card-badge {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.support-card h3 {
    font-family: var(--font-header);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-text);
    margin-bottom: 0.75rem;
}

.support-card-address {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.map-link-btn {
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--navy-text);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid var(--navy-text);
    width: max-content;
    padding-bottom: 4px;
    transition: var(--transition);
}

.map-link-btn:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

/* ==========================================
   FAQ GRID AND ACCORDION STYLES
   ========================================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(140, 79, 173, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-text);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p, .faq-answer ul {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
}

.faq-answer ul {
    padding-left: 3.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-item.open {
    border-color: rgba(140, 79, 173, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background-color: var(--primary);
    color: var(--white);
}

/* ==========================================
   GOOGLE REVIEWS GRID AND CARD STYLES
   ========================================== */
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 991px) {
    .google-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.google-review-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(194, 70, 178, 0.2);
}

.google-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
}

.google-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-header);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.google-review-client {
    margin-left: 1rem;
    flex-grow: 1;
}

.google-review-client h3 {
    font-family: var(--font-header);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-text);
    margin-bottom: 0.25rem;
}

.google-review-client span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
}

.google-review-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.g-quote {
    font-size: 1.75rem;
    color: rgba(194, 70, 178, 0.15);
    line-height: 1;
}

.g-logo {
    font-size: 1.15rem;
    color: #4285F4;
    line-height: 1;
}

.google-review-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.google-review-rating .stars {
    color: #fbc02d;
    display: flex;
    gap: 4px;
    font-size: 0.95rem;
}

.review-time {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 0.75rem;
}

.google-review-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.read-more-link {
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-top: auto;
}

.read-more-link:hover {
    color: #a8369b;
    text-decoration: underline;
}

/* ==========================================
   ABOUT US SECTION STYLES
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .about-grid {
        gap: 3rem;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-paragraph {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-paragraph strong {
    color: var(--navy-text);
    font-weight: 700;
}

.about-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-stat-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(194, 70, 178, 0.2);
}

.about-stat-number {
    font-family: var(--font-header);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--secondary), #d3525e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-text);
}

.about-do-card {
    background-color: #fafafa;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.about-do-card h3 {
    font-family: var(--font-header);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-text);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-do-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: var(--radius-xs);
}

.about-do-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 2rem;
}

@media (max-width: 768px) {
    .about-do-list {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

.about-do-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-do-icon {
    color: var(--secondary);
    font-size: 1.05rem;
    margin-top: 2px;
}

.about-do-list li span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.4;
}

.about-do-subtext {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid var(--border-light);
    padding-top: 1.25rem;
    margin: 0;
}

/* ==========================================
   OUR SERVICES SECTION STYLES
   ========================================== */
.services-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.services-header-left {
    display: flex;
    flex-direction: column;
}

.services-header-right {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: right;
    max-width: 420px;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(194, 70, 178, 0.2);
}

.service-bg-num {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 6rem;
    font-weight: 800;
    font-family: var(--font-header);
    color: rgba(194, 70, 178, 0.04);
    z-index: 1;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.service-card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.service-badge {
    background-color: var(--secondary);
    color: var(--white);
    font-family: var(--font-header);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-xs);
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-header);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--navy-text);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.service-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.service-list li i {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.service-list li span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

.btn-outline-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--border-medium);
    padding: 12px 28px;
    background: none;
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--navy-text);
    text-decoration: none;
    border-radius: var(--radius-xs);
    transition: var(--transition);
    letter-spacing: 0.5px;
    width: max-content;
    position: relative;
    z-index: 2;
}

.btn-outline-quote:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background-color: rgba(194, 70, 178, 0.02);
}

@media (max-width: 991px) {
    .services-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .services-header-right {
        text-align: left;
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 3rem 2rem;
    }
}

/* ==========================================
   WHY CHOOSE US IN MUMBAI SECTION STYLES
   ========================================== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-choose-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(194, 70, 178, 0.2);
}

.why-choose-img-box {
    position: relative;
    width: 100%;
    height: 180px;
    background-color: #fafafa;
}

.why-choose-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-img-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(140, 79, 173, 0.12); /* Subtle purple overlay matching the renders */
    pointer-events: none;
}

.why-choose-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 50px;
    height: 50px;
    background-color: #1d1b24; /* Dark circular background matching screenshot */
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 3;
    color: var(--white);
    font-size: 1.15rem;
}

.why-choose-body {
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-choose-body h3 {
    font-family: var(--font-header);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-text);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.why-choose-body p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1199px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 650px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.reveal.fade-up {
    transform: translateY(40px);
}

.reveal.fade-left {
    transform: translateX(40px);
}

.reveal.fade-right {
    transform: translateX(-40px);
}

.reveal.scale-up {
    transform: scale(0.92);
}

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger delay classes */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ======== ADVANCED ANIMATIONS ======== */

/* 1. Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* 2. Shimmer Sweep Effect on Hover for Cards */
.price-card, .service-card, .why-choose-card, .google-review-card {
    position: relative;
    overflow: hidden;
}

.price-card::after, .service-card::after, .why-choose-card::after, .google-review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.price-card:hover::after, .service-card:hover::after, .why-choose-card:hover::after, .google-review-card:hover::after {
    left: 150%;
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 3. Hero Entrance Animations (On Page Load) */
.hero-content h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}

.hero-content .hero-description {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero-form-card {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeSlideLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ======== ESTIMATOR MODAL overlay and container ======== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.65); /* navy-tinted dark translucent background */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    width: calc(100% - 2rem);
    max-width: 500px;
    margin: 1rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.modal-container::-webkit-scrollbar {
    display: none;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* Adjustments for card when placed inside the modal */
.modal-body-content .hero-form-card {
    box-shadow: none !important;
    border: none !important;
    padding: 2.5rem 2rem !important;
    margin: 0 !important;
    width: 100% !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
}

@media (max-width: 480px) {
    .modal-close-btn {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 1.6rem;
    }
    .modal-body-content .hero-form-card {
        padding: 1.5rem 1rem !important;
    }
    .form-input {
        min-width: 0 !important;
    }
    .phone-field-wrapper {
        grid-template-columns: 75px 1fr !important;
        gap: 0.35rem !important;
    }
    .phone-prefix {
        font-size: 0.8rem !important;
    }
    .step-indicator {
        margin-bottom: 1.5rem !important;
    }
    .step-dot {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
    }
    .hero-form-card h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1.25rem !important;
    }
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1199px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

.catalog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.catalog-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.catalog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-img-box img {
    transform: scale(1.06);
}

.catalog-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(11, 15, 25, 0.75);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

.catalog-overlay {
    position: absolute;
    inset: 0;
    background: rgba(140, 79, 173, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.catalog-card:hover .catalog-overlay {
    opacity: 1;
}

.catalog-overlay .btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.82rem;
}

.catalog-info {
    padding: 1.25rem;
}

.catalog-info h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-text);
    margin-bottom: 0.25rem;
}

.catalog-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ======== PROCESS VIDEO SECTION ======== */
.process-video-wrapper {
    margin-top: 4.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.process-video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
    outline: 1px solid var(--border-light);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.process-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.process-video-card video,
.process-video-card iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-video-info {
    margin-top: 2rem;
}

.process-video-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy-text);
    margin-bottom: 0.5rem;
}

.process-video-info p {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ======== LIGHTBOX MODAL STYLES ======== */
.lightbox-container {
    max-width: 650px !important;
    padding: 1rem !important;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.lightbox-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 82vh;
    display: block;
    object-fit: contain;
}

/* Catalog Overlay Flex Grid */
.catalog-overlay-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
}

.catalog-overlay-content .btn-sm {
    width: 130px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    padding: 8px 14px;
}

.catalog-overlay-content .btn-enquire {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    border-color: transparent !important;
    color: var(--white) !important;
}

.catalog-overlay-content .btn-enquire:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #0e7568 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

/* ======================================================
   RESOURCE & DOWNLOADS CENTER — Custom Styles
   ====================================================== */

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.resource-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(194, 70, 178, 0.25);
}

.resource-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.resource-card:nth-child(1) .resource-icon-wrapper { background-color: #f0eaf7; color: var(--secondary); }
.resource-card:nth-child(2) .resource-icon-wrapper { background-color: #e6f6ee; color: #128c7e; }
.resource-card:nth-child(3) .resource-icon-wrapper { background-color: #fef2f2; color: #ef4444; }
.resource-card:nth-child(4) .resource-icon-wrapper { background-color: #eff6ff; color: #3b82f6; }
.resource-card:nth-child(5) .resource-icon-wrapper { background-color: #fffbeb; color: #f59e0b; }
.resource-card:nth-child(6) .resource-icon-wrapper { background-color: #fdf2f8; color: #ec4899; }

.resource-title {
    font-family: var(--font-header);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy-text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.resource-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.resource-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 1.25rem;
    margin-top: auto;
    gap: 10px;
}

.resource-size {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.resource-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-header);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.resource-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(194, 70, 178, 0.2);
}

@media (max-width: 991px) {
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 650px) {
    .resource-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}



