:root {
    --bg: #ffffff;
    --text: #0f172a; /* slate-900 */
    --muted: #475569; /* slate-600 */
    --accent: #779AB0; /* custom blue-gray */
    --accent-contrast: #ffffff;
    --border: #e2e8f0; /* slate-200 */
    --call-accent: #779AB0; /* custom blue-gray */
    --call-accent-contrast: #ffffff;
    --header-h: 88px; /* default header height for calc fallback */
    
    /* Modern shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
/* Performance optimizations */
* { box-sizing: border-box; }
html { 
    height: 100%; 
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body { 
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
body {
    margin: 0;
    font-family: 'Inter', 'Inter-fallback', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 0.75rem 0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    min-height: 88px;
    contain: layout style;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}
/* Make header wider than main content to increase space between left and right header content */
.site-header .nav-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}
 .nav-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    height: auto;
    min-height: 64px;
}

/* Hamburger button */
.menu-toggle {
    display: none; /* shown on mobile */
    position: relative;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.menu-toggle .bars {
    position: relative;
    width: 24px;
    height: 16px;
}
.menu-toggle .bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease, top .2s ease, bottom .2s ease;
}
.menu-toggle .bar.top { top: 0; }
.menu-toggle .bar.middle { top: 7px; }
.menu-toggle .bar.bottom { bottom: 0; }

/* Animate into an "X" when open */
.nav-bar.menu-open .menu-toggle .bar.top {
    top: 7px;
    transform: rotate(45deg);
}
.nav-bar.menu-open .menu-toggle .bar.middle {
    opacity: 0;
}
.nav-bar.menu-open .menu-toggle .bar.bottom {
    bottom: auto;
    top: 7px;
    transform: rotate(-45deg);
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.brand:hover {
    opacity: 0.8;
}

.brand-text {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

nav.primary-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    contain: layout style;
}
nav.primary-nav a {
    color: var(--text);
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all .25s ease;
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
nav.primary-nav a:not(.cta):not(.mobile-phone-button):hover {
    color: var(--accent);
    background: rgba(119, 154, 176, 0.08);
}
nav.primary-nav a[aria-current="page"] {
    color: var(--accent);
    font-weight: 600;
}
nav.primary-nav .cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #5a7a8f 100%);
    color: var(--accent-contrast);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(119, 154, 176, 0.3);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Add subtle shine effect to CTA */
nav.primary-nav .cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

/* Maintain rounded corners on keyboard focus */
nav.primary-nav .cta:focus-visible { border-radius: 10px; }
nav.primary-nav .cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(119, 154, 176, 0.4);
    background: linear-gradient(135deg, #5a7a8f 0%, #5a7a8f 100%);
}

.cta:hover::before {
    left: 100%;
}

.cta:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 25px rgba(119, 154, 176, 0.3), 0 3px 10px rgba(119, 154, 176, 0.2);
    background: linear-gradient(135deg, #5a7a8f 0%, #5a7a8f 100%);
}

/* CTA Arrow Animation */
.cta-arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    margin-left: 4px;
}

.cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* Phone CTA button - shown on desktop */
.mobile-phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    margin-left: 12px;
    background: linear-gradient(135deg, var(--call-accent) 0%, #5a7a8f 100%);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(119, 154, 176, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.mobile-phone-button::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.08 4.18 2 2 0 0 1 4.06 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.6 2.6a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.48-1.12a2 2 0 0 1 2.11-.45c.83.28 1.7.48 2.6.6A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.mobile-phone-button:hover {
    background: linear-gradient(135deg, #5a7a8f 0%, #5a7a8f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(119, 154, 176, 0.4);
}

.mobile-phone-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(119, 154, 176, 0.3);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    position: relative;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 0.7em;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 8px 0;
    backdrop-filter: blur(8px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    color: var(--muted);
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--text);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transform: none;
    box-shadow: none;
    padding-left: 24px;
}

/* Remove mobile Services overlay navigator */
@media (max-width: 720px) {
    .dropdown-menu { display: none !important; }
    .dropdown.dropdown-open .dropdown-menu { display: none !important; }
    .dropdown-toggle::after { display: none; }
}

/* Enhanced Hero Section Styling */
.hero-section {
    position: relative;
    min-height: calc(100svh - var(--header-h, 88px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
    padding: clamp(2rem, 4vw, 3rem) max(1.5rem, calc((100vw - 1200px) / 2));
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    overflow: hidden;
    contain: layout style;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(119, 154, 176, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(119, 154, 176, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    will-change: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0.75rem 1rem;
    min-height: 400px;
    contain: layout;
}

.hero-heading {
    font-size: clamp(2.25rem, 4.2vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.04em;
    max-width: clamp(32ch, 50vw, 60ch);
    background: linear-gradient(135deg, var(--text) 0%, #1e293b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    color: var(--muted);
    line-height: 1.6;
    max-width: clamp(40ch, 55vw, 65ch);
    margin: 0 0 2.5rem 0;
    font-weight: 400;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
    flex-wrap: wrap;
    min-height: 56px;
    align-items: center;
}

.cta-primary {
    background: linear-gradient(135deg, var(--call-accent) 0%, #5a7a8f 100%);
    color: var(--call-accent-contrast);
    box-shadow: 0 10px 30px rgba(119, 154, 176, 0.35), 0 4px 12px rgba(119, 154, 176, 0.25);
    padding: clamp(12px, 1.5vw, 16px) clamp(18px, 2.6vw, 28px);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-secondary {
    background: linear-gradient(135deg, var(--accent) 0%, #5a7a8f 100%);
    color: var(--accent-contrast);
    box-shadow: 0 10px 30px rgba(119, 154, 176, 0.35), 0 4px 12px rgba(119, 154, 176, 0.25);
    padding: clamp(12px, 1.5vw, 16px) clamp(18px, 2.6vw, 28px);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover {
    background: linear-gradient(135deg, #5a7a8f 0%, #5a7a8f 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(119, 154, 176, 0.45), 0 8px 20px rgba(119, 154, 176, 0.35);
}

.cta-primary:hover::before,
.cta-secondary:hover::before {
    left: 100%;
}

.cta-secondary:hover {
    background: linear-gradient(135deg, #5a7a8f 0%, #5a7a8f 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(119, 154, 176, 0.45), 0 8px 20px rgba(119, 154, 176, 0.35);
}

.cta-icon {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-right: 0.5rem;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 500/333;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a202c;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4), 0 4px 12px rgba(255, 215, 0, 0.3);
    transform: rotate(8deg);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}

.hero-badge:hover {
    transform: rotate(8deg) scale(1.05);
}


/* Enhanced Sections */
section.services-overview,
section.why-choose-us,
section.service-areas {
    padding: 5rem 0;
    position: relative;
}

section.services-overview {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

section.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(119, 154, 176, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

section.why-choose-us {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

section.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 80%, rgba(119, 154, 176, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

section.service-areas {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    color: var(--text);
    position: relative;
}

section.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(119, 154, 176, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

section.service-areas .section-title {
    color: var(--text);
    font-weight: 800;
}

.section-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

section.service-areas .section-subtitle {
    color: #475569;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--call-accent) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(119, 154, 176, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(119, 154, 176, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    transform: scale(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text);
}

.service-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-card li {
    padding: 0.25rem 0;
    color: var(--muted);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--call-accent);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--text);
    transform: translateX(4px);
}

.service-link span {
    transition: transform 0.3s ease;
}

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(119, 154, 176, 0.03) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(119, 154, 176, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.feature-item:hover::before {
    transform: scale(1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem auto;
    background: linear-gradient(135deg, var(--accent) 0%, #5a7a8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    line-height: 0; /* prevent inline SVG whitespace from affecting vertical centering */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(119, 154, 176, 0.3), 0 3px 10px rgba(119, 154, 176, 0.2);
    position: relative;
    z-index: 2;
}

.feature-icon svg {
    display: block; /* remove inline-level whitespace; helps precise centering */
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--accent) 0%, #5a7a8f 50%, var(--call-accent) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(119, 154, 176, 0.4), 0 5px 15px rgba(119, 154, 176, 0.3);
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text);
}

.feature-item p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Service Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.area-item {
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(119, 154, 176, 0.2);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.area-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(119, 154, 176, 0.2);
    color: var(--accent);
}


/* Mobile responsive behavior */
@media (max-width: 720px) {
    .nav-bar {
        flex-wrap: wrap;
        height: auto;
        padding: 16px 20px;
        margin: 8px 12px;
        gap: 16px;
        border-radius: 0px;
        box-shadow: var(--shadow-lg);
    }
    /* Show hamburger on mobile */
    .menu-toggle {
        display: inline-flex;
        margin: 8px; /* Add space between close button and top of menu */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 44px;
        padding: 8px;
        background: transparent;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }
    
    .menu-toggle:hover {
        background-color: #f1f5f9;
    }
    
    .menu-toggle .bars {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 20px;
        height: 20px;
        position: relative;
    }
    
    .menu-toggle .bar {
        width: 100%;
        height: 2px;
        background-color: var(--text);
        border-radius: 1px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }
    
    .menu-toggle .bar.top {
        top: 4px;
    }
    
    .menu-toggle .bar.middle {
        top: 9px;
    }
    
    .menu-toggle .bar.bottom {
        top: 14px;
    }
    
    /* Hamburger to X animation when menu is open */
    .nav-bar.menu-open .menu-toggle .bar.top {
        transform: rotate(45deg);
        top: 9px;
    }
    
    .nav-bar.menu-open .menu-toggle .bar.middle {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .nav-bar.menu-open .menu-toggle .bar.bottom {
        transform: rotate(-45deg);
        top: 9px;
    }

    /* Hide nav by default on mobile */
    nav.primary-nav {
        display: none;
        width: 100%;
        order: 2;
        margin-left: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 12px; /* Increased for better touch spacing */
        padding-top: 12px; /* Add breathing room at top */
        padding-bottom: 8px; /* Add breathing room at bottom */
    }
    /* Show when menu is open */
    .nav-bar.menu-open nav.primary-nav {
        display: flex;
    }

    /* Phone button in mobile menu */
    .nav-bar .mobile-phone-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 18px 24px;
        min-height: 52px;
        background: green;
        color: var(--bg);
        border: 1px solid #779AB0;
        border-radius: 0;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(119, 154, 176, 0.3), 0 3px 10px rgba(119, 154, 176, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: 8px;
        text-align: center;
        line-height: 1;
    }

    .mobile-phone-button::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.08 4.18 2 2 0 0 1 4.06 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.6 2.6a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.48-1.12a2 2 0 0 1 2.11-.45c.83.28 1.7.48 2.6.6A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
    }

    .mobile-phone-button:hover {
        background: linear-gradient(135deg, #5a7a8f 0%, #5a7a8f 100%);
        border-color: #5a7a8f;
        color: #ffffff;
        box-shadow: 0 12px 35px rgba(119, 154, 176, 0.35), 0 5px 15px rgba(119, 154, 176, 0.25);
        transform: translateY(-2px);
    }

    .mobile-phone-button:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 6px 20px rgba(119, 154, 176, 0.3);
    }

    .mobile-phone-button:focus-visible {
        outline: 3px solid rgba(255,255,255,0.6);
        outline-offset: 2px;
    }

    nav.primary-nav a:not(.mobile-phone-button) {
        padding: 18px 24px; /* Increased padding for better touch targets */
        min-height: 52px; /* Increased from 44px for better touch accessibility */
        display: flex;
        align-items: center;
        justify-content: center; /* Center alignment for consistent layout */
        flex: initial;
        min-width: 0;
        border: 1px solid rgba(226, 232, 240, 0.6);
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 12px; /* Add border radius for better visual consistency */
        font-weight: 500; /* Ensure good readability */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transitions on touch */
        text-decoration: none;
        box-shadow: var(--shadow-sm);
    }
    nav.primary-nav a:not(.mobile-phone-button):not(.cta) {
        color: var(--text);
    }

    nav.primary-nav a.cta {
        justify-content: center;
        border-radius: 0;
    }

    /* Mobile-specific hover and active states */
    nav.primary-nav a:not(.mobile-phone-button):hover {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        border-color: rgba(119, 154, 176, 0.2);
        transform: translateY(-1px); /* Subtle lift effect */
        box-shadow: var(--shadow-md);
    }

    nav.primary-nav a:not(.mobile-phone-button):active {
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        transform: translateY(0) scale(0.98);
        box-shadow: var(--shadow-sm);
    }

    nav.primary-nav a.cta {
        background: linear-gradient(135deg, var(--accent) 0%, #5a7a8f 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 600;
        letter-spacing: 0.025em;
        box-shadow: 0 8px 25px rgba(119, 154, 176, 0.3), 0 3px 10px rgba(119, 154, 176, 0.2);
    }

    nav.primary-nav a.cta:hover {
        background: linear-gradient(135deg, #5a7a8f 0%, #5a7a8f 100%);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 12px 35px rgba(119, 154, 176, 0.35), 0 5px 15px rgba(119, 154, 176, 0.25);
        transform: translateY(-2px);
    }

    nav.primary-nav a.cta:hover .cta-arrow {
        transform: translateX(3px);
    }

    nav.primary-nav a.cta:active {
        background: linear-gradient(135deg, #5a7a8f 0%, #5a7a8f 100%);
        transform: translateY(0) scale(0.98);
        box-shadow: 0 6px 20px rgba(119, 154, 176, 0.3);
    }

    .brand .title {
        font-size: clamp(1rem, 2.5vw, 1rem);
    }

    .brand img {
        height: clamp(3rem, 6vw, 3.5rem); /* Smaller logo on mobile */
        padding: 5px;
    }

    /* Mobile phone button adjustments */
    .mobile-phone-button {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 8px;
    }

    /* Mobile dropdown styles */
    .dropdown {
        display: block;
        width: 100%;
    }
    
    .dropdown-toggle::after {
        display: none; /* Hide arrow on mobile */
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: transparent;
        padding: 0;
        min-width: auto;
        margin-left: 16px;
        margin-top: 8px;
    }
    
    .dropdown-menu a {
        padding: 12px 16px;
        margin-bottom: 4px;
        border: 1px solid var(--border);
        background: #f8fafc;
        border-radius: 6px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .dropdown-menu a:hover {
        background: #f1f5f9;
        padding-left: 16px;
        transform: none;
    }
    
    /* Mobile dropdown toggle state */
    .dropdown:not(.dropdown-open) .dropdown-menu {
        display: none;
    }
    
    /* Enhanced Mobile Hero Section */
    .hero-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1.25rem;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        order: 1;
        padding: 0;
        min-height: auto;
    }

    .hero-logo {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.25rem;
        min-height: auto;
    }

    .hero-logo img,
    .hero-logo picture {
        width: auto;
    }

    .hero-heading {
        margin: 0 0 0.75rem 0;
        text-align: center;
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.2;
        background: linear-gradient(135deg, var(--text) 0%, #475569 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: initial; /* Fallback for mobile */
    }

    .hero-tagline {
        font-size: clamp(1.1rem, 4.5vw, 1.35rem);
        margin: 0 0 0.75rem 0;
    }

    .hero-subtext {
        margin: 0 0 1.25rem 0;
        text-align: center;
        font-size: clamp(0.95rem, 4vw, 1.15rem);
        line-height: 1.5;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.25rem;
    }

    .cta-primary,
    .cta-secondary {
        justify-content: center;
        width: 100%;
    }

    .hero-image-container {
        order: 0;
        margin-bottom: 1rem;
        min-height: auto;
        width: 100%;
    }

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

    .hero-badge {
        top: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    /* Mobile Services Overview */
    .services-overview,
    .why-choose-us,
    .service-areas {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .area-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
    .nav-bar {
        margin: 4px 8px;
        padding: 10px 12px;
        gap: 10px;
    }
    nav.primary-nav {
        gap: 10px; /* Proportionally smaller but still touch-friendly */
        padding-top: 10px; /* Consistent with main mobile styles */
        padding-bottom: 6px; /* Add bottom breathing room */
    }
    nav.primary-nav a:not(.mobile-phone-button) {
        padding: 14px 16px; /* Reduced but still touch-friendly */
        font-size: 0.9rem;
        min-height: 46px; /* Slightly smaller but still accessible */
        min-width: 60px;
        border-radius: 6px; /* Proportionally smaller border radius */
    }
    .brand .title {
        font-size: 0.85rem;
    }
    .brand img {
        height: 2.5rem;
    }
    
    /* Enhanced mobile hero section for small screens */
    .hero-section {
        padding: 1.25rem 1rem;
        gap: 1.25rem;
    }

    .hero-content {
        padding: 0;
    }

    .hero-logo {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-logo img,
    .hero-logo picture {
        width: auto;
    }

    .hero-heading {
        margin: 0 0 0.5rem 0;
        font-size: clamp(1.35rem, 7vw, 1.85rem);
        background: linear-gradient(135deg, var(--text) 0%, #475569 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: initial;
    }

    .hero-tagline {
        font-size: clamp(1rem, 5vw, 1.2rem);
        margin: 0 0 0.5rem 0;
    }

    .hero-subtext {
        margin: 0 0 1rem 0;
        font-size: clamp(0.9rem, 4.5vw, 1.05rem);
    }

    .hero-actions {
        margin-top: 1rem;
    }

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

    .hero-badge {
        top: 5px;
        right: 5px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    /* Compact service sections */
    .service-card,
    .feature-item {
        padding: 1rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .area-item {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    a, button, input, select {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .feature-item:hover,
    .stat-item:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
    
    /* Increase tap highlight */
    a, button {
        -webkit-tap-highlight-color: rgba(119, 154, 176, 0.2);
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 1rem;
    }
    
    .services-overview,
    .why-choose-us {
        padding: 1.5rem 0;
    }
}

/* Ensure hamburger button remains square on focus */
.menu-toggle:focus-visible { border-radius: 0; }

/* ===========================================
   FOOTER STYLES
   =========================================== */

.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #e2e8f0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(119, 154, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(119, 154, 176, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 2rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.025em;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--call-accent) 100%);
    border-radius: 1px;
}

/* Company Info Section */
.company-info {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 48px;
    width: auto;
    filter: none; /* Show original logo colors; prevents it from appearing as a white oval */
}

.footer-logo h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.025em;
}

.company-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    font-size: 0.95rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.contact-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 12px;
}

.footer-links a:hover::before {
    width: 8px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.copyright p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
}

.license-info {
    font-size: 0.8rem !important;
    color: #64748b !important;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #cbd5e1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-links a:active {
    transform: translateY(0) scale(0.95);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-logo h3 {
        font-size: 1.25rem;
    }
    
    .company-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info {
        gap: 0.75rem;
        align-items: flex-start;
    }

    .footer-section .contact-info {
        text-align: left;
    }

    .footer-section .contact-icon {
        display: none;
    }

    .contact-item {
        font-size: 0.85rem;
        align-items: center;
        justify-content: flex-start;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-legal {
        gap: 1rem;
    }
    
    .social-links {
        align-self: flex-end;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 12px;
    }
    
    .footer-main {
        gap: 2rem;
        padding: 2.5rem 0 1rem 0;
    }
    
    .footer-logo img {
        height: 36px;
    }
    
    .footer-logo h3 {
        font-size: 1.125rem;
    }
    
    .company-description {
        font-size: 0.85rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
        align-items: center;
        justify-content: flex-start;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
    
    .license-info {
        font-size: 0.75rem !important;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
}

/* Enhanced Focus states for accessibility */
.footer-links a:focus-visible,
.contact-item a:focus-visible,
.footer-legal a:focus-visible,
.social-links a:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px var(--accent);
}

/* Skip links for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
    outline: 3px solid var(--call-accent);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text: #000000;
        --bg: #ffffff;
        --border: #666666;
        --accent: #779AB0;
    }
    
    .service-card,
    .feature-item {
    border: 2px solid var(--border);
    }
}

/* Screen reader only content */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .footer-links a,
    .contact-item a,
    .footer-legal a,
    .social-links a,
    .footer-links a::before {
        transition: none;
    }
    
    .social-links a:hover {
        transform: none;
    }
}


/* =============================
   Contact Page Styles
   ============================= */
.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}

.contact-intro {
  margin: 0 0 20px 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.card-sm {
  box-shadow: var(--shadow-sm);
}

.form-card {
  padding: 20px;
}

.sidebar-card {
  padding: 16px;
}

.sidebar-note {
  margin-top: 12px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

h1.page-title {
  margin: 0 0 8px 0;
  font-size: 2.25rem;
  line-height: 1.2;
}

h2.sidebar-title {
  margin: 0 0 8px 0;
  font-size: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Form group styling handled by form-control */

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

.form-control,
select.form-control,
textarea.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
}

textarea.form-control {
  resize: vertical;
}

.form-row-span {
  grid-column: 1 / -1;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.actions-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.actions-row .cta {
  border-radius: 10px;
}

.actions-row .cta.call {
  background: linear-gradient(135deg, var(--call-accent) 0%, #5a7a8f 100%);
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container-narrow { padding: 32px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  h1.page-title { font-size: 1.875rem; }
}


/* Generic CTA button for use outside the nav */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent) 100%);
  color: var(--accent-contrast);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  box-shadow: 0 8px 25px rgba(119, 154, 176, 0.3), 0 3px 10px rgba(119, 154, 176, 0.2);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

/* Call-specific variant */
.cta.call {
  background: var(--call-accent);
  color: var(--call-accent-contrast);
  box-shadow: 0 8px 25px rgba(119, 154, 176, 0.3), 0 3px 10px rgba(119, 154, 176, 0.2);
}

/* Align checkbox nicely in consent row */
.checkbox-row input[type="checkbox"] { margin-top: 4px; }

/* Scroll lock when mobile menu is open */
html.no-scroll, body.no-scroll {
  overflow: hidden !important;
  height: 100%;
}

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

/* About page content grid */
.about-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

/* About text content styling handled by individual elements */

.about-title {
  margin-top: 0;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  line-height: 1.2;
}

.about-text-muted {
  color: var(--muted);
  margin: 0 0 16px 0;
}

.about-subtitle {
  margin-top: 28px;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.about-list {
  color: var(--muted);
  padding-left: 18px;
  line-height: 1.8;
  margin: 0 0 24px 0;
}

.about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.about-actions .cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-actions .phone-link {
  display: inline-flex;
  align-items: center;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  background: #f8fafc;
}

/* About features grid */
.about-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-feature-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.about-feature-card h4 {
  margin: 0 0 6px 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.about-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Additional About page alignment cleanups */
.about-feature-card { text-align: left; }

/* Generic breadcrumb styling (used on About) */
nav[aria-label="Breadcrumb"] {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 16px;
}

/* Mobile responsive styles for about page */
@media (max-width: 768px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-image {
    order: -1; /* Show image first on mobile */
  }
  
  .about-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 16px;
  }
  
  .about-text-muted {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .about-subtitle {
    font-size: 1.125rem;
    margin-top: 24px;
  }
  
  .about-list {
    font-size: 0.95rem;
    padding-left: 16px;
  }
  
  .about-actions {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }
  
  .about-actions .cta,
  .about-actions .phone-link {
    justify-content: center;
    padding: 16px 24px;
    min-height: 52px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  
  .about-feature-card {
    padding: 16px;
  }
  
  .about-feature-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .about-feature-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-content-grid {
    gap: 20px;
  }
  
  .about-title {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }
  
  .about-text-muted {
    font-size: 0.9rem;
  }
  
  .about-subtitle {
    font-size: 1rem;
    margin-top: 20px;
  }
  
  .about-list {
    font-size: 0.9rem;
    padding-left: 14px;
  }
  
  .about-actions {
    gap: 12px;
    margin-top: 24px;
  }
  
  .about-actions .cta,
  .about-actions .phone-link {
    padding: 14px 20px;
    min-height: 48px;
    font-size: 0.9rem;
  }
  
  .about-features {
    gap: 12px;
    margin-top: 24px;
  }
  
  .about-feature-card {
    padding: 14px;
  }
  
  .about-feature-card h4 {
    font-size: 0.95rem;
  }
  
  .about-feature-card p {
    font-size: 0.85rem;
  }
}


/* Footer column differentiators: simple dividers, no blue background */
/* Divider between 1st and 2nd (apply to 2nd column) */
.footer-main .footer-section.services {
    border-left: 1px solid rgba(226, 232, 240, 0.12);
    padding-left: 1rem;
}

/* Divider between 2nd and 3rd (apply to 3rd column) */
.footer-main .footer-section.service-areas {
    background: transparent !important;
    border-left: 1px solid rgba(226, 232, 240, 0.12);
    padding-left: 1rem;
}

/* Divider between 3rd and 4th (apply to 4th column) */
.footer-main .footer-section.quick-links {
    border-left: 1px solid rgba(226, 232, 240, 0.12);
    padding-left: 1rem;
}

/* Remove dividers on small screens when columns stack */
@media (max-width: 768px) {
    .footer-main .footer-section.services,
    .footer-main .footer-section.service-areas,
    .footer-main .footer-section.quick-links {
        border-left: none;
        padding-left: 0;
    }
}


/* Page Hero spacing for inner pages (e.g., About page) */
main.hero {
    /* Padding is handled by inline styles in about.html */
    margin-top: 0;
}
@media (max-width: 720px) {
    main.hero {
        margin-top: 0;
    }
}


/* Inner page hero typography (e.g., About page) */
main.hero .hero-heading {
    /* Smaller than homepage hero for better balance on inner pages */
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem 0;
    /* Override homepage gradient text styling */
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: var(--text);
}
main.hero .hero-subtext {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
}
/* Constrain inner-page hero container (e.g., About) and keep left alignment */
main.hero.container {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
@media (max-width: 720px) {
    main.hero .hero-heading {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.25;
        margin-bottom: 0.5rem;
    }
    main.hero .hero-subtext {
        font-size: clamp(0.95rem, 4vw, 1.05rem);
        line-height: 1.5;
    }
}

/* ===========================================
   SERVICES PAGE STYLES
   =========================================== */

/* Services Main Layout */
.services-main {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    min-height: 100vh;
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--accent) 0%, #5a7a8f 50%, #5a7a8f 100%);
    color: white;
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    margin: 0 0 3rem 0;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Sections */
.service-section {
    padding: 4rem 0;
    position: relative;
}

.furnace-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.ac-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.heat-pump-section {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.air-quality-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(119, 154, 176, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(119, 154, 176, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .separator {
    color: var(--border);
}

.breadcrumb .current {
    color: var(--text);
    font-weight: 500;
}

/* Service Content Layout */
.service-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Service Header */
.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.service-icon-large {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--accent) 0%, #5a7a8f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(119, 154, 176, 0.2));
    animation: float 3s ease-in-out infinite;
}

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

.service-title-group {
    flex: 1;
}

.service-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.25rem 0;
    color: var(--text);
    letter-spacing: -0.02em;
}

.service-location {
    font-size: 1.125rem;
    color: var(--muted);
    margin: 0;
    font-weight: 500;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--call-accent) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(119, 154, 176, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card .feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--muted);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--call-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Service Actions */
.service-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--call-accent) 0%, #5a7a8f 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(119, 154, 176, 0.35), 0 4px 12px rgba(119, 154, 176, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.primary-cta:hover {
    background: linear-gradient(135deg, #5a7a8f 0%, #5a7a8f 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(119, 154, 176, 0.4), 0 8px 20px rgba(119, 154, 176, 0.3);
}

.primary-cta:hover::before {
    left: 100%;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.primary-cta:hover .cta-arrow {
    transform: translateX(4px);
}

.service-actions .contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--muted);
}

.service-actions .contact-info .contact-text {
    white-space: nowrap;
}

.service-actions .contact-info .phone-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: inline;
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    margin: 0;
}

.service-actions .contact-info .phone-link::before {
    display: none;
}

.service-actions .contact-info .phone-link:hover {
    color: var(--text);
    text-decoration: underline;
    transform: none;
    background: transparent;
    box-shadow: none;
}

/* Service Visual */
.service-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge-icon {
    font-size: 1rem;
}

.service-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.area-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Mobile Responsive Styles for Services Page */
@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0 3rem 0;
    }
    
    .page-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .page-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .service-section {
        padding: 3rem 0;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
    
    .service-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .service-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1rem;
    }
    
    .primary-cta {
        justify-content: center;
        width: 100%;
    }
    
    .service-actions .contact-info {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 3rem 0 2rem 0;
    }
    
    .service-section {
        padding: 2rem 0;
    }
    
    .service-content {
        gap: 1.5rem;
    }
    
    .service-header {
        gap: 0.75rem;
    }
    
    .service-icon-large {
        font-size: 2.5rem;
    }
    
    .service-features {
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.125rem;
    }
    
    .service-area {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

/* Touch-friendly improvements for services page */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .primary-cta:hover,
    .image-container:hover {
        transform: none;
    }
    
    .feature-card:active {
        transform: scale(0.98);
    }
    
    .primary-cta:active {
        transform: scale(0.98);
    }
}


/* Services Hero badges (no fake stats) */
.page-hero .hero-badges {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0 0;
}
.page-hero .badge-pill {
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    border: 1px solid rgba(226, 232, 240, 0.6);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) {
    .page-hero .badge-pill { font-size: 0.85rem; }
}


/* Services page: remove icons and refine spacing */
.services-main .service-icon-large,
.services-main .feature-icon {
    display: none !important;
}

.services-main .service-header {
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.services-main .service-title {
    margin-bottom: 0.25rem;
}

.services-main .service-features {
    gap: 1.75rem;
}
