/**
 * Main Stylesheet
 * Garage Door Repair Guys - Sarasota County, FL
 * Mobile-first, performance-optimized
 */

/* ===== CSS Variables ===== */
:root {
    /* Brand Colors - from logo */
    --color-primary: #1a3a6e;      /* Deep blue */
    --color-secondary: #e8882d;    /* Orange */
    --color-accent: #f5a623;       /* Gold */
    
    /* Neutral Colors */
    --color-dark: #1a1a2e;
    --color-gray-900: #212529;
    --color-gray-800: #343a40;
    --color-gray-700: #495057;
    --color-gray-600: #6c757d;
    --color-gray-500: #adb5bd;
    --color-gray-400: #ced4da;
    --color-gray-300: #dee2e6;
    --color-gray-200: #e9ecef;
    --color-gray-100: #f8f9fa;
    --color-white: #ffffff;
    
    /* Semantic Colors */
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes */
    --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: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* 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;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 1rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

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

p { margin-bottom: var(--space-4); }

ul, ol { margin-bottom: var(--space-4); padding-left: var(--space-6); }

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.btn-primary:hover {
    background-color: #d47a25;
    border-color: #d47a25;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: #152e58;
    border-color: #152e58;
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

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

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

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-block {
    width: 100%;
}

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

.btn-phone:hover {
    background-color: #d47a25;
    color: var(--color-white);
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.top-bar-item svg {
    width: 1rem;
    height: 1rem;
}

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

.top-bar-phone:hover {
    color: var(--color-secondary);
}

.top-bar-service-area {
    display: none;
}

/* ===== Main Header ===== */
.main-header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Desktop Navigation */
.main-nav {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-3) var(--space-4);
    color: var(--color-gray-800);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-menu > li > a svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition-fast);
}

.nav-menu > li:hover > a {
    color: var(--color-secondary);
}

.nav-menu > li:hover > a svg {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    list-style: none;
    padding: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 200;
}

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

.dropdown-menu li a {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--color-gray-700);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
}

.dropdown-menu li a:hover {
    background-color: var(--color-gray-100);
    color: var(--color-secondary);
}

.services-dropdown {
    min-width: 320px;
}

/* Header CTA */
.header-cta {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: var(--shadow-xl);
    z-index: 150;
    transition: right var(--transition-base);
    overflow-y: auto;
}

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

.mobile-nav-content {
    padding: var(--space-8) var(--space-4);
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
}

.mobile-menu > li {
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) 0;
    color: var(--color-gray-800);
    font-weight: 500;
}

.mobile-menu > li > a svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform var(--transition-fast);
}

.mobile-has-dropdown.active > a svg {
    transform: rotate(180deg);
}

.mobile-dropdown {
    list-style: none;
    padding: 0 0 var(--space-3) var(--space-4);
    margin: 0;
    display: none;
}

.mobile-has-dropdown.active .mobile-dropdown {
    display: block;
}

.mobile-dropdown li a {
    display: block;
    padding: var(--space-2) 0;
    color: var(--color-gray-600);
    font-size: var(--text-sm);
}

.mobile-nav-cta {
    padding-top: var(--space-4);
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-secondary);
    padding: var(--space-3);
    z-index: 90;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.sticky-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--text-lg);
}

.sticky-phone-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d2340 100%);
    color: var(--color-white);
    padding: var(--space-12) 0 var(--space-16);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="8"/></svg>') repeat;
    background-size: 100px 100px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background-color: rgba(255,255,255,0.15);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-4);
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-secondary);
}

.hero h1 {
    color: var(--color-white);
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-6);
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 500;
}

.hero-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-secondary);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stars {
    display: flex;
    gap: 2px;
    color: var(--color-accent);
}

.hero-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.hero-rating-text {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* ===== Sections ===== */
.section {
    padding: var(--space-12) 0;
}

.section-dark {
    background-color: var(--color-gray-100);
}

.section-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.section-header h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
}

.section-header p {
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray-200);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-secondary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

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

.service-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.service-card h3 a {
    color: var(--color-dark);
}

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

.service-card p {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-secondary);
    font-weight: 600;
    font-size: var(--text-sm);
}

.service-card .learn-more svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition-fast);
}

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

/* ===== Why Choose Us ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

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

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.why-content h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.why-content p {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
    margin: 0;
}

/* ===== Service Areas ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.area-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    border: 1px solid var(--color-gray-200);
}

.area-card:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
}

.area-card h3 {
    font-size: var(--text-base);
    margin: 0;
}

.area-card h3 a {
    color: var(--color-dark);
}

.area-card h3 a:hover {
    color: var(--color-secondary);
}

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

.testimonial-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--color-accent);
    margin-bottom: var(--space-3);
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--color-gray-700);
    margin-bottom: var(--space-4);
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--text-lg);
}

.testimonial-info h4,
.testimonial-name {
    font-size: var(--text-base);
    font-weight: 600;
    margin: 0;
    display: block;
}

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

/* ===== CTA Block ===== */
.cta-block {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d2340 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    color: var(--color-white);
}

.cta-block h3 {
    color: var(--color-white);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.cta-block > p {
    opacity: 0.9;
    margin-bottom: var(--space-6);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    justify-content: center;
    margin-bottom: var(--space-4);
}

.cta-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    opacity: 0.8;
    margin: 0;
}

.cta-hours svg {
    width: 1rem;
    height: 1rem;
}

/* ===== Trust Badges ===== */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background-color: var(--color-gray-100);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-700);
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    color: var(--color-success);
}

/* ===== FAQ Section ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5);
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--color-gray-50);
}

.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-secondary);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-5) var(--space-5);
    color: var(--color-gray-600);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== Pre-Footer CTA ===== */
.pre-footer-cta {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #d47a25 100%);
    padding: var(--space-12) 0;
    color: var(--color-white);
}

.pre-footer-content {
    text-align: center;
}

.pre-footer-text h2 {
    color: var(--color-white);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.pre-footer-text p {
    opacity: 0.95;
    margin-bottom: var(--space-6);
}

.pre-footer-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    justify-content: center;
}

/* ===== Footer ===== */
.main-footer {
    background-color: var(--color-dark);
    color: var(--color-gray-400);
    padding: var(--space-12) 0 var(--space-6);
}

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

/* Tablet: 2x2 grid */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-6);
    }
    
    .footer-company {
        grid-column: span 2;
    }
}

/* Mobile: Single column */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }
    
    .footer-company {
        padding-bottom: var(--space-4);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-bottom: var(--space-2);
    }
    
    .footer-col h3 {
        font-size: 15px;
        margin-bottom: var(--space-3);
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 16px;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .trust-item {
        font-size: 12px;
    }
    
    .main-footer {
        padding: var(--space-8) 0 100px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: var(--space-4);
}

.footer-logo img {
    height: 60px;
    width: auto;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
}

.footer-logo .logo-text {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

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

.footer-nap {
    margin-bottom: var(--space-4);
}

.nap-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
}

.nap-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.nap-item a {
    color: var(--color-gray-400);
}

.nap-item a:hover {
    color: var(--color-secondary);
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--color-secondary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    color: var(--color-white);
}

.footer-col h4,
.footer-col h3 {
    color: var(--color-white);
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--color-secondary);
    display: inline-block;
}

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

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

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

.footer-links a:hover {
    color: var(--color-secondary);
}

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

.trust-item {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
}

.mt-trust {
    margin-top: var(--space-6);
}

.mt-4 {
    margin-top: var(--space-6);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.payment-method {
    background-color: rgba(255,255,255,0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    font-size: var(--text-sm);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    gap: var(--space-4);
}

.footer-bottom-right a {
    color: var(--color-gray-400);
}

.footer-bottom-right a:hover {
    color: var(--color-secondary);
}

/* ===== Form Styles ===== */
.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--color-gray-700);
}

.form-control {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
}

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

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d2340 100%);
    color: var(--color-white);
    padding: var(--space-10) 0;
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
}

.breadcrumbs a {
    color: rgba(255,255,255,0.7);
}

.breadcrumbs a:hover {
    color: var(--color-white);
}

.breadcrumbs span {
    color: rgba(255,255,255,0.5);
}

.breadcrumbs .current {
    color: var(--color-secondary);
}

/* ===== Content Styles ===== */
.content-section {
    padding: var(--space-12) 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: var(--space-8);
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: var(--space-6);
}

.content-wrapper li {
    margin-bottom: var(--space-2);
}

/* ===== Map Section ===== */
.map-section {
    padding: var(--space-8) 0;
    background-color: var(--color-gray-100);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.pb-0 { padding-bottom: 0; }

/* ===== Responsive ===== */
@media (min-width: 640px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }
    
    .hero h1 {
        font-size: var(--text-4xl);
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .pre-footer-actions {
        flex-direction: row;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .top-bar-service-area {
        display: flex;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    h1 { font-size: var(--text-5xl); }
    
    .hero {
        padding: var(--space-16) 0 var(--space-20);
    }
    
    .hero h1 {
        font-size: var(--text-5xl);
    }
    
    .main-nav {
        display: block;
    }
    
    .header-cta {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .sticky-mobile-cta {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .pre-footer-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    
    .pre-footer-text {
        max-width: 500px;
    }
    
    .pre-footer-text p {
        margin-bottom: 0;
    }
}

@media (min-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .main-header,
    .sticky-mobile-cta,
    .pre-footer-cta,
    .main-footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
}

/* ============================================
   PAGESPEED & ACCESSIBILITY FIXES - Dec 25, 2025
   ============================================ */

/* CONTRAST FIXES - Phone buttons */
.top-bar-phone-big {
    background: #d97706 !important;
    color: #fff !important;
}
.top-bar-phone-big:hover {
    background: #b45309 !important;
}

/* Sticky CTA - better contrast */
.sticky-mobile-cta {
    background: #d97706 !important;
}
.sticky-phone-btn {
    color: #fff !important;
}

/* Service cards - Learn More links */
.service-card .learn-more {
    color: #1a3a6e !important;
    font-weight: 600;
}
.service-card .learn-more:hover {
    color: #d97706 !important;
}

/* Dark section text contrast */
.section-dark p {
    color: #e2e8f0 !important;
}
.section-dark .trust-item p,
.section-dark .testimonial-card p,
.section-dark .testimonial-card span {
    color: #cbd5e1 !important;
}

/* Map section text */
.map-section p {
    color: #374151 !important;
}

/* Button contrast fix */
.btn-primary {
    background: #d97706 !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b45309 !important;
}

/* Testimonials location */
.testimonial-card span {
    color: #94a3b8 !important;
}

/* ============================================
   COMPLETE SEO & VISIBILITY FIXES - Dec 26, 2025
   Based on Perplexity Research
   ============================================ */

/* === CTA BLOCK - WHITE TEXT FIX === */
.cta-block {
    background: linear-gradient(135deg, #1a3a6e 0%, #0d2340 100%) !important;
    border-radius: 16px;
    padding: 2.5rem;
}
.cta-block h2,
.cta-block h3 {
    color: #ffffff !important;
    margin-bottom: 0.75rem;
}
.cta-block p {
    color: #ffffff !important;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}
.cta-block .btn-primary {
    background: #e8882d !important;
    color: #ffffff !important;
    border: none !important;
}
.cta-block .btn-primary:hover {
    background: #d47a25 !important;
}
.cta-block .btn-outline,
.cta-block .btn-outline-light {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
}
.cta-block .btn-outline:hover,
.cta-block .btn-outline-light:hover {
    background: #ffffff !important;
    color: #1a3a6e !important;
}

/* === FAQ SECTION - VISIBILITY FIX === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #ffffff !important;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: #ffffff !important;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937 !important;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-question:hover {
    background: #f9fafb !important;
}
.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #e8882d;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}
.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: #4b5563 !important;
    background: #ffffff !important;
    line-height: 1.7;
}
.faq-answer p {
    color: #4b5563 !important;
    margin: 0;
}
.faq-item.active .faq-answer {
    display: block;
}

/* Dark section FAQ override */
.section-dark .faq-item {
    background: #ffffff !important;
}
.section-dark .faq-question {
    background: #ffffff !important;
    color: #1f2937 !important;
}
.section-dark .faq-answer {
    background: #ffffff !important;
    color: #4b5563 !important;
}
.section-dark .section-header h2 {
    color: #1f2937 !important;
}
.section-dark .section-header p {
    color: #4b5563 !important;
}

/* === SERVICE CARDS - LINK FIX === */
.services-grid .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}
.services-grid .service-card:hover {
    border-color: #e8882d;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.services-grid .service-card h3 {
    margin-bottom: 0.5rem;
}
.services-grid .service-card h3 a {
    color: #1f2937 !important;
    text-decoration: none;
}
.services-grid .service-card h3 a:hover {
    color: #e8882d !important;
}
.services-grid .service-card p {
    color: #6b7280 !important;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.services-grid .service-card .learn-more {
    color: #1a3a6e !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.services-grid .service-card .learn-more:hover {
    color: #e8882d !important;
}
.services-grid .service-card .learn-more svg {
    transition: transform 0.2s;
}
.services-grid .service-card:hover .learn-more svg {
    transform: translateX(4px);
}

/* === CONTENT WRAPPER - TEXT VISIBILITY === */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.content-wrapper p {
    color: #374151 !important;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.content-wrapper h2 {
    color: #1f2937 !important;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.content-wrapper h3 {
    color: #1f2937 !important;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}
.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.content-wrapper ul li,
.content-wrapper ol li {
    color: #374151 !important;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.content-wrapper ul li strong,
.content-wrapper ol li strong {
    color: #1f2937;
}

/* === PAGE HEADER === */
.page-header {
    background: linear-gradient(135deg, #1a3a6e 0%, #0d2340 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}
.page-header h1 {
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}
.page-header p {
    color: rgba(255,255,255,0.9) !important;
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}
.breadcrumbs a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none;
}
.breadcrumbs a:hover {
    color: #ffffff !important;
}
.breadcrumbs span {
    color: rgba(255,255,255,0.5);
}
.breadcrumbs .current {
    color: #e8882d !important;
}

/* === PRE-FOOTER CTA === */
.pre-footer-cta {
    background: linear-gradient(135deg, #e8882d 0%, #d47a25 100%);
    padding: 3rem 0;
}
.pre-footer-cta h2 {
    color: #ffffff !important;
}
.pre-footer-cta p {
    color: #ffffff !important;
    opacity: 0.95;
}
.pre-footer-cta .btn-primary {
    background: #ffffff !important;
    color: #e8882d !important;
}
.pre-footer-cta .btn-primary:hover {
    background: #f3f4f6 !important;
}
.pre-footer-cta .btn-outline-light {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
}
.pre-footer-cta .btn-outline-light:hover {
    background: #ffffff !important;
    color: #e8882d !important;
}

/* === FOOTER === */
.main-footer {
    background: #1a1a2e;
    color: #9ca3af;
    padding: 3rem 0 1.5rem;
}
.footer-col h3 {
    color: #ffffff !important;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #9ca3af !important;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: #e8882d !important;
}
.footer-description {
    color: #9ca3af !important;
}
.footer-nap a,
.footer-nap span {
    color: #9ca3af !important;
}
.footer-nap a:hover {
    color: #e8882d !important;
}
.footer-trust .trust-item {
    color: #9ca3af !important;
    font-size: 0.85rem;
}

/* === SECTION DARK FIX === */
.section-dark {
    background: #f3f4f6;
}
.section-dark p {
    color: #4b5563 !important;
}

/* === BUTTON CONTRAST FIXES === */
.btn-primary {
    background: #e8882d !important;
    color: #ffffff !important;
    border: none !important;
}
.btn-primary:hover {
    background: #d47a25 !important;
    color: #ffffff !important;
}
.top-bar-phone-big {
    background: #e8882d !important;
    color: #ffffff !important;
}
.top-bar-phone-big:hover {
    background: #d47a25 !important;
}
.sticky-mobile-cta {
    background: #e8882d !important;
}
.sticky-phone-btn {
    color: #ffffff !important;
}

/* === TESTIMONIALS === */
.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.testimonial-text {
    color: #374151 !important;
    font-style: italic;
    margin-bottom: 1rem;
}
.testimonial-name {
    color: #1f2937 !important;
    font-weight: 600;
}
.testimonial-card span {
    color: #6b7280 !important;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .cta-block {
        padding: 1.5rem;
    }
    .cta-block h2 {
        font-size: 1.25rem;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }
    .faq-answer {
        padding: 0 1rem 1rem;
    }
    .page-header {
        padding: 2rem 0;
    }
    .page-header h1 {
        font-size: 1.5rem;
    }
    .main-footer {
        padding-bottom: 100px; /* Space for sticky CTA */
    }
}

/* === TRUST BADGES === */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.trust-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}
.trust-badges .badge svg {
    color: #22c55e;
    width: 1rem;
    height: 1rem;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, #1a3a6e 0%, #0d2340 100%);
}
.hero h1 {
    color: #ffffff !important;
}
.hero h1 span {
    color: #e8882d !important;
}
.hero-subtitle {
    color: rgba(255,255,255,0.9) !important;
}
.hero-feature {
    color: #ffffff !important;
}
.hero-feature svg {
    color: #e8882d !important;
}

/* ============================================
   SOCIAL MEDIA ICONS - FOOTER
   ============================================ */
.footer-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
}
.footer-review-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 0.75rem;
}
.review-label {
    font-size: 0.85rem;
    color: #9ca3af;
}
.footer-social {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-social h4 {
    color: #ffffff !important;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #9ca3af;
    transition: all 0.2s;
}
.social-icon:hover {
    background: #e8882d;
    color: #ffffff;
    transform: translateY(-2px);
}
.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Review Sites Links */
.review-sites {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.review-link {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #9ca3af !important;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
}
.review-link:hover {
    background: #e8882d;
    color: #ffffff !important;
}

/* Mobile Social Icons */
@media (max-width: 768px) {
    .social-icons {
        gap: 8px;
    }
    .social-icon {
        width: 36px;
        height: 36px;
    }
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   PRICING TABLES
   ============================================ */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
}
.pricing-table thead {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
}
.pricing-table thead tr th {
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-bottom: none;
}
.pricing-table thead tr th:first-child {
    border-radius: 12px 0 0 0;
}
.pricing-table thead tr th:last-child {
    border-radius: 0 12px 0 0;
}
.pricing-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s ease;
}
.pricing-table tbody tr:nth-child(even) {
    background: #f8fafc;
}
.pricing-table tbody tr:hover {
    background: #fff7ed;
}
.pricing-table tbody tr:last-child {
    border-bottom: none;
}
.pricing-table tbody td {
    padding: 1rem 1.25rem;
    color: #374151;
    vertical-align: top;
    line-height: 1.5;
}
.pricing-table tbody td:first-child {
    font-weight: 600;
    color: #1e3a5f;
}
.pricing-table tbody td:nth-child(2) {
    color: #e8882d;
    font-weight: 700;
    white-space: nowrap;
}
/* Mobile Pricing Table */
@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.85rem;
    }
    .pricing-table thead tr th,
    .pricing-table tbody td {
        padding: 0.75rem 0.75rem;
    }
    .pricing-table thead tr th:last-child,
    .pricing-table tbody td:last-child {
        display: none;
    }
}
@media (max-width: 480px) {
    .pricing-table {
        font-size: 0.8rem;
    }
    .pricing-table thead tr th,
    .pricing-table tbody td {
        padding: 0.6rem 0.5rem;
    }
}

/* ============================================
   PROCESS LIST (Numbered Steps)
   ============================================ */
.process-list {
    counter-reset: process-counter;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}
.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, #e8882d 0%, #f59e0b 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(232, 136, 45, 0.3);
}
.process-list li strong {
    color: #1e3a5f;
}
