/* ==========================================================================
   SILUX CONSTRUCTION - PALETTE CONCEPT 1: TEAL, TURQUOISE & CHAMPAGNE GOLD
   WCAG 2.1 AA Compliant Architectural Luxury Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Electric Lime / Chartreuse Primary Brand Accent (Spaciaz Palette) */
    --teal-primary: #E4F464;        /* Signature Electric Chartreuse / Lime Accent */
    --teal-dark: #D4E64A;           /* Deep Gold-Lime */
    --teal-darkest: #0A0D0C;        /* Deep Obsidian Charcoal */
    --teal-light: #EBF778;          /* Luminous Acid Lime */
    --teal-bright: #E4F464;         /* Pure Architectural Highlight */
    --teal-glow: rgba(228, 244, 100, 0.35);
    --teal-surface: #F4FBE4;        /* Soft Lime Tint */
    
    /* Warm Accents (Mapped to Cohesive Modern Palette) */
    --gold-primary: #E4F464;        /* Signature Lime */
    --gold-hover: #D4E64A;          /* Deep Lime */
    --gold-bright: #EBF778;         /* Bright Lime */
    --gold-glow: rgba(228, 244, 100, 0.35);
    
    /* Neutral Surfaces & Backgrounds (Pure White & Crisp Light Architecture) */
    --bg-main: #FFFFFF;             /* Pure Crisp White Background */
    --bg-surface: #F7F7F4;          /* Warm Minimalist Alabaster Band */
    --bg-alt: #EFEFE9;              /* Deepened Architectural Band */
    --bg-card: #FFFFFF;             /* Pure White Architectural Card */
    --bg-dark-card: #0A0D0C;        /* Deep Matte Obsidian Charcoal Card */
    --bg-header: rgba(255, 255, 255, 0.96);
    
    /* High-Contrast Bold Black Typography */
    --text-heading: #0A0D0C;        /* Pure Solid Deep Black */
    --text-body: #222222;           /* Dark Crisp Body Text */
    --text-muted: #555555;          /* Neutral Dark Gray */
    
    /* Borders & Accents */
    --border-subtle: #E5E5DE;        /* Clean Minimalist Grid Border */
    --border-teal: rgba(228, 244, 100, 0.5);
    --border-turquoise: rgba(228, 244, 100, 0.7);
    --border-gold: rgba(228, 244, 100, 0.6);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */
    
    /* Layout */
    --container-max: 1320px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Glassmorphism & Soft Architectural Shadows */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(230, 230, 224, 0.9);
    --glass-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
    --glass-blur: blur(20px);
    
    --glass-dark-bg: rgba(10, 13, 12, 0.96);
    --glass-dark-border: rgba(228, 244, 100, 0.35);
    --glass-dark-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 25px rgba(228, 244, 100, 0.15);
    --glass-dark-blur: blur(24px);
    
    /* Shadows & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 45px -10px rgba(0, 0, 0, 0.1);
    --shadow-teal: 0 12px 30px -5px rgba(228, 244, 100, 0.35);
    --shadow-gold: 0 12px 30px -5px rgba(228, 244, 100, 0.35);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.7;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

button, input, select, textarea {
    font-family: var(--font-body);
    font-size: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

button, .btn, a, input[type="submit"] {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-heading);
    letter-spacing: 0.01em;
}

.text-gold,
.text-teal,
.text-turquoise,
.text-gradient {
    color: #0A0D0C !important;
    -webkit-text-fill-color: #0A0D0C !important;
    background: none !important;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--space-2xl) 0;
    position: relative;
    background: var(--bg-main);
}

.section-alt {
    padding: var(--space-2xl) 0;
    position: relative;
    background: var(--bg-surface);
    border-y: 1px solid #E5E5DE;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto var(--space-xl);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 0.75rem;
    font-weight: 400;
}

/* Luxury Architectural Section Eyebrow (No Generic AI Pills) */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem 1rem;
    background: #F4FBE4;
    border-left: 3px solid #111615;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0 6px 6px 0;
    color: #161C1B;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.badge-tag svg, .badge-tag i {
    color: #111615;
    font-size: 0.85rem;
}

/* Human-Crafted Architectural Studio Buttons (No AI Yellow Gradients) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 6px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    text-shadow: none !important;
}

.btn-primary {
    background: #E4F464;
    color: #111615;
    border: 1px solid #D4E64A;
    font-weight: 700;
    box-shadow: none;
    text-shadow: none !important;
}

.btn-primary:hover {
    background: #111615;
    color: #E4F464;
    border-color: #111615;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-gold, .btn-accent {
    background: #161C1B;
    color: #FFFFFF;
    border: 1px solid rgba(228, 244, 100, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-gold:hover, .btn-accent:hover {
    background: #E4F464;
    color: #111615;
    border-color: #E4F464;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(228, 244, 100, 0.35);
}

.btn-outline {
    background: transparent;
    color: #111615;
    border: 1.5px solid #111615;
    box-shadow: none;
    font-weight: 600;
}

.btn-outline:hover {
    background: #111615;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Symmetrical Inner Page Hero Alignment */
.page-hero {
    padding-top: 155px;
    padding-bottom: 75px;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
    text-align: center;
    width: 100%;
}

.page-hero-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-heading);
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    width: 100%;
}

.page-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 780px;
    margin: 0 auto 2.25rem;
    text-align: center;
}

.page-hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.text-cyan-glow {
    color: #2DD4BF;
    text-shadow: 0 0 20px rgba(45, 212, 191, 0.6), 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION HEADER (SINGLE-LINE PERFECT ALIGNMENT & FULL-ROW HIGHLIGHT)
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(20, 184, 166, 0.18);
    display: flex;
    align-items: center;
    transition: all var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 10px 25px rgba(15, 118, 110, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.brand-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--teal-light), var(--teal-primary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.25rem;
    box-shadow: 0 4px 14px var(--teal-glow);
    flex-shrink: 0;
}

.brand-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.05;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--teal-darkest);
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #0D7A72;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.mobile-drawer-footer {
    display: none !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    transition: color var(--transition-fast);
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    line-height: 1;
}

.nav-link:hover, .nav-link.active {
    color: #111615;
    font-weight: 700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #E4F464;
    border-radius: 3px 3px 0 0;
    transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu Container */
.nav-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform var(--transition-fast);
}

.nav-dropdown-wrapper:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    width: 240px;
    background: #FFFFFF;
    border: 1px solid #DFDFD5;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 45px -5px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition-fast);
}

.nav-dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    margin: 3px 0;
    height: auto;
}

/* Full Row Highlight for Branch Dropdown */
.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 1.15rem;
    font-size: 0.875rem;
    color: var(--text-heading);
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.dropdown-item .item-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-item .item-icon {
    font-size: 1rem;
    color: #0D7A72;
    transition: transform var(--transition-fast);
}

.dropdown-item .item-arrow {
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
    color: #0D7A72;
}

/* Highlight Full Row on Hover and Active Selection */
.dropdown-item:hover,
.dropdown-item.active {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.16) 0%, rgba(20, 184, 166, 0.06) 100%);
    color: var(--teal-darkest);
    font-weight: 700;
    box-shadow: inset 4px 0 0 var(--teal-primary);
    transform: translateX(3px);
}

.dropdown-item:hover .item-icon,
.dropdown-item.active .item-icon {
    transform: scale(1.15);
    color: #0D7A72;
}

.dropdown-item:hover .item-arrow,
.dropdown-item.active .item-arrow {
    opacity: 1;
    transform: translateX(0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.hamburger-btn span {
    width: 100%;
    height: 2px;
    background: var(--text-heading);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 70px;
    overflow: hidden;
    background: var(--bg-main);
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide-item.active {
    opacity: 1;
}

.hero-slide-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 250, 0.88) 50%, #FFFFFF 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-heading);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2.25rem;
    max-width: 680px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(20, 184, 166, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: #0D7A72;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   6. TRUST STRIP
   -------------------------------------------------------------------------- */
.trust-strip {
    background: var(--bg-surface);
    border-y: 1px solid rgba(20, 184, 166, 0.18);
    padding: 2.25rem 0;
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: #FFFFFF;
    border: 1px solid var(--border-turquoise);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D7A72;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.trust-text h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-heading);
}

.trust-text p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.about-images-wrapper {
    position: relative;
}

.about-img-primary {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-hover);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid #FFFFFF;
    box-shadow: var(--shadow-teal);
}

.about-badge-exp {
    position: absolute;
    top: 30px;
    left: -20px;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
    color: #FFFFFF;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-teal);
    text-align: center;
}

.about-badge-exp .exp-years {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-exp .exp-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bullet-icon {
    color: #0D7A72;
    font-size: 1.15rem;
    margin-top: 0.15rem;
}

/* --------------------------------------------------------------------------
   8. CALCULATOR TOOL (HIGH CONTRAST OCEAN TEAL OUTPUT BOX)
   -------------------------------------------------------------------------- */
.calculator-card {
    background: #FFFFFF;
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--teal-bright), var(--teal-primary), var(--gold-bright));
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.calc-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-heading);
}

.calc-range-val {
    color: #0D7A72;
    font-size: 1.125rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.calc-range-slider {
    width: 100%;
    height: 8px;
    background: var(--border-subtle);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
}

.calc-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--teal-primary);
    cursor: pointer;
    box-shadow: 0 0 15px var(--teal-glow);
    transition: transform var(--transition-fast);
}

.calc-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.75rem;
}

.calc-btn-option {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    color: var(--text-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-fast);
}

.calc-btn-option:hover, .calc-btn-option.active {
    border-color: #0D7A72;
    background: rgba(20, 184, 166, 0.15);
    color: var(--teal-darkest);
    font-weight: 700;
}

/* Deep Ocean Teal Glassmorphic Output Box */
.calc-output-box {
    background: var(--glass-dark-bg);
    backdrop-filter: var(--glass-dark-blur);
    -webkit-backdrop-filter: var(--glass-dark-blur);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #FFFFFF;
    box-shadow: var(--glass-dark-shadow);
}

.calc-output-box .badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem 1rem;
    background: #F4FBE4;
    border-left: 3px solid #111615;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0 6px 6px 0;
    color: #161C1B;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.calc-price-display {
    text-align: center;
    margin: 1.5rem 0;
}

.calc-price-amount {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--teal-bright);
}

.calc-details-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.calc-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.calc-detail-row span:last-child {
    color: #FFFFFF;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   9. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.25rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--glass-shadow);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #0D7A72;
    box-shadow: var(--shadow-hover);
}

.service-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-content {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(20, 184, 166, 0.12);
    color: #0D7A72;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-heading);
}

.service-description {
    color: var(--text-body);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: #0D7A72;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: 0.85rem;
    color: #0D7A72;
}

/* --------------------------------------------------------------------------
   10. PORTFOLIO SHOWCASE
   -------------------------------------------------------------------------- */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.35rem;
    border-radius: 9999px;
    border: 1px solid #E5E5DE;
    background: #FFFFFF;
    color: #333333;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
    background: #0A0D0C;
    color: #FFFFFF;
    border-color: #0A0D0C;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 310px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E5DE;
    background: #F8F8F5;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(10,13,12,0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #FFFFFF;
}

.portfolio-cat {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: #E4F464;
    color: #0A0D0C;
    font-weight: 700;
    font-size: 0.72rem;
    border-radius: 9999px;
    margin-bottom: 0.4rem;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-overlay .portfolio-title {
    color: #FFFFFF;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    line-height: 1.25;
}

.portfolio-overlay .portfolio-location {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.825rem;
}

.portfolio-item:hover img {
    transform: scale(1.06);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
    opacity: 1;
}

.portfolio-cat {
    color: var(--teal-bright);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.portfolio-title {
    font-size: 1.35rem;
    margin: 0.25rem 0 0.5rem;
}

.portfolio-location {
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   11. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: #FFFFFF;
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    font-size: 3rem;
    color: var(--teal-glow);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 2rem;
    color: var(--text-heading);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--teal-light);
    object-fit: cover;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stars {
    color: #F59E0B;
    margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   12. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-grid {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.faq-item.active {
    border-color: #0D7A72;
}

.faq-question {
    width: 100%;
    padding: 1.35rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body); /* Modern, clean Poppins font */
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--text-heading);
    letter-spacing: 0.01em;
    line-height: 1.45;
    text-transform: none;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: #0D7A72;
}

.faq-icon {
    color: #0D7A72;
    transition: transform var(--transition-fast);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.4rem;
    font-family: var(--font-body); /* Modern Poppins font */
    color: var(--text-body);
    display: none;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.faq-item.active .faq-answer {
    display: block;
}

/* --------------------------------------------------------------------------
   13. CONTACT FORM
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info-box {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    box-shadow: var(--glass-shadow);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: #FFFFFF;
    border: 1px solid var(--border-turquoise);
    color: #0D7A72;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.contact-detail-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--text-heading);
}

.contact-detail-text p {
    color: var(--text-body);
    font-size: 0.9375rem;
}

.contact-form-box {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--glass-shadow);
}

.form-title {
    font-size: clamp(1.15rem, 3.5vw, 1.5rem);
    color: var(--text-heading);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-heading);
}

.form-control {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    color: var(--text-heading);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    border-color: #0D7A72;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px var(--teal-glow);
}

select.form-control option {
    background: #FFFFFF;
    color: var(--text-heading);
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE COMPARISON TABLE
   -------------------------------------------------------------------------- */
.table-responsive-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    margin: 1.5rem 0;
}

.spec-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.spec-table th {
    background: var(--teal-primary);
    color: #FFFFFF;
    padding: 1rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-align: left;
    white-space: nowrap;
}

.spec-table th.featured-col {
    background: #161C1B;
}

.spec-table td {
    padding: 0.85rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-subtle);
}

.spec-table td.featured-col {
    background: rgba(20, 184, 166, 0.08);
    font-weight: 600;
}

.table-swipe-hint {
    display: none;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background: #111615;
    color: #E2E8F0;
    border-top: 1px solid rgba(20, 184, 166, 0.3);
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer .brand-name {
    color: #FFFFFF;
}

.footer-brand p {
    color: #94A3B8;
    margin: 1.25rem 0 1.5rem;
    font-size: 0.9375rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--teal-light);
    color: var(--teal-darkest);
    border-color: #0D7A72;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    color: #94A3B8;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--teal-bright);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #64748B;
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   15. MODAL POPUP & TOAST
   -------------------------------------------------------------------------- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 47, 46, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: #FFFFFF;
    border: 1px solid var(--border-turquoise);
    border-radius: var(--radius-lg);
    max-width: 650px;
    width: 100%;
    padding: 2.75rem;
    position: relative;
    box-shadow: var(--shadow-hover);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.modal-close-btn:hover {
    color: #0D7A72;
}

.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #FFFFFF;
    border: 1px solid var(--teal-primary);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(4, 47, 46, 0.18);
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-smooth);
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE BREAKPOINTS (DESKTOP / TABLET)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .about-grid, .calc-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.estimator-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 968px) {
    .estimator-cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --------------------------------------------------------------------------
   17. EDITORIAL LUXURY ARCHITECTURAL HERO & SHOWCASE SECTION
   -------------------------------------------------------------------------- */
.hero-editorial-wrapper {
    position: relative;
    padding: 1.25rem 1.5rem 1.5rem;
    max-width: 1360px;
    margin: 0 auto;
}

.hero-banner-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-color: #0A0D0C;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25);
}

.hero-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    transform: scale(1.02);
    transition: transform 8s ease-out;
}

.hero-banner-card:hover .hero-banner-bg {
    transform: scale(1.05);
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(10, 13, 12, 0.94) 0%, 
        rgba(10, 13, 12, 0.82) 42%, 
        rgba(10, 13, 12, 0.35) 75%, 
        rgba(10, 13, 12, 0.2) 100%
    );
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    padding: 4.5rem 4rem;
    max-width: 780px;
    color: #FFFFFF;
}

.hero-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.925rem;
    font-weight: 500;
    color: #E4F464;
    letter-spacing: 0.04em;
    margin-bottom: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-eyebrow::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E4F464;
    box-shadow: 0 0 10px #E4F464;
}

.hero-editorial-title {
    font-family: 'Playfair Display', 'Cinzel', Georgia, serif;
    font-size: clamp(2.3rem, 4.5vw, 3.85rem);
    font-weight: 600;
    line-height: 1.15;
    color: #FFFFFF;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.italic-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #E4F464;
}

.hero-lead-desc {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.75;
    color: #E2E8F0;
    font-weight: 300;
    margin-bottom: 2.25rem;
    max-width: 620px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}

.btn-hero-calc {
    background: #E4F464 !important;
    color: #0A0D0C !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding: 0.95rem 2.25rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(228, 244, 100, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.925rem;
    text-decoration: none;
}

.btn-hero-calc:hover {
    background: #D4E64A !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(228, 244, 100, 0.45);
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 0.95rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.925rem;
    text-decoration: none;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #FFFFFF !important;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #CBD5E1;
}

.hero-trust-item i,
.hero-trust-item svg {
    color: #E4F464;
}

/* --------------------------------------------------------------------------
   18. EDITORIAL STATEMENT: IF YOU CAN DREAM IT, WE CAN BUILD IT
   -------------------------------------------------------------------------- */
.editorial-statement-section {
    padding: 5rem 1.5rem 4.5rem;
    max-width: 1360px;
    margin: 0 auto;
    background: #FFFFFF;
}

.editorial-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    align-items: center;
    gap: 2.5rem;
}

/* Left & Right Flanking Architectural Cards */
.editorial-side-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.editorial-side-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

.editorial-card-left {
    border-radius: 36px 36px 36px 8px;
    height: 420px;
}

.editorial-card-right {
    border-radius: 36px 36px 8px 36px;
    height: 420px;
}

.editorial-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-side-card:hover .editorial-card-img {
    transform: scale(1.06);
}

.editorial-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(10, 13, 12, 0.9) 0%, transparent 100%);
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 500;
}

.editorial-card-caption span {
    display: block;
    color: #E4F464;
    font-size: 0.725rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

/* Center Statement Column */
.editorial-center-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1.5rem;
}

.editorial-sparkle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0A0D0C;
    margin-bottom: 1.25rem;
}

.editorial-quote-heading {
    font-family: 'Playfair Display', 'Cinzel', Georgia, serif;
    font-size: clamp(2.1rem, 3.2vw, 2.9rem);
    font-weight: 500;
    line-height: 1.22;
    color: #0A0D0C;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.italic-serif-dark {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #0A0D0C;
}

.editorial-quote-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.85;
    color: #4A5568;
    margin-bottom: 2.25rem;
    max-width: 500px;
}

.btn-black-pill {
    background: #0A0D0C !important;
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.85rem 2.25rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #0A0D0C;
    text-decoration: none;
}

.btn-black-pill:hover {
    background: #222222 !important;
    color: #E4F464 !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.35);
}

.btn-black-pill i,
.btn-black-pill svg {
    transition: transform 0.25s ease;
}

.btn-black-pill:hover i,
.btn-black-pill:hover svg {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   18.5 INCLUSIONS SHOWCASE CARD: OUR TIMELESS INCLUSIONS
   -------------------------------------------------------------------------- */
.inclusions-banner-wrapper {
    position: relative;
    padding: 0 1.5rem 5rem;
    max-width: 1360px;
    margin: 0 auto;
}

.inclusions-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background-color: #0A0D0C;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25);
}

.inclusions-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.inclusions-card:hover .inclusions-bg-img {
    transform: scale(1.04);
}

.inclusions-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(10, 13, 12, 0.95) 0%, 
        rgba(10, 13, 12, 0.85) 45%, 
        rgba(10, 13, 12, 0.45) 80%, 
        rgba(10, 13, 12, 0.3) 100%
    );
    z-index: 1;
}

.inclusions-content {
    position: relative;
    z-index: 2;
    padding: 4.5rem 4rem;
    max-width: 720px;
    color: #FFFFFF;
}

.inclusions-title {
    font-family: 'Playfair Display', 'Cinzel', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.inclusions-desc {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.8;
    color: #CBD5E1;
    font-weight: 300;
    margin-bottom: 2rem;
}

.inclusions-pills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 1.25rem;
    margin-bottom: 2.5rem;
}

.inclusion-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #F1F5F9;
    font-weight: 500;
}

.inclusion-pill i {
    color: #E4F464;
    font-size: 0.8rem;
}

.btn-white-pill {
    background: #FFFFFF !important;
    color: #0A0D0C !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.9rem 2.25rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-white-pill:hover {
    background: #E4F464 !important;
    color: #0A0D0C !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(228, 244, 100, 0.35);
}

/* --------------------------------------------------------------------------
   19. STICKY FLOATING CONTACT ACTION BUTTONS (WHATSAPP & PHONE CALL)
   -------------------------------------------------------------------------- */
.floating-contact-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9990;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.float-btn-phone {
    background: linear-gradient(135deg, #E4F464 0%, #14B8A6 100%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.5);
}

.float-btn-whatsapp {
    background: #25D366;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: waPulse 2.5s infinite ease-in-out;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); transform: scale(1); }
    50% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7); transform: scale(1.06); }
}

.float-btn svg, .float-btn i {
    font-size: 22px;
    width: 22px;
    height: 22px;
    color: #FFFFFF;
}

/* Tooltip on Desktop */
.float-btn .float-tooltip {
    position: absolute;
    right: 64px;
    background: rgba(4, 47, 46, 0.95);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(45, 212, 191, 0.3);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* --------------------------------------------------------------------------
   20. COMPREHENSIVE MOBILE UI/UX OPTIMIZATION (< 768px & < 480px)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   20. COMPREHENSIVE MOBILE UI/UX OPTIMIZATION (< 768px & < 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    html, body {
        overflow-x: clip !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    [data-aos] {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }

    .container {
        padding: 0 1.15rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Sticky Floating Action Buttons on Mobile */
    .floating-contact-bar {
        bottom: 20px;
        right: 18px;
        gap: 10px;
        z-index: 997;
    }
    
    .float-btn {
        width: 46px;
        height: 46px;
    }
    
    .float-btn svg, .float-btn i {
        font-size: 19px;
        width: 19px;
        height: 19px;
    }
    
    .float-btn .float-tooltip {
        display: none !important;
    }

    /* Mobile Header & Ultra-Premium Sliding Navigation Drawer */
    .header {
        height: 66px;
        padding: 0;
    }

    .brand-logo-text .brand-name {
        font-size: 1.1rem;
    }

    .brand-logo-text .brand-tagline {
        font-size: 0.525rem;
        letter-spacing: 0.14em;
    }

    .header-actions .btn-primary {
        display: none; /* Hide in header to prevent overcrowding; prominent inside drawer */
    }

    /* Editorial Hero Mobile & Tablet Styling */
    .hero-editorial-wrapper {
        padding: 0.75rem 1rem 1.5rem;
    }
    
    .hero-banner-card {
        border-radius: 20px;
        min-height: 480px;
    }
    
    .hero-banner-overlay {
        background: linear-gradient(180deg, 
            rgba(10, 13, 12, 0.95) 0%, 
            rgba(10, 13, 12, 0.88) 55%, 
            rgba(10, 13, 12, 0.78) 100%
        );
    }
    
    .hero-banner-content {
        padding: 2.75rem 1.5rem;
    }
    
    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }
    
    .btn-hero-calc,
    .btn-hero-ghost {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .editorial-statement-section {
        padding: 3.5rem 1rem 3rem;
    }
    
    .editorial-layout-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .editorial-side-card {
        height: 280px;
        max-width: 100%;
    }
    
    .editorial-card-left {
        order: 2;
        border-radius: 24px;
    }
    
    .editorial-center-column {
        order: 1;
        padding: 0;
    }
    
    .editorial-card-right {
        order: 3;
        border-radius: 24px;
    }
    
    .inclusions-banner-wrapper {
        padding: 0 1rem 3.5rem;
    }
    
    .inclusions-card {
        border-radius: 20px;
        min-height: auto;
    }
    
    .inclusions-overlay {
        background: linear-gradient(180deg, 
            rgba(10, 13, 12, 0.96) 0%, 
            rgba(10, 13, 12, 0.92) 100%
        );
    }
    
    .inclusions-content {
        padding: 2.5rem 1.5rem;
    }
    
    .inclusions-pills-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* General Mobile Touch & Layout Refinements */
    .section {
        padding: var(--space-xl) 0;
        overflow-x: hidden;
    }

    .section-header h2 {
        font-size: 1.65rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.75rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-form-box {
        padding: 1.35rem 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 14px !important;
    }

    .contact-form-box h3 {
        font-size: clamp(1.15rem, 4.8vw, 1.4rem) !important;
        line-height: 1.3 !important;
    }

    .contact-info-box {
        padding: 1.35rem 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-info-box h2 {
        font-size: clamp(1.25rem, 5vw, 1.55rem) !important;
    }

    .contact-detail-item {
        padding: 0.85rem !important;
        gap: 0.85rem !important;
    }

    /* Form Grid Collapse to 1 Column on Mobile */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
        width: 100% !important;
    }

    .form-group {
        width: 100% !important;
        margin-bottom: 0.75rem !important;
    }

    .form-group.full-width {
        grid-column: span 1 !important;
    }

    .form-control {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important; /* Prevents auto-zoom on iOS */
        min-height: 46px;
        padding: 0.75rem 0.9rem !important;
    }

    /* Cost Calculator Mobile Grid */
    .calculator-card {
        padding: 1.35rem 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .calc-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
    }

    .calc-options-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }

    .calc-output-box {
        padding: 1.35rem 1rem !important;
    }

    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .faq-question {
        padding: 1.1rem 1.25rem !important;
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
    }

    .faq-answer {
        padding: 0 1.25rem 1.15rem !important;
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
    }

    .table-swipe-hint {
        display: inline-flex !important;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.75rem;
        color: #0D7A72;
        font-weight: 600;
        margin-bottom: 0.75rem;
        background: rgba(20, 184, 166, 0.12);
        padding: 0.35rem 0.75rem;
        border-radius: 20px;
        border: 1px solid rgba(45, 212, 191, 0.3);
    }

    .table-responsive-wrapper {
        margin: 1rem 0 2rem !important;
        border-radius: var(--radius-sm) !important;
    }

    /* Estimator Banner Mobile */
    .estimator-cta-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Mobile Button & Card Containment */
    .btn {
        white-space: normal !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 0.8rem 1.25rem !important;
        font-size: 0.85rem !important;
        line-height: 1.35 !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
        display: inline-flex !important;
        justify-content: center !important;
    }

    div[style*="padding: 2.5rem"],
    div[style*="padding: 3rem"] {
        padding: 1.5rem 1rem !important;
    }
}

@media (max-width: 480px) {
    .header {
        height: 64px;
    }

    .story-step-card,
    .story-step-card.pos-left,
    .story-step-card.pos-right,
    .story-step-card.pos-center {
        max-width: 94% !important;
        width: 94% !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .story-step-card h2 {
        font-size: 1.15rem !important;
    }

    .badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem 1rem;
    background: #F4FBE4;
    border-left: 3px solid #111615;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0 6px 6px 0;
    color: #161C1B;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

    .btn {
        padding: 0.7rem 1rem !important;
        font-size: 0.8rem !important;
    }
}

/* ==========================================================================
   INTERACTIVE ARCHITECTURAL CHATBOT (CIRCULAR ROBOT ASSISTANT - LEFT SIDE)
   ========================================================================== */
.chatbot-toggle-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: auto;
    z-index: 998;
    background: linear-gradient(135deg, #E4F464 0%, #161C1B 100%);
    color: #FFFFFF;
    border: 2px solid #2DD4BF;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(2, 35, 34, 0.6), 0 0 15px rgba(45, 212, 191, 0.3);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.chatbot-toggle-btn:hover {
    background: #115E59;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.5);
}

.chatbot-unread-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    background: #2DD4BF;
    border-radius: 50%;
    box-shadow: 0 0 8px #2DD4BF;
    animation: pulseGlow 1.8s infinite;
}

.chatbot-window {
    position: fixed;
    bottom: 84px;
    left: 24px;
    right: auto;
    width: 340px;
    max-width: calc(100vw - 28px);
    height: 400px;
    max-height: calc(100vh - 110px);
    max-height: calc(100dvh - 110px);
    background: rgba(10, 13, 12, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(228, 244, 100, 0.35);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(228, 244, 100, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px) scale(0.96);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-window.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    padding: 0.75rem 1rem;
    background: #111615;
    border-bottom: 1px solid rgba(228, 244, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.chatbot-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #18201E;
    border: 1px solid #E4F464;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E4F464;
    position: relative;
}

.chatbot-avatar .online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 7px;
    height: 7px;
    background: #E4F464;
    border: 1.5px solid #0A0D0C;
    border-radius: 50%;
}

.chatbot-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.chatbot-status {
    font-size: 0.65rem;
    color: #E4F464;
}

.chatbot-close-btn {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0.2rem;
}

.chatbot-close-btn:hover {
    color: #E4F464;
}

.chatbot-body {
    flex: 1;
    padding: 0.95rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    scroll-behavior: smooth;
    background: #0A0D0C;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    max-width: 90%;
}

.chat-msg.bot-msg {
    align-self: flex-start;
}

.chat-msg.user-msg {
    align-self: flex-end;
}

.chat-msg.bot-msg .msg-bubble {
    background: #18201E;
    border: 1px solid rgba(228, 244, 100, 0.25);
    color: #FFFFFF;
    padding: 0.65rem 0.85rem;
    border-radius: 10px 10px 10px 2px;
    font-size: 0.8rem;
    line-height: 1.5;
}

.chat-msg.user-msg .msg-bubble {
    background: #E4F464;
    color: #0A0D0C;
    padding: 0.6rem 0.85rem;
    border-radius: 10px 10px 2px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
    border: 1px solid #E4F464;
}

.chat-options-container {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    margin-top: 0.2rem;
}

.chat-opt-btn {
    background: #121716;
    color: #FFFFFF;
    border: 1px solid rgba(228, 244, 100, 0.35);
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    line-height: 1.35;
}

.chat-opt-btn:hover {
    background: #E4F464;
    color: #0A0D0C;
    border-color: #E4F464;
    font-weight: 600;
    transform: translateX(3px);
}

.chat-summary-actions {
    margin-top: 0.35rem;
    width: 100%;
}

.chatbot-footer {
    padding: 0.6rem 1rem;
    background: #0A0D0C;
    border-top: 1px solid rgba(228, 244, 100, 0.15);
    display: flex;
    justify-content: center;
}

.chatbot-restart-btn {
    background: transparent;
    border: none;
    color: #E4F464;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s;
}

.chatbot-restart-btn:hover {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .chatbot-toggle-btn {
        bottom: 18px;
        left: 16px;
        right: auto;
        width: 42px;
        height: 42px;
    }
    .chatbot-toggle-btn .robot-face-svg {
        width: 20px;
        height: 20px;
    }
    .chatbot-window {
        bottom: 68px;
        left: 14px;
        right: auto;
        width: calc(100vw - 28px);
        height: 380px;
        max-height: calc(100vh - 80px);
        max-height: calc(100dvh - 80px);
    }
}



/* ==========================================================================
   OFFICIAL BRAND LOGO & HEADER COMPACT BUTTON STYLES
   ========================================================================== */
.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 6px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.85);
    transition: all var(--transition-fast);
    flex-shrink: 0;
    text-decoration: none;
}

.brand-logo:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 22px rgba(45, 212, 191, 0.4);
}

.brand-logo-img {
    height: 64px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
}

.footer .brand-logo {
    background: #FFFFFF;
    padding: 8px 16px;
    border-radius: 14px;
    display: inline-flex;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.footer-brand-logo-img {
    height: 75px;
    width: auto;
    max-width: 270px;
    object-fit: contain;
    display: block;
}

/* Header Cost Calculator Button - Sleek & Compact */
.header-actions .btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
    gap: 0.4rem !important;
    letter-spacing: 0.03em !important;
    white-space: nowrap !important;
    box-shadow: 0 3px 12px rgba(15, 118, 110, 0.25) !important;
}

.header-actions .btn svg {
    width: 14px !important;
    height: 14px !important;
}

@media (max-width: 768px) {
    .brand-logo {
        padding: 4px 8px !important;
        border-radius: 10px !important;
    }
    
    .brand-logo-img {
        height: 44px !important;
        max-width: 145px !important;
    }

    .footer .brand-logo {
        padding: 6px 12px !important;
        border-radius: 10px !important;
    }

    .footer-brand-logo-img {
        height: 48px !important;
        max-width: 160px !important;
    }

    .header-actions .btn {
        padding: 0.42rem 0.75rem !important;
        font-size: 0.72rem !important;
        border-radius: 6px !important;
        gap: 0.3rem !important;
    }

    .header-actions .btn svg {
        width: 13px !important;
        height: 13px !important;
    }
}


/* ==========================================================================
   SPACIAZ ARCHITECTURAL FLOATING PILL HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    transition: all var(--transition-smooth);
}

.header.scrolled {
    height: 72px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.brand-logo:hover {
    transform: scale(1.03);
}

.brand-logo-img {
    height: 64px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
}

/* Center Floating Pill Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.pill-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    background: #F4F4F0;
    border: 1px solid #E5E5DE;
    padding: 5px 8px;
    border-radius: 9999px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.pill-nav li {
    display: flex;
    align-items: center;
    height: auto;
}

.pill-nav .nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333333;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: all var(--transition-fast);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.pill-nav .nav-link:hover {
    color: #000000;
    background: rgba(0, 0, 0, 0.05);
}

.pill-nav .nav-link.active {
    background: #0A0D0C;
    color: #FFFFFF !important;
    font-weight: 700;
}

.pill-nav .nav-link::after {
    display: none !important;
}

/* Right Header Actions (Phone + Pill Lime CTA) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-call-box {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.825rem;
    font-weight: 500;
}

.header-call-box .call-label {
    color: #666666;
}

.header-call-box .call-number {
    color: #0A0D0C;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.header-call-box .call-number:hover {
    color: #111111;
}

/* Spaciaz Signature Lime Pill Button */
.btn-pill-lime {
    background: #E4F464 !important;
    color: #0A0D0C !important;
    border: 1px solid #C5D92A !important;
    font-weight: 700 !important;
    font-size: 0.825rem !important;
    padding: 0.55rem 0.65rem 0.55rem 1.15rem !important;
    border-radius: 9999px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
    box-shadow: 0 4px 15px rgba(228, 244, 100, 0.3) !important;
    transition: all var(--transition-fast) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.btn-pill-lime .btn-arrow-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0A0D0C;
    color: #E4F464;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: transform 0.2s, background 0.2s;
}

.btn-pill-lime:hover {
    background: #0A0D0C !important;
    color: #E4F464 !important;
    border-color: #0A0D0C !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-1px);
}

.btn-pill-lime:hover .btn-arrow-circle {
    background: #E4F464;
    color: #0A0D0C;
    transform: translateX(2px);
}


/* ==========================================================================
   3-ISLAND ARCHITECTURAL FLOATING HEADER (LOGO LEFT, NAV CENTER, WHATSAPP RIGHT)
   ========================================================================== */
.header-island-wrapper {
    position: fixed;
    top: 14px;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
    transition: all var(--transition-smooth);
}

.header-island-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    pointer-events: auto;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.header-island {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    border-radius: 9999px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    pointer-events: auto;
    transition: all var(--transition-smooth);
}

/* Left Island: Brand Logo */
.header-island-left {
    padding: 6px 18px;
    flex-shrink: 0;
}

.header-island-left .brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.header-island-left .brand-logo-img {
    height: 62px;
    width: auto;
    max-width: 230px;
    object-fit: contain;
    display: block;
}

/* Middle Island: Navigation */
.header-island-center {
    padding: 4px 8px;
    flex: 1;
    max-width: fit-content;
    margin: 0 auto;
}

.header-island-center .nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-island-center .nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #222222;
    padding: 0.5rem 0.85rem;
    border-radius: 9999px;
    transition: all var(--transition-fast);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
}

.header-island-center .nav-link:hover {
    color: #000000;
    background: #EFEFE9;
}

.header-island-center .nav-link.active {
    background: #0A0D0C;
    color: #FFFFFF !important;
    font-weight: 700;
}

.header-island-center .nav-link::after {
    display: none !important;
}

/* Right Island: WhatsApp Us Button */
.header-island-right {
    padding: 4px 6px 4px 6px;
    flex-shrink: 0;
    gap: 0.5rem;
}

.btn-whatsapp-island {
    background: #E4F464 !important;
    color: #0A0D0C !important;
    border: 1px solid #D4E64A !important;
    font-weight: 700 !important;
    font-size: 0.825rem !important;
    padding: 0.5rem 0.55rem 0.5rem 1.15rem !important;
    border-radius: 9999px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.55rem !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 15px rgba(228, 244, 100, 0.35) !important;
    transition: all var(--transition-fast) !important;
}

.btn-whatsapp-island .whatsapp-island-icon {
    font-size: 1.15rem;
    color: #128C7E;
}

.btn-whatsapp-island .whatsapp-arrow-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0A0D0C;
    color: #E4F464;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    transition: transform 0.2s, background 0.2s;
}

.btn-whatsapp-island:hover {
    background: #0A0D0C !important;
    color: #E4F464 !important;
    border-color: #0A0D0C !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-1px);
}

.btn-whatsapp-island:hover .whatsapp-island-icon {
    color: #25D366;
}

.btn-whatsapp-island:hover .whatsapp-arrow-circle {
    background: #E4F464;
    color: #0A0D0C;
    transform: translateX(2px);
}

/* Dropdown Menu in Center Island */
.header-island-center .nav-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.header-island-center .dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 200px;
    background: #FFFFFF;
    border: 1px solid #E5E5DE;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 0.4rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-fast);
    z-index: 1001;
}

.header-island-center .nav-dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-island-center .dropdown-item {
    padding: 0.65rem 0.9rem;
    font-size: 0.825rem;
    color: #222222;
    border-radius: 8px;
    transition: all 0.15s ease;
    display: block;
    text-decoration: none;
}

.header-island-center .dropdown-item:hover {
    background: #F4FBE4;
    color: #0A0D0C;
    font-weight: 600;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS FOR 3-ISLAND ARCHITECTURAL HEADER (<= 992px)
   ========================================================================== */
body.menu-open {
    overflow: hidden !important;
    touch-action: none;
}

@media (max-width: 992px) {
    .header-island-wrapper {
        top: 10px;
        left: 0;
        width: 100%;
        z-index: 10000;
        pointer-events: none;
    }

    .header-island-container {
        width: 100%;
        padding: 0 0.85rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        pointer-events: auto;
    }

    /* Left Island (Logo) */
    .header-island-left {
        padding: 5px 12px;
        z-index: 10010;
        pointer-events: auto;
    }

    .header-island-left .brand-logo-img {
        height: 38px;
        width: auto;
    }

    /* Right Island (WhatsApp + Hamburger) */
    .header-island-right {
        padding: 4px 8px;
        gap: 0.5rem;
        display: flex;
        align-items: center;
        z-index: 10010;
        pointer-events: auto;
    }

    .btn-whatsapp-island {
        padding: 0.45rem 0.8rem !important;
        font-size: 0.75rem !important;
        gap: 0.4rem !important;
    }

    .btn-whatsapp-island .whatsapp-arrow-circle {
        display: none !important;
    }

    /* Hamburger Toggle Button */
    .hamburger-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4px !important;
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        padding: 0 !important;
        background: #F4F4F0 !important;
        border: 1px solid #E5E5DE !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        z-index: 10020 !important;
        transition: all 0.2s ease !important;
        pointer-events: auto !important;
    }

    .hamburger-btn:hover {
        background: #EBEBE5 !important;
    }

    .hamburger-btn span {
        display: block !important;
        width: 18px !important;
        height: 2px !important;
        background: #0A0D0C !important;
        border-radius: 2px !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        transform-origin: center !important;
    }

    .hamburger-btn.active {
        background: #0A0D0C !important;
        border-color: #0A0D0C !important;
    }

    .hamburger-btn.active span {
        background: #FFFFFF !important;
    }

    .hamburger-btn.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg) !important;
    }

    .hamburger-btn.active span:nth-child(2) {
        opacity: 0 !important;
        transform: scaleX(0) !important;
    }

    .hamburger-btn.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg) !important;
    }

    /* Center Island Wrapper - Unbox on mobile so child drawer can span full screen */
    .header-island-center {
        display: contents !important;
    }

    /* Fullscreen Mobile Drawer Menu */
    .header-island-center .nav-menu,
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 72px 1.25rem 2.5rem !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.35s !important;
        z-index: 9999 !important;
    }

    .header-island-center .nav-menu.active,
    .nav-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .header-island-center .nav-links,
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.5rem !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .header-island-center .nav-links li,
    .nav-links li {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .header-island-center .nav-link,
    .nav-link {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #111615 !important;
        padding: 0.85rem 1.15rem !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        border-radius: 12px !important;
        background: #F6F6F2 !important;
        border: 1px solid #EBEBE5 !important;
        box-sizing: border-box !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }

    .header-island-center .nav-link:hover,
    .header-island-center .nav-link.active,
    .nav-link:hover,
    .nav-link.active {
        background: #E4F464 !important;
        color: #0A0D0C !important;
        font-weight: 700 !important;
        border-color: #D4E64A !important;
    }

    .header-island-center .nav-link::after,
    .nav-link::after {
        display: none !important;
    }

    /* Dropdown Accordion in Mobile Drawer */
    .header-island-center .nav-dropdown-wrapper,
    .nav-dropdown-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        height: auto !important;
        position: static !important;
    }

    .header-island-center .nav-link.dropdown-toggle,
    .nav-link.dropdown-toggle {
        height: auto !important;
        min-height: 48px !important;
        position: relative !important;
        cursor: pointer !important;
    }

    .header-island-center .nav-link.dropdown-toggle.open,
    .nav-link.dropdown-toggle.open {
        background: #FFFFFF !important;
        color: #0A0D0C !important;
        font-weight: 700 !important;
        border: 1.5px solid #0A0D0C !important;
        border-bottom: 1px dashed #E5E5DE !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .dropdown-toggle .dropdown-arrow {
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        font-size: 0.85rem !important;
        color: #0D7A72 !important;
        margin-left: auto !important;
    }

    .dropdown-toggle.open .dropdown-arrow {
        transform: rotate(180deg) !important;
        color: #0A0D0C !important;
    }

    .header-island-center .dropdown-menu,
    .dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        height: auto !important;
        background: #FFFFFF !important;
        border: 1.5px solid #0A0D0C !important;
        border-top: none !important;
        border-bottom-left-radius: 12px !important;
        border-bottom-right-radius: 12px !important;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        padding: 0.5rem 0.65rem 0.65rem !important;
        margin: 0 !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
        list-style: none !important;
        box-sizing: border-box !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
    }

    .header-island-center .dropdown-menu.mobile-open,
    .dropdown-menu.mobile-open {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.4rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        animation: slideDownMenu 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    @keyframes slideDownMenu {
        from { opacity: 0; transform: translateY(-4px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .header-island-center .dropdown-menu li,
    .dropdown-menu li {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .header-island-center .dropdown-item,
    .dropdown-item {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        height: auto !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.925rem !important;
        font-weight: 600 !important;
        color: #161C1B !important;
        background: #F8F8F6 !important;
        border: 1px solid #ECECE6 !important;
        border-radius: 8px !important;
        text-decoration: none !important;
        box-sizing: border-box !important;
        transition: all 0.2s ease !important;
    }

    .header-island-center .dropdown-item:hover,
    .header-island-center .dropdown-item:active,
    .header-island-center .dropdown-item.active,
    .dropdown-item:hover,
    .dropdown-item:active,
    .dropdown-item.active {
        background: #E4F464 !important;
        color: #0A0D0C !important;
        border-color: #D4E64A !important;
        font-weight: 700 !important;
    }

    /* Mobile Drawer Quick Action Buttons */
    .mobile-drawer-footer {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin-top: 1.25rem !important;
        padding-top: 1.25rem !important;
        border-top: 1px solid #E5E5DE !important;
        gap: 0.65rem !important;
    }
}


/* ==========================================================================
   DEEP ARCHITECTURAL TEAL ICON SYSTEM
   ========================================================================== */
:root {
    --icon-teal: #0D7A72;
    --icon-teal-hover: #085953;
    --icon-teal-bg: #E8F6F4;
    --icon-teal-border: rgba(13, 122, 114, 0.22);
}

.trust-icon,
.service-icon,
.bullet-icon,
.contact-detail-icon,
.contact-detail-item i,
.contact-detail-item svg,
.calc-icon,
.feature-icon,
.diff-icon,
.dropdown-item .item-icon,
.badge-tag svg,
.badge-tag i,
.spec-check i,
.spec-check svg,
.faq-icon {
    color: #0D7A72 !important;
}

.trust-icon,
.service-icon,
.contact-detail-icon,
.feature-icon,
.calc-icon {
    background: #E8F6F4 !important;
    border: 1px solid rgba(13, 122, 114, 0.22) !important;
}


/* ==========================================================================
   SERVICE CARDS (SPACIAZ FEATURED CENTER LIME CARD)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: #0A0D0C;
    line-height: 1.3;
}

.service-description {
    color: #333333;
    font-size: 0.925rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.65;
}

.service-link {
    color: #0A0D0C;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-link:hover {
    gap: 0.75rem;
    color: #0D7A72;
}

/* Center Featured Card (Signature Lime Background) */
.service-card-lime {
    background: #E4F464 !important;
    border: 1px solid #D4E64A !important;
    box-shadow: 0 10px 30px rgba(228, 244, 100, 0.25) !important;
}

.service-card-lime .service-icon {
    background: #0A0D0C !important;
    color: #E4F464 !important;
    border: none !important;
}

.service-card-lime .service-title {
    color: #0A0D0C !important;
}

.service-card-lime .service-description {
    color: #111615 !important;
    font-weight: 500 !important;
}

.service-card-lime .service-link {
    color: #0A0D0C !important;
    font-weight: 800 !important;
}

.service-card-lime .service-link:hover {
    color: #111615 !important;
    gap: 0.75rem;
}


/* Typography Scale: Cinzel for Big Hero & Section Titles (H1, H2), Poppins for Uniform Readability (H3-H6) */
h1, h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-heading);
    letter-spacing: 0.01em;
}

h3, h4, h5, h6 {
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    line-height: 1.35;
    color: var(--text-heading);
    letter-spacing: normal;
    text-transform: none;
}

.service-title,
.portfolio-title,
.contact-info-box h3,
.contact-form-box h3,
.calc-card h3,
.faq-question,
.bullet-item h4 {
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
}


/* Specification Comparison Table: Solid Black Text on Lime */
.spec-table th {
    background: #E4F464 !important;
    color: #0A0D0C !important;
    font-family: var(--font-body) !important;
    font-weight: 800 !important;
    font-size: 0.875rem !important;
    letter-spacing: 0.03em !important;
    padding: 1.1rem 1.25rem !important;
    text-align: left;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.spec-table th.featured-col {
    background: #0A0D0C !important;
    color: #FFFFFF !important;
}

.spec-table th:last-child {
    background: #E4F464 !important;
    color: #0A0D0C !important;
}


/* Preloader: Lighter Lime Background & Bold Black Details */
.canvas-loader {
    position: fixed;
    inset: 0;
    background: #E4F464 !important;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0A0D0C !important;
    overflow: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 1px, transparent 1px) !important;
    background-size: 40px 40px;
    pointer-events: none;
}

.loader-construction-scene svg {
    filter: none !important;
}

.loader-brand-title {
    font-family: var(--font-heading) !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    color: #0A0D0C !important;
    text-shadow: none !important;
    margin-bottom: 0.25rem;
}

.loader-brand-sub {
    font-family: var(--font-body) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.25em !important;
    color: #111615 !important;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.loader-progress-track-circle {
    fill: none;
    stroke: rgba(0, 0, 0, 0.12) !important;
    stroke-width: 4;
}

.loader-progress-bar-circle {
    fill: none;
    stroke: #0A0D0C !important;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 345.57;
    stroke-dashoffset: 345.57;
    transition: stroke-dashoffset 0.15s ease;
    filter: none !important;
}

.loader-progress-number {
    font-family: var(--font-body) !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #0A0D0C !important;
}

.loader-stage-ticker {
    font-size: 0.875rem !important;
    color: #111615 !important;
    font-weight: 600 !important;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

.loader-instruction-pill {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    color: #0A0D0C !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    font-weight: 600;
}

.loader-instruction-pill svg {
    stroke: #0A0D0C !important;
}


/* Footer Icons Visibility: Bright White on Dark Footer */
.footer i,
.footer .footer-col i,
.footer .footer-brand i,
.footer-col p i,
.footer .text-teal,
.footer .text-gold,
.footer .text-turquoise {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
}


/* Blog Featured Images: Clean, Controlled Height */
.blog-featured-img-wrapper {
    max-height: 380px !important;
    height: 380px !important;
    width: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin: 2rem 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    position: relative;
    border: 1px solid #E5E5DE;
}

.blog-featured-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 35% !important;
    display: block !important;
}

.blog-inline-img-wrapper {
    max-height: 340px !important;
    height: 340px !important;
    width: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    margin: 2rem 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #E5E5DE;
}

.blog-inline-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}




/* ==========================================================================
   SILUX BESPOKE LUXURY DYNAMIC COST CALCULATOR (CHENNAI & VELLORE)
   Custom Architectural Identity: Deep Onyx, Emerald Teal & Luminous Lime
   ========================================================================== */

/* City Selection Modal Backdrop & Box */
.calc-city-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 13, 12, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.calc-city-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.calc-city-modal-box {
    background: #FFFFFF;
    border: 1px solid #E2E8E4;
    border-radius: 28px;
    max-width: 680px;
    width: 100%;
    padding: 2.75rem 2.25rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    text-align: center;
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-city-modal-backdrop.active .calc-city-modal-box {
    transform: scale(1) translateY(0);
}

.calc-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #F1F5F3;
    border: 1px solid #E2E8E4;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #0A0D0C;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-modal-close:hover {
    background: #E4F464;
    color: #0A0D0C;
    transform: rotate(90deg);
    border-color: #D4E64A;
}

.city-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    color: #0A0D0C;
    margin-bottom: 0.5rem;
}

.city-modal-header p {
    color: #555957;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.city-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.city-select-card {
    background: #FAFCFA;
    border: 2px solid #E2E8E4;
    border-radius: 20px;
    padding: 2rem 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.city-select-card:hover {
    border-color: #0D7A72;
    background: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 122, 114, 0.15);
}

.city-select-card.active {
    border-color: #0D7A72;
    background: #F2FAF8;
    box-shadow: 0 12px 30px rgba(13, 122, 114, 0.18);
}

.city-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0D7A72, #084843);
    color: #E4F464;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.15rem;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(13, 122, 114, 0.25);
}

.city-select-card:hover .city-icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: #0A0D0C;
    color: #E4F464;
}

.city-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #0A0D0C;
    margin-bottom: 0.35rem;
}

.city-card-badge {
    display: inline-block;
    background: #E4F464;
    color: #0A0D0C;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.city-card-rate {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0D7A72;
    margin-bottom: 0.5rem;
}

.city-card-locs {
    font-size: 0.8rem;
    color: #666A68;
    line-height: 1.45;
    margin-bottom: 1.25rem;
}

.city-select-btn {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #0A0D0C;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.city-select-card:hover .city-select-btn {
    background: #0D7A72;
}

/* Calculator Top Bar */
.calc-top-header-bar {
    background: #FFFFFF;
    border: 1px solid #E2E8E4;
    border-radius: 20px;
    padding: 1.25rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.calc-current-city-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.calc-city-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0A0D0C;
    color: #FFFFFF;
    padding: 0.55rem 1.15rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.calc-city-tag i {
    color: #E4F464 !important;
}

.calc-change-city-btn {
    background: #F1F5F3;
    border: 1px solid #D5DED9;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111615;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.calc-change-city-btn:hover {
    background: #E4F464;
    border-color: #D4E64A;
    color: #0A0D0C;
}

.calc-acc-toggle-all {
    background: #FAFCFA;
    border: 1px solid #D5DED9;
    color: #0A0D0C;
    padding: 0.55rem 1.15rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.calc-acc-toggle-all:hover {
    background: #0D7A72;
    color: #FFFFFF;
    border-color: #0D7A72;
}

/* Parameters Panel (Area + Custom Floor Stepper) */
.calc-parameters-panel {
    background: #FFFFFF;
    border: 1px solid #E2E8E4;
    border-radius: 24px;
    padding: 2.25rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.calc-param-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 3rem;
    align-items: start;
}

.calc-param-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: #0A0D0C;
}

.calc-area-num-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.calc-area-num-input {
    width: 115px;
    padding: 0.55rem 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0D7A72;
    background: #F4FAF8;
    border: 2px solid #0D7A72;
    border-radius: 10px;
    text-align: right;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s ease;
}

.calc-area-num-input:focus {
    border-color: #0A0D0C;
    box-shadow: 0 0 0 3px rgba(13, 122, 114, 0.2);
}

.calc-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.calc-chip-btn {
    background: #F4F6F5;
    border: 1px solid #E2E8E4;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333936;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-chip-btn:hover,
.calc-chip-btn.active {
    background: #E4F464;
    border-color: #D4E64A;
    color: #0A0D0C;
    font-weight: 700;
}

/* Custom Interactive Floor Stepper Controls */
.calc-floor-stepper-container {
    background: #F8FAF9;
    border: 1.5px solid #E2E8E4;
    border-radius: 18px;
    padding: 1.25rem;
}

.calc-floor-stepper-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: #FFFFFF;
    border: 1.5px solid #0D7A72;
    border-radius: 14px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(13, 122, 114, 0.08);
}

.calc-stepper-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #0A0D0C;
    color: #E4F464;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.calc-stepper-btn:hover {
    background: #0D7A72;
    color: #FFFFFF;
    transform: scale(1.05);
}

.calc-stepper-btn:active {
    transform: scale(0.95);
}

.calc-stepper-value-wrap {
    text-align: center;
    flex: 1;
}

.calc-stepper-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #0A0D0C;
    line-height: 1.1;
}

.calc-stepper-sub {
    font-size: 0.78rem;
    color: #0D7A72;
    font-weight: 600;
    margin-top: 0.15rem;
}

.calc-floors-pills-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.4rem;
}

.calc-floor-pill-btn {
    background: #FFFFFF;
    border: 1px solid #DCE4E0;
    border-radius: 8px;
    padding: 0.5rem 0.25rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2D3330;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-floor-pill-btn:hover {
    border-color: #0D7A72;
    background: #F4FAF8;
}

.calc-floor-pill-btn.active {
    background: #0D7A72;
    border-color: #0D7A72;
    color: #FFFFFF;
}

/* ================================================================
   3 BESPOKE LUXURY PACKAGE CARDS (SILUX ARCHITECTURAL IDENTITY)
   ================================================================ */
.calc-packages-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3.5rem;
    align-items: stretch;
}

.calc-package-col {
    background: #FFFFFF;
    border: 1.5px solid #E2E8E4;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.calc-package-col:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
}

/* Column 1: Standard Tier (Modern Slate & Onyx) */
.calc-package-col[data-package="standard"] .pkg-top-banner {
    background: linear-gradient(135deg, #1C2321, #0F1413);
    color: #FFFFFF;
}

.calc-package-col[data-package="standard"] .pkg-banner-title {
    color: #B8C2BD;
}

.calc-package-col[data-package="standard"] .pkg-banner-rate {
    color: #FFFFFF;
}

.calc-package-col[data-package="standard"] .pkg-banner-sqft {
    color: #8C9993;
}

/* Column 2: Premium Tier (Featured Emerald Teal & Lime Glow) */
.calc-package-col.featured {
    border: 2px solid #0D7A72;
    box-shadow: 0 15px 45px rgba(13, 122, 114, 0.18);
}



.calc-package-col.featured .pkg-top-banner {
    background: linear-gradient(135deg, #0D7A72, #084843);
    color: #FFFFFF;
}

.calc-package-col.featured .pkg-banner-title {
    color: #E4F464;
}

.calc-package-col.featured .pkg-banner-rate {
    color: #FFFFFF;
}

.calc-package-col.featured .pkg-banner-sqft {
    color: rgba(255, 255, 255, 0.8);
}

/* Column 3: Ultra Luxury Signature (Obsidian & Gold Accents) */
.calc-package-col.ultra-featured {
    border: 2px solid #0A0D0C;
    box-shadow: 0 15px 45px rgba(10, 13, 12, 0.22);
}



.calc-package-col.ultra-featured .pkg-top-banner {
    background: linear-gradient(135deg, #0A0D0C, #1A1F1D);
    color: #FFFFFF;
}

.calc-package-col.ultra-featured .pkg-banner-title {
    color: #E4F464;
}

.calc-package-col.ultra-featured .pkg-banner-rate {
    color: #FFFFFF;
}

.calc-package-col.ultra-featured .pkg-banner-sqft {
    color: #A5B0AB;
}

/* Top Banner Generic */
.pkg-top-banner {
    padding: 1.85rem 1.5rem;
    text-align: center;
    position: relative;
}

.pkg-banner-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.pkg-banner-rate {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.pkg-banner-sqft {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pkg-total-cost-box {
    background: #FAFCFA;
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid #E2E8E4;
    text-align: center;
}

.pkg-total-cost-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0D7A72;
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
}

.pkg-total-cost-sub {
    font-size: 0.8rem;
    color: #666A68;
    font-weight: 600;
}

.pkg-select-btn-wrap {
    padding: 1rem 1.5rem;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8E4;
}

.pkg-select-btn {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #0A0D0C;
    background: #FFFFFF;
    color: #0A0D0C;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pkg-select-btn:hover,
.calc-package-col.active .pkg-select-btn {
    background: #0A0D0C;
    color: #E4F464;
    border-color: #0A0D0C;
}

/* Accordion Specification List */
.pkg-accordions-container {
    background: #FFFFFF;
    flex: 1;
}

.pkg-acc-item {
    border-bottom: 1px solid #E8EFEA;
}

.pkg-acc-item:last-child {
    border-bottom: none;
}

.pkg-acc-trigger {
    width: 100%;
    background: #FFFFFF;
    border: none;
    padding: 1.05rem 1.35rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.925rem;
    font-weight: 700;
    color: #111615;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pkg-acc-trigger:hover {
    background: #F4FAF8;
    color: #0D7A72;
}

.pkg-acc-trigger.open {
    background: #F0F7F5;
    color: #0D7A72;
    border-bottom: 1px solid #DCE7E2;
}

.pkg-acc-icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #E8EFEA;
    color: #0A0D0C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    transition: transform 0.3s ease, background 0.2s ease;
    flex-shrink: 0;
}

.pkg-acc-trigger.open .pkg-acc-icon-circle {
    transform: rotate(45deg);
    background: #0D7A72;
    color: #FFFFFF;
}

.pkg-acc-content {
    display: none;
    padding: 1.15rem 1.35rem 1.35rem;
    background: #FAFCFA;
}

.pkg-acc-content.open {
    display: block;
    animation: fadeInAcc 0.25s ease;
}

.pkg-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-spec-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
    color: #333936;
    line-height: 1.5;
}

.pkg-spec-list li:last-child {
    margin-bottom: 0;
}

.pkg-spec-list li i.fa-check-circle {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #0D7A72 !important;
    font-size: 0.85rem;
}

.pkg-spec-title {
    font-weight: 700;
    color: #0A0D0C;
}

.spec-pill {
    display: inline-block;
    background: #E8F6F4;
    color: #0D7A72;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 6px;
    margin-left: 0.25rem;
}

/* Add-ons & Inclusions Section */
.calc-addons-wrap {
    background: #FFFFFF;
    border: 1px solid #E2E8E4;
    border-radius: 24px;
    padding: 2.25rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.calc-addons-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.calc-addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.calc-addon-box {
    background: #FAFCFA;
    border: 1.5px solid #E2E8E4;
    border-radius: 16px;
    padding: 1.35rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-addon-box:hover {
    border-color: #0D7A72;
    background: #FFFFFF;
    transform: translateY(-2px);
}

.calc-addon-box.selected {
    border-color: #0D7A72;
    background: #F2FAF8;
    box-shadow: 0 8px 20px rgba(13, 122, 114, 0.08);
}

.calc-addon-checkbox {
    width: 22px;
    height: 22px;
    accent-color: #0D7A72;
    margin-top: 0.15rem;
    cursor: pointer;
}

.calc-addon-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0A0D0C;
    margin-bottom: 0.25rem;
}

.calc-addon-info p {
    font-size: 0.8rem;
    color: #666A68;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.calc-addon-price {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0D7A72;
}

/* Master Summary & Analytics Section */
.calc-results-section {
    background: #0A0D0C;
    color: #FFFFFF;
    border-radius: 28px;
    padding: 3.25rem 2.75rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(228, 244, 100, 0.2);
}

.calc-results-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 3.5rem;
}

.calc-grand-display {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.calc-grand-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #E4F464;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.calc-grand-rate-tag {
    font-size: 1.05rem;
    color: #A8B2AD;
    font-weight: 500;
}

.calc-breakdown-table {
    width: 100%;
    margin-bottom: 2rem;
}

.calc-breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.calc-breakdown-row span:first-child {
    color: #A8B2AD;
}

.calc-breakdown-row span:last-child {
    font-weight: 700;
    color: #FFFFFF;
}

/* Phase Milestones Bar & Table */
.calc-milestones-wrapper {
    margin-top: 1.5rem;
}

.calc-milestone-item {
    margin-bottom: 1.15rem;
}

.calc-milestone-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
}

.calc-milestone-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

.calc-milestone-fill {
    height: 100%;
    background: linear-gradient(90deg, #0D7A72, #E4F464);
    border-radius: 999px;
}

/* Material Estimator Grid */
.calc-materials-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    margin-top: 1.75rem;
}

.calc-mat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.calc-mat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem;
}

.calc-mat-name {
    font-size: 0.8rem;
    color: #A8B2AD;
    margin-bottom: 0.25rem;
}

.calc-mat-qty {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
}

/* Print Styles */
@media print {
    .header-island-wrapper,
    .page-hero,
    .calc-top-header-bar,
    .calc-city-modal-backdrop,
    .floating-contact-bar,
    .footer,
    #quoteFormSection,
    .calc-chips-row,
    .calc-acc-toggle-all,
    .btn-whatsapp-island {
        display: none !important;
    }

    body {
        background: #FFFFFF !important;
        color: #000000 !important;
    }

    .calc-results-section {
        background: #FFFFFF !important;
        color: #000000 !important;
        border: 2px solid #000000 !important;
        box-shadow: none !important;
    }

    .calc-grand-price {
        color: #000000 !important;
    }

    .calc-breakdown-row span:first-child,
    .calc-breakdown-row span:last-child {
        color: #000000 !important;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .calc-packages-matrix {
        grid-template-columns: 1fr;
    }

    .calc-param-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calc-addons-grid {
        grid-template-columns: 1fr 1fr;
    }

    .calc-results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .city-cards-grid {
        grid-template-columns: 1fr;
    }

    .calc-floors-pills-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .calc-addons-grid {
        grid-template-columns: 1fr;
    }

    .calc-grand-price {
        font-size: 2.6rem;
    }

    .calc-top-header-bar {
        padding: 1.25rem 1rem;
    }
}


/* ==========================================================================
   ENLARGED LOGO & SIMPLE SAN-SERIF FONT OVERRIDE FOR COST CALCULATOR
   ========================================================================== */
.brand-logo-img {
    height: 64px !important;
    max-width: 240px !important;
    object-fit: contain;
    display: block;
}

.header-island-left .brand-logo-img {
    height: 62px !important;
    max-width: 230px !important;
    object-fit: contain;
    display: block;
}

.footer-brand-logo-img {
    height: 75px !important;
    max-width: 270px !important;
    object-fit: contain;
    display: block;
}

.header-island-left {
    padding: 6px 18px !important;
}

@media (max-width: 768px) {
    .brand-logo-img,
    .header-island-left .brand-logo-img {
        height: 52px !important;
        max-width: 190px !important;
    }
    .footer-brand-logo-img {
        height: 60px !important;
        max-width: 220px !important;
    }
}

/* Calculator Page Font Override: Modern, Simple & Understandable Poppins (No Cinzel) */
.calc-page,
.calc-page h1,
.calc-page h2,
.calc-page h3,
.calc-page h4,
.calc-page h5,
.calc-page h6,
.calc-page .page-hero-title,
.calc-page .pkg-banner-title,
.calc-page .pkg-banner-rate,
.calc-page .calc-grand-price,
.calc-page .city-modal-header h2,
.calc-page .city-card-title,
.calc-page .calc-stepper-title,
.calc-page .pkg-total-cost-amount,
.calc-page .calc-mat-qty,
.calc-page .calc-city-tag {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
    letter-spacing: -0.01em;
}

.calc-page .pkg-banner-rate {
    font-weight: 800 !important;
    font-size: 2.85rem !important;
    letter-spacing: -0.03em !important;
}

.calc-page .calc-grand-price {
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
}


/* ==========================================================================
   10 BUILDING TYPE SELECTOR STYLES (CALCULATOR)
   ========================================================================== */
.calc-bldg-types-section {
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #E2E8E4;
}

.calc-bldg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calc-bldg-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0A0D0C;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.calc-bldg-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.calc-bldg-card {
    background: #F8FAF9;
    border: 1.5px solid #E2E8E4;
    border-radius: 14px;
    padding: 0.9rem 0.6rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    user-select: none;
}

.calc-bldg-card:hover {
    background: #FFFFFF;
    border-color: #0D7A72;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 122, 114, 0.1);
}

.calc-bldg-card.active {
    background: #FFFFFF;
    border-color: #0D7A72;
    box-shadow: 0 6px 18px rgba(13, 122, 114, 0.15), 0 0 0 2px #0D7A72;
}

.calc-bldg-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #E8F6F4;
    color: #0D7A72;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.2s ease;
}

.calc-bldg-card:hover .calc-bldg-icon,
.calc-bldg-card.active .calc-bldg-icon {
    background: #0A0D0C;
    color: #E4F464;
}

.calc-bldg-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1A211E;
    line-height: 1.25;
}

@media (max-width: 1024px) {
    .calc-bldg-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .calc-bldg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .calc-bldg-card {
        padding: 0.75rem 0.4rem;
    }
    .calc-bldg-name {
        font-size: 0.74rem;
    }
}



/* ==========================================================================
   OFFICIAL DYNAMIC PDF ESTIMATE STYLES (100% NON-BLANK CAPTURE)
   ========================================================================== */
#siluxPdfEstimateTemplate {
    position: fixed !important;
    top: 0 !important;
    left: -9999px !important;
    width: 794px !important; /* Exact A4 width */
    background: #FFFFFF !important;
    color: #0A0D0C !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    padding: 28px 32px !important;
    box-sizing: border-box !important;
    z-index: -9999 !important;
    visibility: visible !important;
    display: block !important;
    pointer-events: none !important;
}

.pdf-header-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 2.5px solid #0D7A72 !important;
    padding-bottom: 16px !important;
    margin-bottom: 18px !important;
}

.pdf-logo-img {
    height: 52px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
}

.pdf-company-info {
    text-align: right !important;
    font-size: 10.5px !important;
    color: #4A524E !important;
    line-height: 1.4 !important;
}

.pdf-doc-title-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    margin-bottom: 16px !important;
}

.pdf-doc-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0A0D0C !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
}

.pdf-ref-badge {
    background: #E8F6F4 !important;
    color: #0D7A72 !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    border: 1px solid #B8E0DB !important;
}

.pdf-grid-2col {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
}

.pdf-info-card {
    background: #FAFCFA !important;
    border: 1.5px solid #E2E8E4 !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
}

.pdf-card-title {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #0D7A72 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 8px !important;
    border-bottom: 1px solid #E2E8E4 !important;
    padding-bottom: 4px !important;
}

.pdf-info-table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 10.5px !important;
}

.pdf-info-table td {
    padding: 4px 0 !important;
    border-bottom: 1px solid #F0F4F2 !important;
}

.pdf-info-table td:first-child {
    color: #666A68 !important;
    font-weight: 500 !important;
}

.pdf-info-table td:last-child {
    text-align: right !important;
    font-weight: 700 !important;
    color: #0A0D0C !important;
}

.pdf-grand-total-banner {
    background: #0A0D0C !important;
    color: #FFFFFF !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    margin-bottom: 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border: 1.5px solid #0D7A72 !important;
    box-sizing: border-box !important;
}

.pdf-grand-label {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #B8C2BD !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}

.pdf-grand-rate-sub {
    font-size: 10.5px !important;
    color: #8C9993 !important;
    margin-top: 2px !important;
}

.pdf-grand-amount {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #E4F464 !important;
    line-height: 1 !important;
}

.pdf-table-styled {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 10px !important;
    margin-bottom: 14px !important;
}

.pdf-table-styled th {
    background: #0D7A72 !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    text-align: left !important;
    padding: 6px 10px !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
}

.pdf-table-styled th:last-child {
    text-align: right !important;
}

.pdf-table-styled td {
    padding: 5px 10px !important;
    border-bottom: 1px solid #E8EFEA !important;
    color: #2D3330 !important;
}

.pdf-table-styled td:last-child {
    text-align: right !important;
    font-weight: 700 !important;
}

.pdf-table-styled tr:nth-child(even) {
    background: #FAFCFA !important;
}

.pdf-footer-terms {
    background: #FAFCFA !important;
    border: 1px solid #E2E8E4 !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-size: 9px !important;
    color: #555957 !important;
    line-height: 1.45 !important;
    margin-top: 10px !important;
}

.pdf-sign-bar {
    margin-top: 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    font-size: 9.5px !important;
    color: #666A68 !important;
    border-top: 1px solid #E2E8E4 !important;
    padding-top: 10px !important;
}


/* ==========================================================================
   PERFECT VERTICAL & HORIZONTAL ALIGNMENT FOR 3 PACKAGE CARDS & BUTTONS
   ========================================================================== */
.calc-packages-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3.5rem;
    align-items: stretch;
}

.calc-package-col {
    background: #FFFFFF;
    border: 1.5px solid #E2E8E4;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Top Ribbon Tag on ALL 3 cards (Exact Same Height: 38px) */
.pkg-ribbon-tag {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.pkg-ribbon-tag.standard {
    background: #141A18;
    color: #A5B3AD;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pkg-ribbon-tag.featured {
    background: #E4F464;
    color: #0A0D0C;
    border-bottom: 1px solid #D4E64A;
}

.pkg-ribbon-tag.ultra {
    background: #0A0D0C;
    color: #E4F464;
    border-bottom: 1px solid rgba(228, 244, 100, 0.3);
}

/* Banner Container (Exact Same Height: 155px across all 3 cards) */
.pkg-top-banner {
    height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-sizing: border-box;
}

.pkg-banner-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.pkg-banner-rate {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
}

.pkg-banner-sqft {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Total Cost Box (Exact Same Height: 95px across all 3 cards) */
.pkg-total-cost-box {
    height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FAFCFA;
    padding: 0.5rem 1.25rem;
    border-bottom: 1px solid #E2E8E4;
    text-align: center;
    box-sizing: border-box;
}

.pkg-total-cost-amount {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.65rem;
    font-weight: 800;
    color: #0D7A72;
    margin-bottom: 0.2rem;
    line-height: 1.1;
}

.pkg-total-cost-sub {
    font-size: 0.78rem;
    color: #666A68;
    font-weight: 600;
    line-height: 1.3;
    max-width: 90%;
}

/* Select Button Box (Exact Same Height: 76px across all 3 cards) */
.pkg-select-btn-wrap {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8E4;
    box-sizing: border-box;
}

.pkg-select-btn {
    height: 48px;
    width: 100%;
    border: 2px solid #0A0D0C;
    background: #FFFFFF;
    color: #0A0D0C;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-sizing: border-box;
}

.pkg-select-btn:hover,
.calc-package-col.active .pkg-select-btn {
    background: #0A0D0C;
    color: #E4F464;
    border-color: #0A0D0C;
}

/* Accordion Container Flex Fill */
.pkg-accordions-container {
    background: #FFFFFF;
    flex: 1;
}


/* ==========================================================================
   UNIFIED SINGLE-COLOR HEADER ISLAND FOR LOGO (NO DOUBLE BOX / NO MISMATCH)
   ========================================================================== */
.header-island-left {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 999px !important;
    padding: 6px 20px !important;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.header-island-left:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(13, 122, 114, 0.2) !important;
}

.header-island-left .brand-logo {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-island-left .brand-logo-img {
    height: 52px !important;
    width: auto !important;
    max-width: 190px !important;
    object-fit: contain !important;
    background: transparent !important;
    display: block;
}

.footer .brand-logo {
    background: #FFFFFF !important;
    padding: 10px 20px !important;
    border-radius: 16px !important;
    display: inline-flex !important;
    margin-bottom: 1.25rem !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
}

.footer-brand-logo-img {
    height: 58px !important;
    width: auto !important;
    max-width: 210px !important;
    object-fit: contain !important;
    background: transparent !important;
    display: block;
}

@media (max-width: 768px) {
    .header-island-left {
        padding: 4px 14px !important;
    }
    .header-island-left .brand-logo-img {
        height: 42px !important;
        max-width: 150px !important;
    }
}


/* ==========================================================================
   CENTERED BIG LOGO PRELOADER STYLES
   ========================================================================== */
.canvas-loader {
    position: fixed;
    inset: 0;
    background: #FFFFFF !important;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0A0D0C !important;
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.loader-logo-img {
    height: 110px !important;
    width: auto !important;
    max-width: 360px !important;
    object-fit: contain !important;
    animation: pulseLogo 2.5s infinite ease-in-out alternate;
}

@keyframes pulseLogo {
    0% { transform: scale(0.97); }
    100% { transform: scale(1.03); }
}

@media (max-width: 768px) {
    .loader-logo-img {
        height: 85px !important;
        max-width: 280px !important;
    }
}


/* ==========================================================================
   SIMPLE, NON-GLOWING FLOATING CONTACT BUTTONS + BLINKING CHATBOT BUTTON
   ========================================================================== */
.floating-contact-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9990;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    border: none !important;
    animation: none !important; /* No neon pulse glow */
}

.float-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
}

/* Simple Solid Call Button */
.float-btn-phone {
    background: #0D7A72 !important; /* Silux Deep Teal */
}

/* Simple Solid WhatsApp Button */
.float-btn-whatsapp {
    background: #25D366 !important; /* Clean WhatsApp Green */
}

.float-btn svg, .float-btn i {
    font-size: 22px;
    width: 22px;
    height: 22px;
    color: #FFFFFF !important;
}

/* Chatbot Floating Action Button (Gentle Blinking Animation) */
.chatbot-toggle-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: auto;
    z-index: 998;
    background: #0A0D0C !important;
    color: #E4F464 !important;
    border: 2px solid #E4F464 !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), 0 0 12px rgba(228, 244, 100, 0.25) !important;
    transition: all 0.25s ease;
    animation: chatbotBlink 2.8s infinite ease-in-out !important; /* Gentle AI Blink */
}

.chatbot-toggle-btn:hover {
    background: #E4F464 !important;
    color: #0A0D0C !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 22px rgba(228, 244, 100, 0.4) !important;
}

.chatbot-toggle-btn:hover .robot-face-svg,
.chatbot-toggle-btn:hover .robot-face-svg * {
    stroke: #0A0D0C !important;
}

.chatbot-toggle-btn:hover .robot-face-svg rect {
    fill: #E4F464 !important;
}

.chatbot-toggle-btn:hover .robot-face-svg circle {
    fill: #0A0D0C !important;
}

@keyframes chatbotBlink {
    0%, 100% {
        transform: scale(1);
    }
    45% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    55% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.06);
    }
    65% {
        transform: scale(1);
    }
}

.chatbot-unread-dot {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 9px;
    height: 9px;
    background: #E4F464 !important;
    border-radius: 50%;
    border: 1.5px solid #0A0D0C;
    animation: dotBlink 1.4s infinite ease-in-out !important;
    box-shadow: 0 0 6px rgba(228, 244, 100, 0.6) !important;
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(0.7); }
}

@media (max-width: 768px) {
    .floating-contact-bar {
        bottom: 18px;
        right: 16px;
        gap: 10px;
    }
    .float-btn {
        width: 44px;
        height: 44px;
    }
    .float-btn svg, .float-btn i {
        font-size: 19px;
        width: 19px;
        height: 19px;
    }
    .chatbot-toggle-btn {
        bottom: 18px;
        left: 16px;
        width: 44px;
        height: 44px;
    }
}


/* ==========================================================================
   COMPREHENSIVE MOBILE VIEW RE-ENGINEERING (CALCULATOR & PACKAGES)
   ========================================================================== */

/* Mobile Package Switcher Tabs (Visible only on <= 992px) */
.calc-mobile-pkg-tabs {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    background: #111615;
    padding: 6px;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 4px;
}

.mobile-pkg-tab {
    background: transparent;
    border: none;
    color: #A5B3AD;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 10px 4px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.mobile-pkg-tab.active {
    background: #0D7A72;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(13, 122, 114, 0.4);
}

.mobile-pkg-tab:nth-child(2).active {
    background: #E4F464;
    color: #0A0D0C;
}

@media (max-width: 992px) {
    .calc-mobile-pkg-tabs {
        display: grid;
    }

    /* Stack package cards in single column on mobile */
    .calc-packages-matrix {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    /* On mobile, show active card or all cleanly */
    .calc-package-col {
        width: 100% !important;
        border-radius: 20px !important;
        margin-bottom: 0.5rem;
    }

    .pkg-ribbon-tag {
        height: 36px !important;
        font-size: 0.72rem !important;
        padding: 0 0.75rem !important;
    }

    .pkg-top-banner {
        height: auto !important;
        min-height: 130px !important;
        padding: 1.25rem 1rem !important;
    }

    .pkg-banner-title {
        font-size: 1rem !important;
    }

    .pkg-banner-rate {
        font-size: 2.25rem !important;
    }

    .pkg-banner-sqft {
        font-size: 0.75rem !important;
    }

    .pkg-total-cost-box {
        height: auto !important;
        min-height: 75px !important;
        padding: 0.75rem 1rem !important;
    }

    .pkg-total-cost-amount {
        font-size: 1.45rem !important;
    }

    .pkg-total-cost-sub {
        font-size: 0.75rem !important;
    }

    .pkg-select-btn-wrap {
        height: auto !important;
        padding: 0.75rem 1rem !important;
    }

    .pkg-select-btn {
        height: 46px !important;
        font-size: 0.84rem !important;
        border-radius: 10px !important;
    }

    /* Parameters Panel Mobile */
    .calc-param-grid {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
    }

    .calc-parameters-panel {
        padding: 1.25rem !important;
        border-radius: 20px !important;
    }

    .calc-chips-row {
        flex-wrap: wrap !important;
        gap: 0.4rem !important;
    }

    .calc-chip-btn {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.65rem !important;
    }

    .calc-floors-pills-row {
        flex-wrap: wrap !important;
        gap: 0.4rem !important;
    }

    .calc-floor-pill-btn {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.75rem !important;
    }

    .calc-addons-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .calc-results-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .calc-grand-price-box {
        position: static !important;
    }

    .calc-grand-price {
        font-size: 2.25rem !important;
    }

    .calc-summary-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .calc-summary-actions .btn {
        width: 100% !important;
    }
}

@media (max-width: 640px) {
    .calc-hero {
        padding: 6.5rem 0 2rem !important;
    }

    .calc-hero h1 {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
    }

    .calc-hero-subtitle {
        font-size: 0.9rem !important;
    }

    .calc-top-controls-bar {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
    }

    .calc-city-badge-wrap,
    .calc-global-controls {
        width: 100% !important;
        justify-content: space-between !important;
    }

    .calc-change-city-btn,
    .calc-acc-toggle-all {
        font-size: 0.8rem !important;
        padding: 0.5rem 0.85rem !important;
    }

    .calc-bldg-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    .calc-bldg-card {
        padding: 0.7rem 0.4rem !important;
        border-radius: 12px !important;
    }

    .calc-bldg-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.95rem !important;
    }

    .calc-bldg-name {
        font-size: 0.72rem !important;
    }

    .calc-stepper-btn {
        width: 44px !important;
        height: 44px !important;
    }

    .calc-stepper-title {
        font-size: 1.1rem !important;
    }

    .calc-stepper-sub {
        font-size: 0.75rem !important;
    }
}


/* ==========================================================================
   EXECUTIVE MATERIAL CONSUMPTION LIST STYLES (MOBILE & DESKTOP PERFECT)
   ========================================================================== */
.calc-mat-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.calc-mat-item {
    background: #141A18;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.85rem 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.calc-mat-item:hover {
    background: #19221F;
    border-color: #0D7A72;
    transform: translateX(3px);
}

.calc-mat-item-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.calc-mat-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(13, 122, 114, 0.2);
    color: #2DD4BF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.calc-mat-item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.25;
}

.calc-mat-item-sub {
    font-size: 0.74rem;
    color: #8C9993;
    line-height: 1.2;
    margin-top: 2px;
}

.calc-mat-item-val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #E4F464;
    text-align: right;
    white-space: nowrap;
    letter-spacing: -0.01em;
    padding-left: 0.5rem;
}

@media (max-width: 480px) {
    .calc-mat-item {
        padding: 0.75rem 0.85rem;
    }
    .calc-mat-item-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    .calc-mat-item-title {
        font-size: 0.82rem;
    }
    .calc-mat-item-sub {
        font-size: 0.7rem;
    }
    .calc-mat-item-val {
        font-size: 0.95rem;
    }
}


/* ==========================================================================
   CITY SELECTION MODAL - PERFECT MOBILE & DESKTOP RESPONSIVENESS
   ========================================================================== */
.calc-city-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 13, 12, 0.92) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    z-index: 999999 !important; /* Above all headers & floating bars */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.calc-city-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.calc-city-modal-box {
    background: #FFFFFF;
    border: 1px solid #E2E8E4;
    border-radius: 24px;
    max-width: 640px;
    width: 100%;
    max-height: 92vh;
    max-height: 92dvh;
    overflow-y: auto;
    padding: 2.25rem 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

.calc-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #F1F5F3;
    border: 1px solid #E2E8E4;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #4A524E;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.calc-modal-close:hover {
    background: #0A0D0C;
    color: #E4F464;
    border-color: #0A0D0C;
}

.city-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.city-select-card {
    background: #FAFCFA;
    border: 2px solid #E2E8E4;
    border-radius: 18px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.city-select-card:hover,
.city-select-card.active {
    border-color: #0D7A72;
    background: #F2FAF8;
    box-shadow: 0 10px 25px rgba(13, 122, 114, 0.15);
}

.city-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0D7A72, #084843);
    color: #E4F464;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.city-card-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0A0D0C;
    margin-bottom: 0.25rem;
}

.city-card-badge {
    display: inline-block;
    background: #E4F464;
    color: #0A0D0C;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 6px;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.city-card-rate {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0D7A72;
    margin-bottom: 0.5rem;
}

.city-card-locs {
    font-size: 0.75rem;
    color: #666A68;
    line-height: 1.35;
    margin-bottom: 1rem;
    flex: 1;
}

.city-select-btn {
    width: 100%;
    background: #0A0D0C;
    color: #FFFFFF;
    border: none;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.city-select-card:hover .city-select-btn,
.city-select-card.active .city-select-btn {
    background: #0D7A72;
    color: #E4F464;
}

/* ==========================================================================
   MOBILE CITY MODAL ADAPTATION (FITS COMFORTABLY ON MOBILE SCREENS)
   ========================================================================== */
@media (max-width: 640px) {
    .calc-city-modal-box {
        padding: 1.35rem 1rem !important;
        border-radius: 18px !important;
        max-height: 90vh !important;
    }

    .calc-city-modal-box .loader-logo-wrap,
    .calc-city-modal-box img {
        height: 52px !important;
        max-width: 190px !important;
        margin-bottom: 0.75rem !important;
    }

    .city-modal-header h2 {
        font-size: 1.35rem !important;
        margin-bottom: 0.25rem !important;
    }

    .city-modal-header p {
        font-size: 0.78rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.35 !important;
    }

    .city-cards-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.65rem !important;
    }

    .city-select-card {
        padding: 0.9rem 0.5rem !important;
        border-radius: 14px !important;
    }

    .city-icon-circle {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.05rem !important;
        margin-bottom: 0.4rem !important;
    }

    .city-card-title {
        font-size: 1.05rem !important;
        margin-bottom: 0.15rem !important;
    }

    .city-card-badge {
        font-size: 0.65rem !important;
        padding: 2px 6px !important;
        margin-bottom: 0.25rem !important;
    }

    .city-card-rate {
        font-size: 0.8rem !important;
        margin-bottom: 0.35rem !important;
    }

    .city-card-locs {
        display: none !important; /* Hide long location list on compact mobile to fit both cards on screen */
    }

    .city-select-btn {
        font-size: 0.72rem !important;
        padding: 0.5rem 0.35rem !important;
        border-radius: 8px !important;
    }
}


/* ==========================================================================
   BESPOKE ARCHITECTURAL LUXURY HAMBURGER BUTTON (MOBILE & TABLET)
   ========================================================================== */
.hamburger-btn {
    display: none;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    padding: 0 !important;
    background: #0A0D0C !important; /* Deep Luxury Onyx */
    border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important; /* Sleek Modern Rounded Square */
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    z-index: 10020 !important;
}

.hamburger-btn:hover {
    background: #141A18 !important;
    border-color: #0D7A72 !important;
    transform: scale(1.05) !important;
}

/* Staggered Architectural Lines */
.hamburger-btn span {
    display: block !important;
    height: 2px !important;
    border-radius: 4px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform-origin: center !important;
}

/* Top Bar: Full Width White */
.hamburger-btn span:nth-child(1) {
    width: 19px !important;
    background: #FFFFFF !important;
}

/* Middle Bar: Architectural Staggered Luminous Lime */
.hamburger-btn span:nth-child(2) {
    width: 13px !important;
    background: #E4F464 !important;
    align-self: flex-end !important;
    margin-right: 10px !important;
}

/* Bottom Bar: Full Width White */
.hamburger-btn span:nth-child(3) {
    width: 19px !important;
    background: #FFFFFF !important;
}

/* Hover: Smooth expansion of middle lime bar */
.hamburger-btn:hover span:nth-child(2) {
    width: 19px !important;
    margin-right: 0 !important;
    align-self: center !important;
}

/* Active State: Transforms into a crisp Luxury 'X' Close Trigger */
.hamburger-btn.active {
    background: #0D7A72 !important;
    border-color: #2DD4BF !important;
}

.hamburger-btn.active span:nth-child(1) {
    width: 18px !important;
    background: #FFFFFF !important;
    transform: translateY(7px) rotate(45deg) !important;
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

.hamburger-btn.active span:nth-child(3) {
    width: 18px !important;
    background: #FFFFFF !important;
    transform: translateY(-7px) rotate(-45deg) !important;
}

@media (max-width: 992px) {
    .hamburger-btn {
        display: flex !important;
    }
}


/* ==========================================================================
   HIGH-CONTRAST LUXURY CONTACT & LOCATION ICONS (ULTRA VISIBLE)
   ========================================================================== */
.contact-detail-icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 14px !important;
    background: #0A0D0C !important; /* Deep Luxury Onyx */
    border: 1.5px solid #0D7A72 !important; /* Silux Teal Border */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
    transition: all 0.25s ease !important;
}

.contact-detail-item:hover .contact-detail-icon {
    background: #0D7A72 !important;
    border-color: #E4F464 !important;
    transform: scale(1.06) rotate(-4deg);
    box-shadow: 0 6px 18px rgba(13, 122, 114, 0.35) !important;
}

.contact-detail-icon i,
.contact-detail-icon svg,
.contact-detail-icon .fas {
    color: #E4F464 !important; /* High-Visibility Luminous Lime Icon */
    font-size: 1.25rem !important;
    margin: 0 !important;
    display: block !important;
}

.contact-detail-item:hover .contact-detail-icon i,
.contact-detail-item:hover .contact-detail-icon svg {
    color: #FFFFFF !important;
}


/* ==========================================================================
   FLAWLESS MOBILE RESPONSIVENESS & ZERO-OVERFLOW FOR COST CALCULATOR
   ========================================================================== */

/* Universal Page Width Safeguard */
html, body, .calc-page {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
}

.calc-page * {
    box-sizing: border-box !important;
}

/* Tablet & Mobile Screens (<= 992px) */
@media (max-width: 992px) {
    .calc-results-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
    .calc-hero {
        padding: 5.5rem 0 1.75rem !important;
        text-align: center !important;
    }

    .calc-hero .page-hero-title {
        font-size: 1.85rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.75rem !important;
    }

    .calc-hero .page-hero-subtitle {
        font-size: 0.88rem !important;
        line-height: 1.45 !important;
    }

    /* Top Header Bar */
    .calc-top-header-bar {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
        padding: 1rem 0.85rem !important;
        border-radius: 16px !important;
        margin-bottom: 1.5rem !important;
    }

    .calc-top-header-left {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }

    .calc-city-tag {
        font-size: 0.85rem !important;
    }

    .calc-change-city-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.6rem !important;
        font-size: 0.82rem !important;
    }

    /* 10 Building Types Grid */
    .calc-bldg-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    .calc-bldg-card {
        padding: 0.75rem 0.4rem !important;
        border-radius: 12px !important;
    }

    .calc-bldg-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
        margin-bottom: 0.35rem !important;
    }

    .calc-bldg-name {
        font-size: 0.78rem !important;
        line-height: 1.25 !important;
    }

    /* Parameter Controls Panel */
    .calc-param-panel {
        padding: 1.25rem 0.85rem !important;
        border-radius: 18px !important;
        margin-bottom: 1.75rem !important;
    }

    .calc-param-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .calc-param-label {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        font-size: 0.88rem !important;
    }

    .calc-area-num-input-wrap {
        padding: 3px 8px !important;
    }

    .calc-area-num-input {
        width: 65px !important;
        font-size: 1.1rem !important;
    }

    .calc-chips-row {
        flex-wrap: wrap !important;
        gap: 0.35rem !important;
        margin-top: 0.75rem !important;
    }

    .calc-chip-btn {
        padding: 4px 8px !important;
        font-size: 0.72rem !important;
    }

    /* Floor Stepper Bar */
    .calc-floor-stepper-container {
        padding: 0.85rem 0.65rem !important;
        border-radius: 14px !important;
    }

    .calc-floor-stepper-bar {
        padding: 0.45rem 0.5rem !important;
        gap: 0.4rem !important;
    }

    .calc-stepper-btn {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 0.85rem !important;
    }

    .calc-stepper-value-wrap {
        min-width: 0 !important;
        flex: 1 !important;
    }

    .calc-stepper-title {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    .calc-stepper-sub {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
        word-break: break-word !important;
    }

    .calc-floors-pills-row {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.35rem !important;
    }

    .calc-floor-pill-btn {
        flex: 1 1 calc(33.333% - 0.35rem) !important;
        padding: 6px 4px !important;
        font-size: 0.72rem !important;
        text-align: center !important;
    }

    /* Package Switcher Tabs & Cards */
    .calc-mobile-pkg-tabs {
        gap: 0.35rem !important;
        margin-bottom: 1.25rem !important;
    }

    .mobile-pkg-tab {
        padding: 0.65rem 0.35rem !important;
        font-size: 0.76rem !important;
        border-radius: 10px !important;
    }

    .calc-package-col {
        border-radius: 20px !important;
    }

    .pkg-banner-rate {
        font-size: 1.85rem !important;
    }

    .pkg-total-cost-container {
        padding: 0.85rem !important;
    }

    .pkg-total-cost-amount {
        font-size: 1.45rem !important;
    }

    .pkg-acc-trigger {
        padding: 0.65rem 0.75rem !important;
        font-size: 0.82rem !important;
    }

    .spec-bullet {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
        gap: 0.4rem !important;
    }

    /* Addons Grid */
    .calc-addons-grid {
        grid-template-columns: 1fr !important;
        gap: 0.65rem !important;
    }

    .calc-addon-box {
        padding: 0.85rem 0.75rem !important;
        border-radius: 14px !important;
    }

    .calc-addon-name {
        font-size: 0.88rem !important;
    }

    .calc-addon-desc {
        font-size: 0.75rem !important;
    }

    .calc-addon-price {
        font-size: 0.88rem !important;
    }

    /* ==========================================================================
       THE "BLACK BOX" (MASTER RESULTS SECTION & ITEMISED SUMMARY BREAKDOWN)
       ========================================================================== */
    .calc-results-section {
        padding: 1.65rem 1rem !important;
        border-radius: 20px !important;
        margin-bottom: 2rem !important;
        box-sizing: border-box !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .calc-grand-display {
        padding-bottom: 1.25rem !important;
        margin-bottom: 1.25rem !important;
        text-align: center !important;
    }

    .calc-grand-price {
        font-size: 2.15rem !important;
        line-height: 1.15 !important;
        word-break: break-word !important;
        margin-bottom: 0.35rem !important;
    }

    .calc-grand-rate-tag {
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
        word-break: break-word !important;
        color: #B2BCB7 !important;
    }

    /* Itemised Summary Breakdown Table - Zero Overflow */
    .calc-breakdown-table {
        margin-bottom: 1.5rem !important;
        width: 100% !important;
    }

    .calc-breakdown-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 0.65rem !important;
        padding: 0.55rem 0.4rem !important;
        font-size: 0.82rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .calc-breakdown-row span:first-child {
        flex: 1 1 55% !important;
        min-width: 0 !important;
        line-height: 1.35 !important;
        color: #A8B2AD !important;
        word-break: break-word !important;
    }

    .calc-breakdown-row span:last-child {
        flex: 0 0 auto !important;
        text-align: right !important;
        font-weight: 700 !important;
        color: #FFFFFF !important;
        word-break: break-word !important;
        max-width: 45% !important;
        line-height: 1.35 !important;
    }

    /* Action Buttons in Black Box */
    .calc-results-section .btn {
        width: 100% !important;
        padding: 0.85rem 1rem !important;
        font-size: 0.88rem !important;
        justify-content: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .calc-results-section div[style*="display: flex; gap: 0.75rem;"] {
        flex-direction: column !important;
        gap: 0.65rem !important;
    }

    /* Escrow Milestones */
    .calc-milestone-info {
        font-size: 0.78rem !important;
        gap: 0.35rem !important;
        flex-wrap: wrap !important;
    }

    /* Material Consumption Cards */
    .calc-mat-item {
        padding: 0.75rem 0.65rem !important;
        gap: 0.5rem !important;
    }

    .calc-mat-item-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 1rem !important;
    }

    .calc-mat-item-title {
        font-size: 0.85rem !important;
    }

    .calc-mat-item-sub {
        font-size: 0.7rem !important;
    }

    .calc-mat-qty {
        font-size: 0.92rem !important;
    }
}

/* Ultra Narrow Mobile Screens (<= 380px) */
@media (max-width: 380px) {
    .calc-grand-price {
        font-size: 1.85rem !important;
    }

    .calc-bldg-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.35rem !important;
    }

    .calc-breakdown-row {
        font-size: 0.76rem !important;
    }

    .calc-breakdown-row span:first-child {
        font-size: 0.75rem !important;
    }

    .calc-breakdown-row span:last-child {
        font-size: 0.78rem !important;
    }
}
