/* =====================================================
   TopSpec Roofing Ltd - Premium Website Styles
   Brand: Sky Blue #5CACEE + Charcoal/Slate
   Font: Montserrat
   ===================================================== */

/* CSS Custom Properties */
:root {
    /* Brand Colors - From Logo & Van */
    --blue: #5CACEE;
    --blue-light: #7DC4F5;
    --blue-dark: #4A9AD9;
    --blue-glow: rgba(92, 172, 238, 0.4);
    --blue-subtle: rgba(92, 172, 238, 0.1);

    /* Neutral Palette */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Charcoal/Slate (like van panel) */
    --charcoal: #2D3436;
    --charcoal-dark: #1E2426;
    --charcoal-light: #3D4446;
    --slate: #353B3D;

    /* Typography */
    --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Animation */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 200ms;
    --duration-base: 400ms;
    --duration-slow: 600ms;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.25);
    --shadow-blue: 0 8px 32px rgba(92, 172, 238, 0.3);
    --shadow-blue-lg: 0 16px 48px rgba(92, 172, 238, 0.4);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    /* Layout */
    --container: 1240px;
    --header-height: 90px;
}

/* =====================================================
   Reset & Base
   ===================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

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

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

strong {
    color: var(--gray-900);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* =====================================================
   Preloader
   ===================================================== */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal-dark);
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: var(--space-12);
}

.preloader-top {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.preloader-top .accent-c {
    color: var(--blue);
}

.preloader-bottom {
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.02em;
    margin-left: 1.5rem;
}

.preloader-stripe {
    position: absolute;
    width: 60px;
    height: 200px;
    background: var(--blue);
    transform: skewX(-20deg);
    opacity: 0;
    animation: preloaderStripe 2s var(--ease-out) infinite;
}

.preloader-stripe:nth-child(2) {
    right: -100px;
    top: -50px;
    animation-delay: 0.15s;
}

.preloader-stripe:nth-child(3) {
    right: -160px;
    top: -30px;
    width: 40px;
    animation-delay: 0.3s;
}

.preloader-stripe:nth-child(4) {
    right: -200px;
    top: -10px;
    width: 20px;
    animation-delay: 0.45s;
}

@keyframes preloaderStripe {
    0% { opacity: 0; transform: skewX(-20deg) translateY(20px); }
    30% { opacity: 0.8; }
    100% { opacity: 0; transform: skewX(-20deg) translateY(-20px); }
}

/* =====================================================
   Brand Stripes (Background Decorations)
   ===================================================== */

.brand-stripes {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.stripe {
    position: absolute;
    background: var(--blue);
    transform: skewX(-20deg);
    opacity: 0.03;
}

.stripe-1 {
    width: 120px;
    height: 150vh;
    top: -25vh;
    right: 5%;
}

.stripe-2 {
    width: 80px;
    height: 150vh;
    top: -25vh;
    right: 12%;
}

.stripe-3 {
    width: 40px;
    height: 150vh;
    top: -25vh;
    right: 17%;
}

/* =====================================================
   Header & Navigation
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    transition: all var(--duration-base) var(--ease-out);
}

.header.scrolled {
    height: 72px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

/* Logo */
.nav-logo,
.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    transition: transform var(--duration-fast) ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-top {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-600);
    letter-spacing: -0.02em;
    transition: color var(--duration-fast) ease;
}

/* Logo accent removed - TopSpec is all one color */

.logo-bottom {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.02em;
    margin-left: 0.75rem;
}

.logo-ltd {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gray-400);
    margin-left: var(--space-2);
    vertical-align: middle;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-600);
    position: relative;
    padding: var(--space-2) 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gray-900);
}

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

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    transition: background var(--duration-fast) ease;
}

.nav-phone:hover {
    background: var(--gray-100);
}

.phone-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-subtle);
    border-radius: var(--radius-md);
    color: var(--blue);
}

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

.phone-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phone-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.nav-cta {
    padding: var(--space-3) var(--space-6);
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) ease;
}

.nav-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: var(--space-2);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: all var(--duration-fast) ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =====================================================
   Buttons
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    transition: all var(--duration-base) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn svg {
    flex-shrink: 0;
    transition: transform var(--duration-fast) ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: 1rem;
    border-radius: var(--radius-xl);
}

/* Primary Button - Blue */
.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue-lg);
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Glass Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Outline Buttons */
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* White Button */
.btn-white {
    background: var(--white);
    color: var(--blue);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Outline White */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--blue);
    transform: translateY(-3px);
}

/* =====================================================
   Hero Section
   ===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-image {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 36, 38, 0.95) 0%,
        rgba(30, 36, 38, 0.85) 40%,
        rgba(30, 36, 38, 0.7) 100%
    );
}

/* Hero Stripes - Signature Brand Element */
.hero-stripes {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
}

.hero-stripe {
    position: absolute;
    background: var(--blue);
    transform: skewX(-20deg);
    transform-origin: top right;
}

.hero-stripe-1 {
    width: 180px;
    height: 120%;
    top: -10%;
    right: 8%;
    opacity: 0.15;
}

.hero-stripe-2 {
    width: 100px;
    height: 120%;
    top: -10%;
    right: 20%;
    opacity: 0.1;
}

.hero-stripe-3 {
    width: 50px;
    height: 120%;
    top: -10%;
    right: 28%;
    opacity: 0.05;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-16);
    align-items: center;
    padding: var(--space-20) 0;
}

/* Hero Text */
.hero-text {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-8);
}

.badge-stars {
    display: flex;
    gap: 2px;
}

.badge-stars svg {
    width: 16px;
    height: 16px;
    color: #FFB800;
}

.hero-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.hero-title {
    margin-bottom: var(--space-6);
}

.title-small {
    display: block;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-3);
}

.title-main {
    display: block;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
}

.title-accent {
    display: block;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -0.03em;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 60%;
    height: 0.12em;
    background: var(--blue);
    opacity: 0.3;
    transform: skewX(-20deg);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-8);
    max-width: 520px;
}

.hero-description strong {
    color: var(--white);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature svg {
    color: var(--blue);
}

/* Hero Stats Card */
.hero-stats {
    position: relative;
}

.stats-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.stats-card-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

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

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.counter {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-symbol {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: var(--space-2);
    line-height: 1.3;
}

.stat-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.stats-card-stripe {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 100px;
    height: 100%;
    background: var(--blue);
    transform: skewX(-20deg);
    opacity: 0.1;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.hero-scroll span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: -1px;
    width: 3px;
    height: 10px;
    background: var(--blue);
    border-radius: var(--radius-full);
    animation: scrollDown 2s var(--ease-in-out) infinite;
}

@keyframes scrollDown {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* =====================================================
   Section Styles
   ===================================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.section-title span {
    color: var(--blue);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.section-header-light .section-title {
    color: var(--white);
}

.section-header-light .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   Services Section
   ===================================================== */

.services {
    position: relative;
    padding: var(--space-32) 0;
    background: var(--charcoal);
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-stripe {
    position: absolute;
    background: var(--blue);
    transform: skewX(-20deg);
}

.services-stripe-1 {
    width: 200px;
    height: 120%;
    top: -10%;
    left: -100px;
    opacity: 0.05;
}

.services-stripe-2 {
    width: 100px;
    height: 120%;
    top: -10%;
    left: 50px;
    opacity: 0.03;
}

.services .section-title {
    color: var(--white);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) ease;
}

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

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}

.service-content {
    padding: var(--space-6);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-subtle);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--blue);
}

.service-tag {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--blue);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-3);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2) var(--space-4);
    margin-bottom: var(--space-6);
}

.service-list li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue);
}

.service-link svg {
    transition: transform var(--duration-fast) ease;
}

.service-card:hover .service-link svg {
    transform: translateX(6px);
}

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

/* =====================================================
   Why Choose Us Section
   ===================================================== */

.why-us {
    padding: var(--space-32) 0;
    background: var(--gray-50);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
}

/* Image Stack */
.image-stack {
    position: relative;
    padding: var(--space-8);
}

.image-main {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.image-stripe {
    position: absolute;
    top: 0;
    right: -30px;
    width: 80px;
    height: 100%;
    background: var(--blue);
    transform: skewX(-10deg);
    opacity: 0.9;
}

.image-secondary {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 45%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.image-secondary img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--blue);
    color: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-blue);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.9;
}

/* Why Us Content */
.why-us-content .section-label {
    text-align: left;
}

.why-us-content .section-title {
    text-align: left;
    margin-bottom: var(--space-6);
}

.why-us-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-10);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

.feature-item {
    display: flex;
    gap: var(--space-4);
}

.feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    color: var(--blue);
    box-shadow: var(--shadow-md);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* =====================================================
   Testimonials Section
   ===================================================== */

.testimonials {
    position: relative;
    padding: var(--space-32) 0;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.testimonials-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.testimonials-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--charcoal-dark);
    z-index: 1;
}

.testimonials-stripe {
    position: absolute;
    background: var(--blue);
    transform: skewX(-20deg);
    z-index: 2;
}

.testimonials-stripe-1 {
    width: 150px;
    height: 120%;
    top: -10%;
    right: 5%;
    opacity: 0.08;
}

.testimonials-stripe-2 {
    width: 80px;
    height: 120%;
    top: -10%;
    right: 15%;
    opacity: 0.05;
}

.testimonials .container {
    position: relative;
    z-index: 3;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars svg {
    width: 24px;
    height: 24px;
    color: #FFB800;
}

.rating-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: var(--space-6);
    transition: transform 0.6s var(--ease-out);
}

.testimonial-card {
    flex: 0 0 calc(50% - var(--space-3));
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.testimonial-content {
    padding: var(--space-10);
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--blue);
    opacity: 0.3;
    margin-bottom: var(--space-4);
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-8);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: var(--radius-full);
}

.author-info {
    flex: 1;
}

.author-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    font-style: normal;
}

.author-location {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.author-rating {
    display: flex;
    gap: 2px;
}

.author-rating svg {
    width: 16px;
    height: 16px;
    color: #FFB800;
}

/* Testimonials Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.testimonial-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: all var(--duration-fast) ease;
}

.testimonial-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: var(--space-2);
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.testimonials-dots .dot.active {
    width: 32px;
    background: var(--blue);
}

/* =====================================================
   CTA Section
   ===================================================== */

.cta {
    position: relative;
    padding: var(--space-32) 0;
    background: var(--blue);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-stripe {
    position: absolute;
    background: var(--white);
    transform: skewX(-20deg);
}

.cta-stripe-1 {
    width: 200px;
    height: 150%;
    top: -25%;
    left: 10%;
    opacity: 0.05;
}

.cta-stripe-2 {
    width: 120px;
    height: 150%;
    top: -25%;
    right: 20%;
    opacity: 0.08;
}

.cta-stripe-3 {
    width: 60px;
    height: 150%;
    top: -25%;
    right: 30%;
    opacity: 0.04;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-4);
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-6);
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--space-10);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-8);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* =====================================================
   Footer
   ===================================================== */

.footer {
    position: relative;
    background: var(--gray-900);
    overflow: hidden;
}

.footer-stripe {
    position: absolute;
    top: 0;
    right: 10%;
    width: 100px;
    height: 100%;
    background: var(--blue);
    transform: skewX(-20deg);
    opacity: 0.05;
}

.footer-main {
    padding: var(--space-20) 0 var(--space-16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-12);
}

.footer-logo {
    margin-bottom: var(--space-6);
}

.footer-logo .logo-top {
    color: var(--gray-400);
}

.footer-logo .logo-bottom {
    color: var(--blue);
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-lg);
    color: var(--gray-400);
    transition: all var(--duration-fast) ease;
}

.social-link:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-6);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--gray-500);
    transition: all var(--duration-fast) ease;
}

.footer-links a:hover {
    color: var(--blue);
    padding-left: var(--space-2);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.contact-list li {
    display: flex;
    gap: var(--space-4);
    font-size: 0.95rem;
    color: var(--gray-500);
}

.contact-list svg {
    flex-shrink: 0;
    color: var(--blue);
    margin-top: 2px;
}

.contact-list a:hover {
    color: var(--blue);
}

.footer-bottom {
    padding: var(--space-6) 0;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* =====================================================
   Animations
   ===================================================== */

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate="fade-left"] {
    transform: translateX(60px);
}

[data-animate="fade-right"] {
    transform: translateX(-60px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* =====================================================
   Responsive Design
   ===================================================== */

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr 350px;
        gap: var(--space-12);
    }

    .services-grid {
        gap: var(--space-6);
    }
}

@media (max-width: 1024px) {
    .nav-phone {
        display: none;
    }

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

    .hero-stats {
        display: none;
    }

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

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

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

    .service-card-featured {
        grid-row: span 1;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }

    .why-us-content .section-label,
    .why-us-content .section-title {
        text-align: center;
    }

    .why-us-description {
        text-align: center;
    }

    .image-stack {
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-10);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-8);
        padding: var(--space-8);
        box-shadow: var(--shadow-xl);
        transition: right var(--duration-base) var(--ease-out);
        z-index: 1000;
    }

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

    .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-16);
    }

    .hero-scroll {
        display: none;
    }

    .hero-stripe-1 {
        width: 100px;
    }

    .hero-stripe-2 {
        width: 60px;
    }

    .hero-stripe-3 {
        width: 30px;
    }

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

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--space-4);
    }

    .hero-actions .btn {
        width: calc(100% - var(--space-8));
        margin: 0 var(--space-4);
    }

    .hero-features {
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
        justify-content: center;
    }

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

    .cta-actions .btn {
        width: 100%;
    }

    .cta-trust {
        flex-direction: column;
        gap: var(--space-4);
    }

    .rating-summary {
        flex-direction: column;
        gap: var(--space-2);
    }
}

/* =====================================================
   Page Hero (Subpages)
   ===================================================== */

.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 36, 38, 0.95) 0%, rgba(45, 52, 54, 0.85) 100%);
}

.page-hero-stripes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--space-20) 0;
}

.page-hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blue);
    margin-bottom: var(--space-6);
    padding: var(--space-2) var(--space-4);
    background: rgba(92, 172, 238, 0.15);
    border-radius: var(--radius-full);
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.page-hero-title span {
    color: var(--blue);
}

.page-hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-300);
    line-height: 1.8;
    max-width: 600px;
}

.page-hero-scroll {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Page Hero Grid Layout */
.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-12);
    align-items: center;
    padding: var(--space-20) 0;
}

.page-hero-grid .page-hero-content {
    padding: 0;
}

.page-hero-card {
    position: relative;
    z-index: 2;
}

/* Hero Card Base */
.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    min-width: 320px;
    max-width: 380px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Testimonial Hero Card */
.hero-card-testimonial {
    position: relative;
}

.hero-card-quote {
    width: 48px;
    height: 48px;
    background: var(--blue);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.hero-card-quote svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.hero-card-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-6);
}

.hero-card-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.hero-card-avatar {
    width: 48px;
    height: 48px;
    background: var(--blue);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.hero-card-info {
    display: flex;
    flex-direction: column;
}

.hero-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.hero-card-stars {
    display: flex;
    gap: 2px;
    margin-top: var(--space-1);
}

.hero-card-stars svg {
    width: 16px;
    height: 16px;
    color: #FFD700;
}

.hero-card-badge {
    position: absolute;
    top: calc(-1 * var(--space-3));
    right: var(--space-6);
    background: var(--blue);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

/* Services Hero Card */
.hero-card-services {
    background: rgba(255, 255, 255, 0.95);
}

.hero-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--charcoal-dark);
    margin-bottom: var(--space-5);
}

.hero-card-list {
    list-style: none;
    margin-bottom: var(--space-6);
}

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
}

.hero-card-list li:last-child {
    border-bottom: none;
}

.hero-card-list svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
    flex-shrink: 0;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid var(--gray-200);
}

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

.hero-card-stat .stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}

.hero-card-stat .stat-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-card-divider {
    width: 1px;
    height: 50px;
    background: var(--gray-200);
}

/* Contact Hero Card */
.hero-card-contact {
    background: var(--blue);
    text-align: center;
}

.hero-card-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-card-cta .cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.hero-card-cta .cta-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.hero-card-cta .cta-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-1);
}

.hero-card-cta .cta-phone {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    transition: opacity var(--duration-fast) ease;
}

.hero-card-cta .cta-phone:hover {
    opacity: 0.9;
}

.hero-card-cta .cta-hours {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-2);
}

.hero-card-divider-h {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: var(--space-6) 0;
}

.hero-card-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.hero-card-features .feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.hero-card-features .feature svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Card Responsive */
@media (max-width: 1024px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .page-hero-card {
        display: flex;
        justify-content: center;
    }

    .hero-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-card {
        min-width: auto;
        padding: var(--space-6);
    }

    .hero-card-cta .cta-phone {
        font-size: 1.5rem;
    }

    .hero-card-footer {
        flex-direction: column;
        gap: var(--space-4);
    }

    .hero-card-divider {
        width: 60px;
        height: 1px;
    }
}

/* =====================================================
   About Page Styles
   ===================================================== */

.about-story {
    padding: var(--space-24) 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.story-images {
    position: relative;
}

.story-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.story-image-stripe {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 200px;
    background: var(--blue);
    transform: skewX(-12deg);
    z-index: -1;
}

.story-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.story-image-secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.story-experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--charcoal-dark);
    color: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.story-experience .exp-years {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}

.story-experience .exp-label {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: var(--space-2);
}

.story-content .section-title {
    margin-bottom: var(--space-6);
}

.story-text p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: var(--space-5);
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* About Values */
.about-values {
    position: relative;
    padding: var(--space-24) 0;
    background: var(--charcoal-dark);
    overflow: hidden;
}

.values-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.values-stripe {
    position: absolute;
    height: 600px;
    background: var(--blue);
    opacity: 0.08;
    transform: skewX(-20deg);
}

.values-stripe-1 {
    width: 300px;
    left: -100px;
    top: -100px;
}

.values-stripe-2 {
    width: 200px;
    right: 10%;
    bottom: -200px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--duration-base) var(--ease-out);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(92, 172, 238, 0.3);
    transform: translateY(-8px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-5);
    background: var(--blue-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--blue);
}

.value-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
}

.value-description {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* About Stats */
.about-stats {
    padding: var(--space-20) 0;
    background: var(--gray-50);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(7, auto);
    justify-content: center;
    align-items: center;
    gap: var(--space-10);
}

.stat-block {
    text-align: center;
    padding: var(--space-6);
}

.stat-block .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-4);
    background: var(--blue-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-block .stat-icon svg {
    width: 28px;
    height: 28px;
    color: var(--blue);
}

.stat-block .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--charcoal-dark);
    line-height: 1;
}

.stat-block .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: var(--space-2);
}

.stat-divider-vertical {
    width: 1px;
    height: 80px;
    background: var(--gray-200);
}

/* About Why */
.about-why {
    padding: var(--space-24) 0;
    background: var(--white);
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.why-feature {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: all var(--duration-base) var(--ease-out);
}

.why-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.why-feature-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue);
    opacity: 0.3;
    line-height: 1;
}

.why-feature-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    margin-bottom: var(--space-2);
}

.why-feature-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* =====================================================
   Services Page Styles
   ===================================================== */

.services-overview {
    padding: var(--space-20) 0 var(--space-10);
    background: var(--white);
}

/* Service Detail Featured */
.service-detail {
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.service-featured {
    background: var(--gray-50);
}

.service-detail-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.service-stripe {
    position: absolute;
    height: 100%;
    background: var(--blue);
    opacity: 0.05;
    transform: skewX(-20deg);
}

.service-stripe-1 {
    width: 400px;
    right: -100px;
}

.service-stripe-2 {
    width: 200px;
    right: 300px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.service-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-badge {
    position: absolute;
    top: var(--space-5);
    left: var(--space-5);
    background: var(--blue);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--blue-subtle);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
    color: var(--blue);
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--charcoal-dark);
    margin-bottom: var(--space-4);
}

.service-detail-intro {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-8);
}

.service-types h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.type-grid {
    display: grid;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.type-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    transition: all var(--duration-fast) ease;
}

.type-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
}

.type-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    margin-bottom: var(--space-2);
}

.type-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.feature-check {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
}

.feature-check svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
}

/* Services Grid Detail */
.services-grid-section {
    padding: var(--space-20) 0;
    background: var(--white);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.service-card-large {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-base) var(--ease-out);
}

.service-card-large:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.service-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.service-card-large:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

.service-card-content {
    padding: var(--space-6);
}

.service-icon-medium {
    width: 56px;
    height: 56px;
    background: var(--blue-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.service-icon-medium svg {
    width: 28px;
    height: 28px;
    color: var(--blue);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--charcoal-dark);
    margin-bottom: var(--space-3);
}

.service-card-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.service-card-list {
    list-style: none;
    margin-bottom: var(--space-5);
}

.service-card-list li {
    position: relative;
    padding-left: var(--space-5);
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--space-2);
}

.service-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 700;
    color: var(--blue);
    transition: gap var(--duration-fast) ease;
}

.service-card-link:hover {
    gap: var(--space-3);
}

/* Service Maintenance */
.service-maintenance {
    padding: var(--space-20) 0;
    background: var(--gray-50);
}

.maintenance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.maintenance-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.maintenance-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.maintenance-stripe {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 200px;
    background: var(--blue);
    transform: skewX(-12deg);
    z-index: -1;
}

.maintenance-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin: var(--space-6) 0 var(--space-8);
}

.maint-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
}

.maint-item svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
    flex-shrink: 0;
}

/* Service Areas */
.service-areas {
    position: relative;
    padding: var(--space-20) 0;
    background: var(--charcoal-dark);
    overflow: hidden;
}

.areas-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.areas-stripe {
    position: absolute;
    height: 100%;
    background: var(--blue);
    opacity: 0.08;
    transform: skewX(-20deg);
}

.areas-stripe-1 {
    width: 300px;
    left: -50px;
}

.areas-stripe-2 {
    width: 200px;
    right: 20%;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-10);
    position: relative;
    z-index: 1;
}

.area-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--duration-fast) ease;
}

.area-tag:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.areas-note {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-top: var(--space-8);
    position: relative;
    z-index: 1;
}

/* =====================================================
   Contact Page Styles
   ===================================================== */

.contact-section {
    padding: var(--space-20) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
}

.form-header {
    margin-bottom: var(--space-8);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--charcoal-dark);
    margin-bottom: var(--space-2);
}

.form-subtitle {
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
    font-family: var(--font);
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    transition: all var(--duration-fast) ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-subtle);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    padding-right: var(--space-10);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-3);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--blue);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    cursor: pointer;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: var(--space-2);
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-info-card {
    background: var(--charcoal-dark);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    color: var(--white);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-2);
}

.info-subtitle {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: background var(--duration-fast) ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-method-featured {
    background: var(--blue);
}

.contact-method-featured:hover {
    background: var(--blue-dark);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-method-featured .method-icon {
    background: rgba(255, 255, 255, 0.2);
}

.method-content {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
}

.contact-method-featured .method-label {
    color: rgba(255, 255, 255, 0.8);
}

.method-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}

.method-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: var(--space-1);
}

.contact-method-featured .method-note {
    color: rgba(255, 255, 255, 0.7);
}

.social-connect {
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-connect h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: var(--space-4);
}

.social-links-large {
    display: flex;
    gap: var(--space-3);
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    transition: background var(--duration-fast) ease;
}

.social-link-large:hover {
    background: var(--blue);
}

.social-link-large svg {
    width: 20px;
    height: 20px;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-5);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.trust-badge svg {
    width: 36px;
    height: 36px;
    color: var(--blue);
    margin-bottom: var(--space-2);
}

.trust-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-700);
}

/* Map Section */
.map-section {
    background: var(--gray-100);
}

.map-header {
    padding: var(--space-12) 0;
    text-align: center;
}

.map-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--charcoal-dark);
    margin-bottom: var(--space-2);
}

.map-subtitle {
    color: var(--gray-600);
}

.map-container {
    position: relative;
}

.map-container iframe {
    display: block;
    filter: grayscale(20%);
}

.map-overlay-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: var(--blue);
    opacity: 0.1;
    transform: skewX(-10deg) translateX(-50px);
}

/* Emergency Section */
.emergency-section {
    position: relative;
    padding: var(--space-16) 0;
    background: var(--blue);
    overflow: hidden;
}

.emergency-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.emergency-stripe {
    position: absolute;
    height: 100%;
    background: var(--white);
    opacity: 0.1;
    transform: skewX(-20deg);
}

.emergency-stripe-1 {
    width: 200px;
    left: 10%;
}

.emergency-stripe-2 {
    width: 150px;
    right: 15%;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.emergency-text {
    text-align: left;
}

.emergency-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.emergency-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.emergency-btn {
    flex-shrink: 0;
}

/* =====================================================
   Subpage Responsive
   ===================================================== */

@media (max-width: 1024px) {
    .page-hero {
        min-height: 60vh;
    }

    .story-grid,
    .service-detail-grid,
    .maintenance-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .stat-divider-vertical {
        display: none;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .maintenance-services {
        grid-template-columns: 1fr;
    }

    .story-image-main img,
    .service-image-wrapper img,
    .maintenance-image img {
        height: 350px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
    }

    .page-hero-title {
        font-size: 2rem;
    }

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

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

    .contact-form-wrapper {
        padding: var(--space-6);
    }

    .contact-info-card {
        padding: var(--space-6);
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        gap: var(--space-2);
    }

    .area-tag {
        padding: var(--space-2) var(--space-4);
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .contact-section .container {
        padding-left: var(--space-4) !important;
        padding-right: var(--space-4) !important;
    }

    .contact-grid {
        gap: var(--space-8);
        margin: 0;
    }

    .contact-form-wrapper {
        padding: var(--space-5);
        border-radius: var(--radius-xl);
        margin: 0 !important;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-info-card {
        padding: var(--space-5);
        border-radius: var(--radius-xl);
        margin: 0 !important;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .contact-section {
        overflow-x: hidden;
        width: 100%;
    }

    .contact-section .container {
        padding-left: var(--space-4) !important;
        padding-right: var(--space-4) !important;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .contact-grid {
        gap: var(--space-6);
        width: 100%;
        margin: 0;
        max-width: 100%;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .contact-form-wrapper {
        padding: var(--space-4);
        border-radius: var(--radius-lg);
        margin: 0 !important;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .form-row {
        width: 100%;
        max-width: 100%;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .contact-info-card {
        padding: var(--space-4);
        border-radius: var(--radius-lg);
        margin: 0 !important;
        width: 100%;
        box-sizing: border-box;
    }

    .form-input,
    .form-select,
    .form-textarea {
        font-size: 0.95rem;
        padding: var(--space-3);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }

    .btn-full {
        padding: var(--space-4) var(--space-6);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .story-experience {
        top: auto;
        bottom: -20px;
        left: var(--space-4);
    }

    .story-image-secondary {
        display: none;
    }

    .service-badge {
        font-size: 0.75rem;
    }

    .social-links-large {
        flex-direction: column;
    }

    .emergency-icon {
        width: 60px;
        height: 60px;
    }

    .emergency-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* =====================================================
   Print Styles
   ===================================================== */

@media print {
    .header,
    .hero-scroll,
    .preloader,
    .brand-stripes {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
}