/* ==========================================================================
   TOWINGMAUI.COM - CORE PREMIUM STYLESHEET
   Aesthetics: Sleek Charcoal/Sunset Gold Theme, Glassmorphism, Micro-Animations
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-darker: hsl(222, 20%, 6%);
    --bg-dark: hsl(222, 16%, 10%);
    --bg-card: hsl(222, 12%, 14%);
    --bg-card-hover: hsl(222, 12%, 18%);
    
    --primary: hsl(38, 95%, 55%);      /* Sunset Safety Gold */
    --primary-hover: hsl(35, 95%, 50%);
    --secondary: hsl(175, 80%, 40%);    /* Tropical Maui Ocean Teal */
    --secondary-hover: hsl(175, 80%, 35%);
    --accent: hsl(12, 90%, 55%);       /* Emergency Amber Alert Red */
    
    --text-light: hsl(0, 0%, 96%);
    --text-muted: hsl(220, 10%, 70%);
    --text-dark: hsl(222, 16%, 10%);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(245, 158, 11, 0.15);
    --glass-bg: rgba(20, 24, 33, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);

    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.2);
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border: 2px solid var(--bg-darker);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

.highlight {
    color: var(--primary);
    background: linear-gradient(120deg, var(--primary) 0%, hsl(28, 95%, 55%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-teal {
    color: var(--secondary);
    background: linear-gradient(120deg, var(--secondary) 0%, hsl(190, 85%, 45%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

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

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .section-header h2 { font-size: 2rem; }
    .section-header p { font-size: 1rem; }
}

/* ==========================================================================
   STICKY HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 12, 17, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(10, 12, 17, 0.95);
    box-shadow: var(--shadow);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-light);
}

.logo-icon {
    color: var(--primary);
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-has-submenu {
    position: relative;
}

.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    z-index: 1100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.nav-submenu li a {
    display: block;
    padding: 8px 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.nav-submenu li a:hover {
    color: var(--primary);
    background: rgba(245, 158, 11, 0.08);
}

.nav-has-submenu:hover .nav-submenu {
    display: block;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    z-index: 1001;
}

@media (max-width: 992px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-dark);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 50px 40px;
        gap: 25px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-has-submenu {
        width: 100%;
    }

    .nav-submenu {
        display: block;
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 8px;
        padding: 0 0 0 12px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-submenu li a {
        padding: 6px 0;
        font-size: 0.85rem;
    }

    .header-ctas {
        display: none; /* Controlled via mobile bar */
    }
}

/* ==========================================================================
   BUTTONS (PREMIUM MICRO-INTERACTIONS)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.975rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, hsl(28, 95%, 55%) 100%);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, hsl(28, 95%, 50%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.btn-teal {
    background: linear-gradient(135deg, var(--secondary) 0%, hsl(190, 85%, 45%) 100%);
    color: var(--text-light);
}

.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(20, 184, 166, 0.3);
}

.btn-emergency {
    background: linear-gradient(135deg, var(--accent) 0%, hsl(0, 80%, 45%) 100%);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
    animation: emergency-glow 1.5s infinite alternate;
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-darker) 35%, rgba(10, 12, 17, 0.45) 70%, rgba(10, 12, 17, 0.8) 100%);
    z-index: 1;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
    opacity: 0.55;
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: flash 1s infinite alternate;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero {
        padding-top: calc(var(--header-height) + 20px);
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero::before {
        background: linear-gradient(to bottom, rgba(10, 12, 17, 0.8) 0%, var(--bg-darker) 100%);
    }

    .hero-bg-wrapper {
        width: 100%;
        height: 50vh;
        top: 0;
        opacity: 0.35;
        mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
   INTERACTIVE MULTI-STEP QUOTE CALCULATOR / FORM
   ========================================================================== */
.quote-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.quote-header {
    margin-bottom: 24px;
}

.quote-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.quote-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.quote-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
}

.quote-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
    transform: translateY(-50%);
}

.step-indicator {
    width: 32px;
    height: 32px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-indicator.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-dark);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.step-indicator.completed {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--text-light);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-light);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.1);
}

select.form-control option {
    background: var(--bg-card);
    color: var(--text-light);
}

.grid-select {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.grid-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.grid-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--text-muted);
}

.grid-option.selected {
    background: rgba(245, 158, 11, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.1);
}

.grid-option i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.grid-option span {
    font-size: 0.875rem;
    font-weight: 600;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.calculator-result {
    text-align: center;
    padding: 20px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px dashed var(--secondary);
    border-radius: 8px;
    margin-bottom: 20px;
}

.calculator-price {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--secondary);
    margin: 8px 0;
}

/* ==========================================================================
   SERVICES SECTION (GRID & PREMIUM HOVER CARDS)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow);
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--primary);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   SERVICE AREAS SECTION (LOCAL SEO CARD GRID)
   ========================================================================== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.area-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.15);
}

.area-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(20, 184, 166, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.area-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.area-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.area-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
}

.area-link:hover {
    color: var(--text-light);
}

/* ==========================================================================
   E-E-A-T & WHY CHOOSE US
   ========================================================================== */
.eeat-section {
    position: relative;
    background-color: var(--bg-dark);
}

.eeat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eeat-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.eeat-visual img {
    border-radius: 12px;
}

.eeat-badge-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eeat-badge-overlay i {
    font-size: 2.2rem;
    color: var(--primary);
}

.eeat-badge-overlay span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.eeat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.eeat-item {
    display: flex;
    gap: 20px;
}

.eeat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.eeat-text h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.eeat-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .eeat-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    position: relative;
}

.review-stars {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.975rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   ACCORDION FAQ SECTION
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-trigger i {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.15);
}

.faq-content-inner {
    padding: 20px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-item.active {
    border-color: var(--border-glow);
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
}

/* ==========================================================================
   EMERGENCY MOBILE CALL BAR & CHANNELS
   ========================================================================== */
.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 12px 24px;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
    .mobile-call-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 70px; /* Make space for mobile bar */
    }
}

.mcb-text {
    display: flex;
    flex-direction: column;
}

.mcb-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mcb-badge span {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: flash 1s infinite alternate;
}

.mcb-phone {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
}

/* ==========================================================================
   FOOTER (SEO OPTIMIZED, LINK HUB)
   ========================================================================== */
.site-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
    padding-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 3px;
}

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

.seo-tag {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--text-muted);
}

.seo-tag:hover {
    border-color: var(--primary);
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-notice {
    font-size: 0.75rem;
    width: 100%;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 15px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes flash {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes emergency-glow {
    0% { box-shadow: 0 0 15px rgba(239, 68, 68, 0.25); }
    100% { box-shadow: 0 0 25px rgba(239, 68, 68, 0.6); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Reveal on Scroll Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* SUBPAGE SPECIFIC HERO STYLING */
.subpage-hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.05), transparent 40%), var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.subpage-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.subpage-hero p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .subpage-hero h1 { font-size: 2.2rem; }
    .subpage-hero p { font-size: 1rem; }
}

/* Subpage Grid Layouts */
.subpage-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
}

.subpage-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}

@media (max-width: 992px) {
    .subpage-layout {
        grid-template-columns: 1fr;
    }
    .subpage-sidebar {
        position: static;
    }
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.content-block p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.content-block ul, .content-block ol {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 1.025rem;
}

.content-block li {
    margin-bottom: 8px;
}

/* Sidebar Callout Card */
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.sidebar-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
