/* ==========================================================================
   ProCraft Home Improvements - Warm, Crafted Design
   Glassmorphism + warmth + conversion-focused
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   ENHANCEMENT 1: Hero Parallax & Motion
   -------------------------------------------------------------------------- */
.hero-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: translateZ(0);
    will-change: transform;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content-enhanced {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 1.5rem;
}

/* Staggered entrance animations */
.hero-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards;
}

.hero-animate:nth-child(1) { animation-delay: 0.1s; }
.hero-animate:nth-child(2) { animation-delay: 0.25s; }
.hero-animate:nth-child(3) { animation-delay: 0.4s; }
.hero-animate:nth-child(4) { animation-delay: 0.55s; }
.hero-animate:nth-child(5) { animation-delay: 0.7s; }

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating badge animation */
.hero-badge-float {
    animation: badgeFloat 3s ease-in-out infinite;
}

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

/* --------------------------------------------------------------------------
   ENHANCEMENT 2: Animated Stat Counters
   -------------------------------------------------------------------------- */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: statsGlow 10s linear infinite;
}

@keyframes statsGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-card {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number.counting {
    animation: statPulse 0.1s ease;
}

@keyframes statPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Stat card hover effect */
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(-50%);
}

.stat-card:hover::after {
    width: 60%;
}

/* --------------------------------------------------------------------------
   ENHANCEMENT 3: Testimonial Cards with Scroll Reveals
   -------------------------------------------------------------------------- */
.testimonial-card {
    position: relative;
    background: var(--card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px) rotateX(10deg);
}

.testimonial-card.revealed {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Quote mark decoration */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--stone-200);
    pointer-events: none;
    transition: color 0.3s ease;
}

.testimonial-card:hover::before {
    color: rgba(0, 87, 183, 0.1);
}

/* Avatar with ring effect */
.testimonial-avatar {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar::before {
    opacity: 1;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    border: 3px solid white;
}

/* Verified badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 500;
    margin-top: 0.25rem;
}

.verified-badge i {
    font-size: 0.875rem;
}

/* Star rating animation */
.stars-animated i {
    display: inline-block;
    animation: starPop 0.4s ease backwards;
}

.stars-animated i:nth-child(1) { animation-delay: 0.1s; }
.stars-animated i:nth-child(2) { animation-delay: 0.15s; }
.stars-animated i:nth-child(3) { animation-delay: 0.2s; }
.stars-animated i:nth-child(4) { animation-delay: 0.25s; }
.stars-animated i:nth-child(5) { animation-delay: 0.3s; }

@keyframes starPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); opacity: 1; }
}

/* --------------------------------------------------------------------------
   ENHANCEMENT 4: Contact Form Premium UX
   -------------------------------------------------------------------------- */
.form-enhanced {
    position: relative;
}

.form-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 0%;
}

.form-group-enhanced {
    position: relative;
}

.form-group-enhanced input,
.form-group-enhanced textarea,
.form-group-enhanced select {
    transition: all 0.3s ease;
}

.form-group-enhanced.valid input,
.form-group-enhanced.valid textarea,
.form-group-enhanced.valid select {
    border-color: #10b981;
    background-color: rgba(16, 185, 129, 0.02);
}

.form-group-enhanced.invalid input,
.form-group-enhanced.invalid textarea,
.form-group-enhanced.invalid select {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.02);
}

/* Validation icon */
.validation-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.form-group-enhanced.valid .validation-icon {
    opacity: 1;
    color: #10b981;
}

.form-group-enhanced.invalid .validation-icon {
    opacity: 1;
    color: #ef4444;
}

/* Submit button states */
.btn-submit-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-submit-enhanced .btn-text {
    transition: transform 0.3s ease;
}

.btn-submit-enhanced .btn-icon {
    position: absolute;
    right: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.btn-submit-enhanced:hover .btn-icon,
.btn-submit-enhanced.ready .btn-icon {
    opacity: 1;
    transform: translateX(0);
}

.btn-submit-enhanced.ready {
    background: linear-gradient(135deg, var(--accent) 0%, #10b981 100%);
}

/* Success animation */
@keyframes formSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.form-success {
    animation: formSuccess 0.5s ease;
}

/* --------------------------------------------------------------------------
   ENHANCEMENT 5: Values Section Animations
   -------------------------------------------------------------------------- */
.value-card {
    position: relative;
    background: var(--card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(30px);
}

.value-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.value-card:nth-child(1) { transition-delay: 0.05s; }
.value-card:nth-child(2) { transition-delay: 0.1s; }
.value-card:nth-child(3) { transition-delay: 0.15s; }
.value-card:nth-child(4) { transition-delay: 0.2s; }
.value-card:nth-child(5) { transition-delay: 0.25s; }
.value-card:nth-child(6) { transition-delay: 0.3s; }

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Icon container with animation */
.value-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 87, 183, 0.1) 0%, rgba(0, 87, 183, 0.05) 100%);
    border-radius: var(--radius);
    margin-bottom: var(--space-5);
    color: var(--accent);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(0, 87, 183, 0.3);
}

/* Gradient text on hover */
.value-card h3 {
    transition: all 0.3s ease;
}

.value-card:hover h3 {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --------------------------------------------------------------------------
   ENHANCEMENT 6: Background Treatments
   -------------------------------------------------------------------------- */

/* Animated gradient background */
.bg-gradient-animated {
    background: linear-gradient(-45deg, #f5f5f4, #e7e5e4, #fafaf9, #f5f5f4);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Section divider with wave */
.section-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Decorative floating elements */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 87, 183, 0.08) 0%, transparent 70%);
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 87, 183, 0.06) 0%, transparent 70%);
    bottom: 20%;
    left: -3%;
    animation-delay: -5s;
}

.floating-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -20px) rotate(5deg); }
    50% { transform: translate(-5px, 10px) rotate(-5deg); }
    75% { transform: translate(-15px, -10px) rotate(3deg); }
}

/* Noise texture overlay */
.noise-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   ENHANCEMENT 7: Navigation Polish
   -------------------------------------------------------------------------- */

/* Nav link underline indicator */
.nav-link-enhanced {
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(-50%);
}

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

/* Logo hover effect */
.logo-enhanced {
    transition: all 0.3s ease;
}

.logo-enhanced:hover {
    transform: scale(1.02);
    text-shadow: 0 2px 10px rgba(255,255,255,0.3);
}

/* Mobile menu refined animations */
.mobile-nav-enhanced {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-enhanced.active {
    transform: translateX(0);
}

.mobile-nav-item {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-nav-enhanced.active .mobile-nav-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-enhanced.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-enhanced.active .mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-enhanced.active .mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-enhanced.active .mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-enhanced.active .mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }

/* Desktop dropdown menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    pointer-events: none;
    padding-top: 0.5rem; /* Creates hover bridge instead of margin */
}

/* Invisible bridge to maintain hover when moving to dropdown */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}

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

.nav-dropdown:hover .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-item {
    font-size: 0.9rem;
}

.dropdown-item:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

/* Scrolled header dropdown adjustments */
.header-scrolled .nav-dropdown-menu {
    background: white;
}

/* Mobile nav accordion */
.mobile-nav-accordion-trigger i {
    transition: transform 0.2s ease;
}

.mobile-nav-accordion.active .mobile-nav-accordion-trigger i {
    transform: rotate(180deg);
}

.mobile-nav-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-accordion.active .mobile-nav-accordion-content {
    display: block;
    max-height: 500px;
}

/* Header scroll states */
.header-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-scrolled .nav-link-enhanced {
    color: var(--foreground);
}

.header-scrolled .logo-enhanced {
    color: var(--foreground);
}

/* Scroll reveal utility */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-animate,
    .hero-badge-float,
    .floating-shape,
    .stat-number.counting,
    .testimonial-card,
    .value-card,
    .stars-animated i,
    .scroll-reveal {
        animation: none !important;
        transition: opacity 0.3s ease !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .bg-gradient-animated {
        animation: none;
    }
}
:root {
    /* Warm neutrals */
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;

    /* Primary - Ukrainian blue (trust, reliability, professionalism) */
    --accent: #0057B7;
    --accent-light: #3b82f6;
    --accent-dark: #003d82;

    /* Secondary accent - Ukrainian yellow (used sparingly) */
    --warm: #FFD700;
    --warm-light: #FFDD00;

    /* Core tokens */
    --background: #fafaf9;
    --foreground: #1c1917;
    --card: rgba(255, 255, 255, 0.7);
    --card-solid: #ffffff;
    --muted: #f5f5f4;
    --muted-foreground: #78716c;
    --border: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(0, 0, 0, 0.12);

    /* Glass effect */
    --glass: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

    /* Typography - Modern pairing */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.75rem;
    --text-5xl: 3.5rem;

    /* Spacing */
    --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;

    /* Layout */
    --container-max: 1200px;

    /* Radii */
    --radius-sm: 0.5rem;
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Transitions */
    --transition: 200ms ease;
    --transition-slow: 400ms ease;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Typography - clean and modern */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--foreground);
}

h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

@media (min-width: 768px) {
    h1 { font-size: var(--text-5xl); }
    h2 { font-size: var(--text-4xl); }
}

p {
    color: var(--muted-foreground);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--space-5);
    padding-right: var(--space-5);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--space-8);
        padding-right: var(--space-8);
    }
}

section {
    padding: var(--space-16) 0;
}

@media (min-width: 768px) {
    section {
        padding: var(--space-20) 0;
    }
}

/* --------------------------------------------------------------------------
   Top Bar - warm, inviting
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--accent-dark);
    color: white;
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
}

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

.top-bar .service-area {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    opacity: 0.9;
}

.top-bar .phone-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: white;
    font-weight: 600;
    transition: opacity var(--transition);
}

.top-bar .phone-link:hover {
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Header - glass effect
   -------------------------------------------------------------------------- */
.main-header {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    gap: var(--space-4);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-xl);
    color: var(--foreground);
}

.logo-icon {
    color: var(--accent);
}

.logo-text {
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: inline;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: var(--foreground);
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--foreground);
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Navigation */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--card-solid);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    list-style: none;
    padding: var(--space-20) var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    transition: right 0.3s ease;
    z-index: 100;
}

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

.nav-menu li a {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--muted-foreground);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--foreground);
    background-color: var(--muted);
}

.nav-menu .nav-cta {
    margin-top: var(--space-4);
    color: white !important;
    background-color: var(--accent);
}

.nav-menu .nav-cta:hover {
    color: white !important;
    background-color: var(--accent-dark) !important;
}

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: var(--space-1);
    }

    .nav-menu li a {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-base);
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        background-color: transparent;
        color: var(--accent);
    }

    .nav-menu .nav-cta {
        margin-top: 0;
        margin-left: var(--space-4);
    }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    height: 44px;
    padding: 0 var(--space-6);
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 87, 183, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    box-shadow: 0 4px 12px rgba(0, 87, 183, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--stone-800);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--stone-900);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border: 2px solid var(--border-strong);
}

.btn-outline:hover {
    border-color: var(--foreground);
    background-color: var(--foreground);
    color: white;
}

.btn-glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    color: var(--foreground);
    border: 1px solid var(--glass-border);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.8);
}

.btn-lg {
    height: 52px;
    padding: 0 var(--space-8);
    font-size: var(--text-base);
    border-radius: var(--radius-lg);
}

.btn-white {
    background-color: white;
    color: var(--stone-900);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-white:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Hero - Warm, asymmetric, inviting
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--stone-100) 0%, var(--stone-200) 100%);
    padding: var(--space-12) 0 var(--space-16);
    overflow: hidden;
}

/* Decorative elements */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 87, 183, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--accent);
    border: 1px solid var(--glass-border);
    margin-bottom: var(--space-6);
}

.hero h1 {
    margin-bottom: var(--space-5);
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--stone-600);
    margin-bottom: var(--space-8);
    line-height: 1.7;
    max-width: 520px;
}

.hero-buttons {
    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);
}

.hero-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: var(--radius);
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.hero-feature-text {
    font-size: var(--text-sm);
    color: var(--stone-500);
}

.hero-feature-text strong {
    display: block;
    font-size: var(--text-base);
    color: var(--foreground);
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero {
        padding: var(--space-20) 0 var(--space-24);
    }

    .hero-subtitle {
        font-size: var(--text-xl);
    }
}

/* --------------------------------------------------------------------------
   Section Headers - left-aligned option
   -------------------------------------------------------------------------- */
.section-header {
    margin-bottom: var(--space-12);
}

.section-header.centered {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--space-4);
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background-color: var(--accent);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--space-4);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: var(--text-lg);
    line-height: 1.7;
    max-width: 540px;
}

.section-header.centered p {
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   Service Cards - Crafted hover effects
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    display: block;
    position: relative;
    background: var(--card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

/* Accent bar - slides in from left */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Subtle blueprint pattern on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 87, 183, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 183, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 87, 183, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 87, 183, 0.15);
}

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

.service-card:hover::after {
    opacity: 1;
}

/* Icon container with animated background */
.service-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--stone-100) 0%, var(--stone-200) 100%);
    border-radius: var(--radius);
    margin-bottom: var(--space-5);
    color: var(--accent);
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.3s ease,
        box-shadow 0.3s ease;
    z-index: 1;
}

/* Icon glow ring */
.service-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: calc(var(--radius) + 3px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-3deg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 87, 183, 0.3);
}

.service-card:hover .service-icon::before {
    opacity: 0.15;
}

/* Title with underline animation */
.service-card h3 {
    position: relative;
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
    transition: color 0.3s ease;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover h3 {
    color: var(--accent);
}

.service-card:hover h3::after {
    width: 60%;
}

.service-card p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-5);
    line-height: 1.7;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover p {
    color: var(--stone-600);
}

/* Learn more link with arrow animation */
.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent);
    position: relative;
    z-index: 1;
    transition: gap 0.3s ease;
}

.service-card .learn-more i,
.service-card .learn-more svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.service-card:hover .learn-more i,
.service-card:hover .learn-more svg {
    transform: translateX(6px);
}

/* Staggered animation on page load */
@keyframes serviceCardEnter {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: serviceCardEnter 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-card::before,
    .service-card::after,
    .service-icon,
    .service-icon::before,
    .service-card h3::after,
    .service-card .learn-more i,
    .service-card .learn-more svg {
        animation: none;
        transition: none;
    }
}

/* --------------------------------------------------------------------------
   Trust Section - Split layout
   -------------------------------------------------------------------------- */
.trust-section {
    background-color: var(--card-solid);
}

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

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
        align-items: center;
    }
}

.trust-content .section-eyebrow {
    margin-bottom: var(--space-4);
}

.trust-content h2 {
    margin-bottom: var(--space-5);
}

.trust-content > p {
    font-size: var(--text-base);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

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

.trust-feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 87, 183, 0.25);
}

.trust-feature h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.trust-feature p {
    font-size: var(--text-sm);
    line-height: 1.6;
}

.trust-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--stone-200) 0%, var(--stone-300) 100%);
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Glass stats overlay */
.trust-stats {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    right: var(--space-4);
    display: flex;
    gap: var(--space-3);
}

.trust-stat {
    flex: 1;
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--space-4);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--glass-border);
}

.trust-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--foreground);
}

.trust-stat-label {
    font-size: var(--text-xs);
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    position: relative;
}

/* Quote decoration */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    right: var(--space-5);
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--stone-200);
    pointer-events: none;
}

.testimonial-card .stars {
    color: var(--warm);
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: var(--text-base);
    color: var(--foreground);
    margin-bottom: var(--space-5);
    line-height: 1.7;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 600;
}

.testimonial-info strong {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
}

.testimonial-info span {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--stone-800) 0%, var(--stone-900) 100%);
    color: white;
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='%23ffffff' fill-opacity='0.03'%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;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--space-4);
}

.cta-content p {
    color: var(--stone-400);
    margin-bottom: var(--space-8);
    font-size: var(--text-lg);
}

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

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.contact-section {
    background-color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-12);
    }
}

.contact-form-card {
    background: var(--card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.contact-form-card h3 {
    margin-bottom: var(--space-6);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 48px;
    padding: 0 var(--space-4);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background-color: var(--background);
    color: var(--foreground);
    font-size: var(--text-base);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.1);
}

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

.form-group textarea {
    height: auto;
    min-height: 120px;
    padding: var(--space-4);
    resize: vertical;
}

.form-group .required {
    color: #ef4444;
}

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

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-sidebar h3 {
    margin-bottom: var(--space-6);
}

.contact-info-item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 87, 183, 0.25);
}

.contact-info-item h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.contact-info-item p,
.contact-info-item a {
    font-size: var(--text-base);
    color: var(--muted-foreground);
}

.contact-info-item a:hover {
    color: var(--accent);
}

.business-hours {
    margin-top: var(--space-8);
    padding: var(--space-6);
    background: var(--card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.business-hours h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border);
    font-size: var(--text-sm);
}

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--stone-900);
    color: var(--stone-400);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-section h3 {
    font-family: var(--font-display);
    color: white;
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.footer-section h4 {
    color: white;
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
}

.footer-section p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--stone-400);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.trust-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-3);
    background-color: var(--stone-800);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--stone-300);
}

.contact-info {
    font-style: normal;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
}

.contact-info a {
    color: var(--stone-400);
}

.contact-info a:hover {
    color: white;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--stone-800);
    border-radius: var(--radius-sm);
    color: var(--stone-400);
    transition: all var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    color: white;
}

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

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--stone-600);
    margin-bottom: var(--space-2);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }

.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;
}

/* --------------------------------------------------------------------------
   Alerts
   -------------------------------------------------------------------------- */
.alert {
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius);
    margin-bottom: var(--space-6);
    font-size: var(--text-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.alert-success {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.alert-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* --------------------------------------------------------------------------
   Page-specific
   -------------------------------------------------------------------------- */
.about-hero {
    background: linear-gradient(135deg, var(--stone-100) 0%, var(--stone-200) 100%);
    padding: var(--space-12) 0;
}

.service-detail {
    padding: var(--space-12) 0;
}

.service-detail:nth-child(even) {
    background-color: var(--muted);
}

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

@media (min-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-detail:nth-child(even) .service-detail-content {
        order: 2;
    }
}

.service-detail-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--stone-200) 0%, var(--stone-300) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

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

/* ==========================================================================
   SERVICES PAGE - Editorial Redesign
   ========================================================================== */

/* --------------------------------------------------------------------------
   Services Hero - Editorial Style with Blueprint Pattern
   -------------------------------------------------------------------------- */
.services-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.blueprint-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 87, 183, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 183, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 87, 183, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.services-hero-content {
    max-width: 800px;
}

.services-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s ease forwards;
}

.services-hero-badge i {
    font-size: 1.125rem;
}

.services-hero-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--stone-900);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s ease 0.15s forwards;
}

.services-hero-title span {
    color: var(--accent);
}

.services-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--stone-600);
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s ease 0.3s forwards;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   Service Sections - Enhanced Cards
   -------------------------------------------------------------------------- */
.service-section {
    position: relative;
}

.service-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-content.revealed {
    opacity: 1;
    transform: translateX(0);
}

.service-badge {
    display: inline-block;
    background: rgba(0, 87, 183, 0.1);
    color: var(--accent);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.025em;
}

.service-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--stone-900);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--stone-600);
    margin-bottom: 2rem;
}

.service-list-heading {
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Service Checklist - Staggered Animations
   -------------------------------------------------------------------------- */
.service-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--stone-600);
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.service-content.revealed .checklist-item {
    opacity: 1;
    transform: translateX(0);
}

.service-content.revealed .checklist-item:nth-child(1) { transition-delay: 0.1s; }
.service-content.revealed .checklist-item:nth-child(2) { transition-delay: 0.15s; }
.service-content.revealed .checklist-item:nth-child(3) { transition-delay: 0.2s; }
.service-content.revealed .checklist-item:nth-child(4) { transition-delay: 0.25s; }
.service-content.revealed .checklist-item:nth-child(5) { transition-delay: 0.3s; }
.service-content.revealed .checklist-item:nth-child(6) { transition-delay: 0.35s; }

.checklist-item i {
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* --------------------------------------------------------------------------
   Service CTA Button
   -------------------------------------------------------------------------- */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 87, 183, 0.3);
}

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

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

/* --------------------------------------------------------------------------
   Service Images - Hover Effects
   -------------------------------------------------------------------------- */
.service-image-wrapper {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-image-wrapper.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Reverse direction for alternating sections */
.order-2.service-image-wrapper,
.lg\:order-1.service-image-wrapper {
    transform: translateX(-30px);
}

.order-2.service-image-wrapper.revealed,
.lg\:order-1.service-image-wrapper.revealed {
    transform: translateX(0);
}

.service-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/3;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 87, 183, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-image:hover .service-image-overlay {
    opacity: 1;
}

.service-image-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.service-image:hover .service-image-overlay span {
    transform: translateY(0);
}

.service-image-overlay i {
    font-size: 1.25rem;
}

/* --------------------------------------------------------------------------
   Process Section - Timeline Design
   -------------------------------------------------------------------------- */
.process-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.process-badge {
    display: inline-block;
    background: rgba(0, 87, 183, 0.1);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 3rem;
}

.process-line {
    position: absolute;
    top: 5.5rem;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 87, 183, 0.2) 100%);
    border-radius: 2px;
}

.process-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: lineGrow 2s ease forwards;
    animation-play-state: paused;
}

.process-section.animated .process-line::before {
    animation-play-state: running;
}

@keyframes lineGrow {
    to {
        width: 100%;
    }
}

.process-step {
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-step.revealed {
    opacity: 1;
    transform: translateY(0);
}

.process-step[data-step="1"].revealed { transition-delay: 0.1s; }
.process-step[data-step="2"].revealed { transition-delay: 0.3s; }
.process-step[data-step="3"].revealed { transition-delay: 0.5s; }
.process-step[data-step="4"].revealed { transition-delay: 0.7s; }

.process-icon {
    width: 5rem;
    height: 5rem;
    background: white;
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 87, 183, 0.15);
}

.process-icon i {
    font-size: 1.75rem;
    color: var(--accent);
    transition: all 0.4s ease;
}

.process-step:hover .process-icon {
    background: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 87, 183, 0.3);
}

.process-step:hover .process-icon i {
    color: white;
}

.process-content h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--stone-900);
    margin-bottom: 0.75rem;
}

.process-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--stone-600);
    max-width: 240px;
    margin: 0 auto;
}

/* Process Timeline - Responsive */
@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .process-line {
        display: none;
    }
}

@media (max-width: 640px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-step {
        display: flex;
        text-align: left;
        gap: 1.5rem;
    }

    .process-icon {
        flex-shrink: 0;
        margin: 0;
        width: 4rem;
        height: 4rem;
    }

    .process-icon i {
        font-size: 1.5rem;
    }

    .process-content {
        flex: 1;
    }

    .process-content p {
        max-width: none;
        margin: 0;
    }
}

/* Services Hero - Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 8rem 0 4rem;
    }

    .services-hero-title {
        font-size: 2.5rem;
    }

    .services-hero-subtitle {
        font-size: 1.125rem;
    }
}

/* ==========================================================================
   INDIVIDUAL SERVICE PAGES - Detail Pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   Service Detail Hero
   -------------------------------------------------------------------------- */
.service-detail-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.service-detail-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.service-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 57, 130, 0.85) 0%, rgba(0, 87, 183, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.service-detail-hero-content {
    max-width: 800px;
}

.service-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.1s forwards;
}

.service-detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-detail-breadcrumb a:hover {
    color: white;
}

.service-detail-breadcrumb span {
    color: white;
}

.service-detail-breadcrumb i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.service-detail-hero-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

.service-detail-hero-title span {
    display: block;
    font-size: 0.6em;
    opacity: 0.9;
    font-style: italic;
}

.service-detail-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.35s forwards;
}

.service-detail-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.btn-primary-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--accent);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-light:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--accent);
    border-color: white;
}

.service-detail-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.65s forwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.trust-item i {
    font-size: 1.25rem;
    color: #FFD700;
}

/* --------------------------------------------------------------------------
   Section Badges & Titles
   -------------------------------------------------------------------------- */
.section-badge {
    display: inline-block;
    background: rgba(0, 87, 183, 0.1);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.025em;
}

.section-badge-light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.025em;
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--stone-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--stone-600);
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Why Choose Us Cards
   -------------------------------------------------------------------------- */
.why-choose-card {
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.why-choose-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-choose-icon i {
    font-size: 1.75rem;
    color: white;
}

.why-choose-card h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--stone-900);
    margin-bottom: 0.75rem;
}

.why-choose-card p {
    font-size: 0.9375rem;
    color: var(--stone-600);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Service Offerings Grid
   -------------------------------------------------------------------------- */
.service-offerings-grid {
    display: grid;
    gap: 1.5rem;
}

.service-offering-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-offering-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0, 87, 183, 0.1);
}

.service-offering-item i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-offering-item h4 {
    font-weight: 600;
    color: var(--stone-900);
    margin-bottom: 0.25rem;
}

.service-offering-item p {
    font-size: 0.875rem;
    color: var(--stone-600);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Service Detail Gallery
   -------------------------------------------------------------------------- */
.service-detail-gallery {
    display: grid;
    gap: 1rem;
}

.gallery-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   Service Process Timeline
   -------------------------------------------------------------------------- */
.service-process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.service-process-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--stone-200) 100%);
}

.service-process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.service-process-step:last-child {
    margin-bottom: 0;
}

.process-step-number {
    width: 4rem;
    height: 4rem;
    background: white;
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--accent);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-process-step:hover .process-step-number {
    background: var(--accent);
    color: white;
}

.process-step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.process-step-content h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.375rem;
    color: var(--stone-900);
    margin-bottom: 0.5rem;
}

.process-step-content p {
    font-size: 1rem;
    color: var(--stone-600);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0, 87, 183, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-weight: 600;
    color: var(--stone-900);
    font-size: 1rem;
    padding-right: 1rem;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--stone-600);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Area Tags
   -------------------------------------------------------------------------- */
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.area-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* --------------------------------------------------------------------------
   CTA Card
   -------------------------------------------------------------------------- */
.cta-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-card h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--stone-900);
    margin-bottom: 1rem;
}

.cta-card > p {
    color: var(--stone-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-cta-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-cta-card:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-cta-card i {
    transition: transform 0.3s ease;
}

.btn-cta-card:hover i {
    transform: translateX(4px);
}

.cta-phone {
    font-size: 0.9375rem;
    color: var(--stone-600);
}

.cta-phone a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.cta-phone a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Related Services
   -------------------------------------------------------------------------- */
.related-service-card {
    display: block;
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
}

.related-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

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

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.related-service-content {
    padding: 1.5rem;
}

.related-service-content h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--stone-900);
    margin-bottom: 0.5rem;
}

.related-service-content p {
    font-size: 0.9375rem;
    color: var(--stone-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.related-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9375rem;
}

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

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

/* --------------------------------------------------------------------------
   Service Detail Pages - Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .service-detail-hero {
        min-height: 60vh;
        padding: 7rem 0 3rem;
    }

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

    .service-detail-hero-ctas {
        flex-direction: column;
    }

    .btn-primary-light,
    .btn-outline-light {
        justify-content: center;
    }

    .service-detail-hero-trust {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.8125rem;
    }

    .service-process-timeline::before {
        left: 1.5rem;
    }

    .process-step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }

    .service-process-step {
        gap: 1.25rem;
    }
}

/* --------------------------------------------------------------------------
   LIGHTBOX
   -------------------------------------------------------------------------- */

/* Gallery zoom overlay */
.gallery-main,
.gallery-grid a {
    position: relative;
    display: block;
    overflow: hidden;
}

.gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 87, 183, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-zoom i {
    color: white;
    font-size: 2rem;
}

.gallery-main:hover .gallery-zoom,
.gallery-grid a:hover .gallery-zoom {
    opacity: 1;
}

.lightbox-trigger {
    cursor: zoom-in;
}

/* Lightbox overlay */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close i,
.lightbox-prev i,
.lightbox-next i {
    line-height: 1;
}

@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* --------------------------------------------------------------------------
   Location Hub Pages
   -------------------------------------------------------------------------- */

.location-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0057B7 100%);
}

/* Hero CTA buttons - matched sizing for visual consistency */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: #0057B7;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-hero-outline:hover {
    background: white;
    color: #0057B7;
    border-color: white;
}

.location-service-card {
    display: block;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.location-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 87, 183, 0.15);
    border-color: #0057B7;
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0057B7 0%, #003d82 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.location-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #374151;
    border-radius: 9999px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.location-link:hover {
    background: #0057B7;
    color: white;
    border-color: #0057B7;
    transform: translateY(-2px);
}
