/* Performance Optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Optimize for performance */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text);
    background-color: var(--white);
    text-rendering: optimizeLegibility;
}

:root { 
    --header-h: 72px; 
    --brand:#0f172a; 
    --muted:#475569; 
    --link:#0b4bff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6b7280;
    --text: #1f2937;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
    --line-height-heading: 1.2;
    --max-width-text: 70ch;
}



.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: var(--line-height-heading);
    margin-bottom: 1rem;
    color: var(--text);
    text-transform: none;
    letter-spacing: normal;
}

h1 { 
    font-size: clamp(28px, 5vw, 52px); 
    font-weight: 700;
}

h2 { 
    font-size: clamp(22px, 3vw, 32px); 
    font-weight: 600;
}

h3 { 
    font-size: clamp(18px, 2.6vw, 24px); 
    font-weight: 600;
}

h4 { 
    font-size: 1.25rem; 
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    max-width: var(--max-width-text);
}

/* Typography Utility Classes */
.text-muted {
    color: var(--text-muted);
}

.text-brand {
    color: var(--brand);
}

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

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

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

.max-width-text {
    max-width: var(--max-width-text);
}

.max-width-text-center {
    max-width: var(--max-width-text);
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    line-height: 1.4;
    min-height: 44px;
    min-width: 44px;
}

.btn:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.btn-primary:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.btn-secondary {
    border: 1px solid #93c5fd;
    color: #e5e7eb;
    background: transparent;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-1px);
}

.btn-secondary:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-h);
  backdrop-filter: saturate(120%) blur(6px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 1200px; margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-brand { display:flex; align-items:center; gap:12px; min-width: 240px; }
.nav-logo  { height: 60px; width: auto; object-fit: contain; }

.nav-brand-text h1 {
  margin:0; font-size:18px; line-height:1.1; color: var(--brand); font-weight:700;
}
.nav-brand-text span {
  display:block; margin-top:2px; font-size:12px; color: var(--muted);
}

.nav-menu { display:flex; align-items:center; gap:22px; list-style:none; margin:0; padding:0; }
.nav-link  { 
    text-decoration:none; 
    color:#0f172a; 
    font-weight:500; 
    padding: 8px 4px;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.nav-link:hover, .nav-link:focus { color: var(--link); }
.nav-link[aria-current="page"] { color: var(--link); font-weight:600; border-bottom:2px solid var(--link); padding-bottom:2px; }

.nav-toggle{ 
    display:none; 
    cursor:pointer; 
    min-height: 44px;
    min-width: 44px;
    padding: 10px;
    border: none;
    background: transparent;
}
.nav-toggle span{ 
    display:block; 
    width:24px; 
    height:2px; 
    background:#334155; 
    margin:5px 0; 
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    color: #ffffff;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    margin-bottom: 20px;
    color: #f3f4f6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    font-size: 14px;
    color: #e5e7eb;
}



.hero-kicker {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #fbbf24;
    margin-bottom: 16px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}



@media (max-width: 768px) {
    .hero {
        min-height: 75vh;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .hero-trust {
        gap: 16px;
        font-size: 13px;
    }
}





/* Services Overview */
.services-overview {
    padding: 96px 0;
    background-color: var(--light-gray);
}

.services-overview .section-title {
    text-align: center;
    margin-bottom: 32px;
}

.services-overview .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 64px;
    color: var(--text-muted);
    max-width: var(--max-width-text);
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 0;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: var(--line-height-base);
    margin: 0;
    max-width: none;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .values-grid,
    .testimonials-grid {
        gap: 24px;
    }
    
    .footer-content {
        gap: 24px;
        margin-bottom: 24px;
    }
}

/* Services Gallery */
.services-gallery {
    padding: 96px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: var(--white);
}

.gallery-caption h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .services-gallery {
        padding: 64px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-caption {
        padding: 16px;
    }
    
    .gallery-caption h3 {
        font-size: 1rem;
    }
}

/* Values Section */
.values {
    padding: 96px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.value-item {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.value-item p {
    color: var(--text-muted);
    line-height: var(--line-height-base);
    font-size: 1.1rem;
    max-width: none;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.service-overview-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-overview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-overview-card:hover .service-icon-img {
    transform: scale(1.05);
}

.service-overview-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-overview-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 96px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: var(--line-height-base);
    max-width: none;
}

.testimonial-author h4 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: var(--primary-blue-dark);
}

/* CTA Section */
.cta {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--light-blue);
    max-width: var(--max-width-text);
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
}

.cta .btn-primary:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue-dark);
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #ffffff;
    padding: 96px 0 48px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    max-width: none;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--brand) !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem !important;
}

/* Success Message */
.success-message {
    background-color: #f0f9ff;
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-top: 24px;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-icon {
    font-size: 3rem;
    color: #059669;
}

.success-content h3 {
    color: var(--text);
    margin: 0;
    font-size: 1.5rem;
}

.success-content p {
    color: var(--text-muted);
    margin: 0;
    max-width: none;
}

/* Form Validation */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input:invalid,
.form-group select:invalid {
    border-color: #ef4444;
}

.form-group input:valid,
.form-group select:valid {
    border-color: #10b981;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* reCAPTCHA styling */
.g-recaptcha {
    margin: 1rem 0;
    transform: scale(1);
    transform-origin: 0 0;
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
    }
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
    padding: 8px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 44px;
    height: 44px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-blue-dark);
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 2rem;
    text-align: center;
    color: #d1d5db;
    font-size: 0.95rem;
}

@media (max-width: 760px) {
  .nav-menu { 
      display:none; 
      position:absolute; 
      right:20px; 
      top:calc(var(--header-h) - 8px);
      background:#fff; 
      border:1px solid #e5e7eb; 
      border-radius:10px; 
      padding:16px 20px; 
      gap:16px; 
      flex-direction:column; 
  }
  .nav-menu.open { display:flex; }
  .nav-toggle{ display:block; }
  
  .nav-link {
      padding: 12px 8px;
      min-height: 44px;
      min-width: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .nav-brand-text h1{ font-size:16px; }
  .nav-logo{ height:50px; }
}



    .service-icon-img {
        width: 60px;
        height: 60px;
    }

    .values-grid,
    .services-grid,
    .services-overview-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
        min-width: 44px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .nav-logo {
        height: 70px;
    }

    .nav-brand-text h1 {
        font-size: 1.1rem;
    }

    .nav-brand-text span {
        font-size: 0.7rem;
    }

    .service-icon-img {
        width: 50px;
        height: 50px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.service-link:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* 404 Error Page Styles */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.error-content h1 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.error-message {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: none;
}

.error-help {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2rem;
    max-width: none;
}

.error-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-suggestions {
    margin-bottom: 2rem;
}

.error-suggestions h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-suggestions li {
    margin-bottom: 0.5rem;
}

.error-suggestions a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.error-suggestions a:hover {
    color: var(--primary-blue-dark);
}

.error-contact {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.error-contact p {
    margin: 0;
    color: var(--text);
    max-width: none;
}

.error-contact a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.error-contact a:hover {
    color: var(--primary-blue-dark);
}

@media (max-width: 760px) {
    .error-content h1 {
        font-size: 2.5rem;
    }
    
    .error-links {
        flex-direction: column;
        align-items: center;
    }
    
    .error-links .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .error-content h1 {
        font-size: 2rem;
    }
    
    .error-message {
        font-size: 1.1rem;
    }
    
    .error-help {
        font-size: 1rem;
    }
}

/* Performance optimizations for animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize images and iframes */
img, iframe {
    max-width: 100%;
    height: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--light-blue);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Services Page Styles */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-section.addon-services {
    background-color: var(--light-gray);
    margin-top: 0;
    margin-bottom: 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.services-checklist {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-checklist-item {
    display: flex;
    gap: 2rem;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-checklist-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-checklist-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow);
}

.service-checklist-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-checklist-item:hover .service-checklist-img {
    transform: scale(1.05);
}

.service-checklist-content {
    flex: 1;
}

.service-checklist-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-checklist-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-checklist-details {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.service-checklist-details li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-checklist-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1rem;
}

.service-detail-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--gray);
}

.service-features li:last-child {
    border-bottom: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.benefit-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

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

.why-choose {
    padding: 80px 0;
    background-color: var(--white);
    margin-bottom: 60px;
}

/* About Page Styles */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.story-text h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto;
}

.member-photo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo-img {
    transform: scale(1.05);
}

.member-title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--gray);
    line-height: 1.6;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.reason-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--light-blue);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Pricing Page Styles */
.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-intro h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-intro p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.office-size {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.dash {
    color: var(--gray);
    font-weight: 400;
    margin: 0 0.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin: 0 0.25rem;
}

.period {
    font-size: 1rem;
    color: var(--gray);
}

.frequency {
    color: var(--gray);
    font-size: 0.9rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--gray);
}

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

.larger-office-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 16px;
    border: 2px dashed var(--primary-blue);
}

.larger-office-note h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.larger-office-note p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Add-On Services */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.addon-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.addon-item h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.addon-price {
    color: var(--primary-blue);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.addon-pricing {
    padding: 80px 0;
    background-color: var(--light-gray);
    margin: 0;
}

.pricing-faq {
    padding: 80px 0;
    background-color: var(--white);
    margin: 0;
}

.addon-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.addon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.addon-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.addon-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.addon-features {
    list-style: none;
    text-align: left;
}

.addon-features li {
    padding: 0.25rem 0;
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.25rem;
}

.addon-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.services-table {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-top: 2rem;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.service-row:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    color: var(--text-dark);
}

.service-price {
    font-weight: 700;
    color: var(--primary-blue);
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.factor-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.factor-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.calculator-form {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.calculator-result {
    background-color: var(--light-gray);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calculator-result h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.result-display {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.cost-breakdown p {
    margin-bottom: 0.5rem;
}

.highlight {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    min-height: 44px;
}

.checkbox-label:hover {
    background-color: var(--light-gray);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-blue);
    min-width: 20px;
    min-height: 20px;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.sidebar-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--gray);
}

.response-info p {
    margin-bottom: 0.5rem;
}

.emergency-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 1rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

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

.area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.area-list {
    list-style: none;
    margin: 1.5rem 0;
}

.area-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.area-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.map-container {
    margin: 3rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--light-blue), var(--white));
    height: 300px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .service-checklist-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .service-checklist-icon {
        margin: 0 auto;
    }
    
    .service-checklist-details {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .service-checklist-details li {
        padding-left: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .area-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        margin: 2rem 0;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-highlight {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
    }
    
    .larger-office-note {
        margin-top: 2rem;
        padding: 1.5rem;
    }
}

/* Services Grid */
.services-grid-section {
    padding: 64px 0;
}

/* Anchor section spacing */
section[id] {
    scroll-margin-top: calc(var(--header-h) + 12px);
}

/* First section spacing */
main > section:first-of-type {
    padding-top: calc(var(--header-h) + 12px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.services-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.services-grid figure:hover img {
    transform: scale(1.03);
}

.services-grid figcaption {
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 64px 0;
    background-color: var(--white);
}

.why-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.why-gallery img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    background-color: #f8f9fa;
}

/* Prevent content hiding under sticky header */
main, .hero { scroll-margin-top: calc(var(--header-h) + 10px); }
body { margin:0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; } 