/* CSS Reset & Base - Same as main page */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
    :root {
      --background: 30 50% 98%;
      --foreground: 200 25% 20%;
      --card: 0 0% 100%;
      --card-foreground: 200 25% 20%;
      --primary: 12 76% 61%;
      --primary-foreground: 0 0% 100%;
      --secondary: 174 42% 41%;
      --secondary-foreground: 0 0% 100%;
      --muted: 30 30% 94%;
      --muted-foreground: 200 15% 45%;
      --accent: 174 35% 92%;
      --accent-foreground: 174 42% 30%;
      --border: 30 20% 88%;
      --coral: 12 76% 61%;
      --coral-light: 12 76% 92%;
      --coral-dark: 12 60% 45%;
      --teal: 174 42% 41%;
      --teal-light: 174 35% 92%;
      --teal-dark: 174 45% 28%;
      --cream: 30 50% 98%;
      --warm-gray: 30 10% 55%;
      --radius: 0.75rem;
    }
    
    html { scroll-behavior: smooth; }
    
    body {
      font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: hsl(var(--background));
      color: hsl(var(--foreground));
      line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', Georgia, serif;
      line-height: 1.2;
    }
    
    .container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; }
    
    /* Animations */
    @keyframes fade-in {
      0% { opacity: 0; transform: translateY(10px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    .animate-fade-in { animation: fade-in 0.5s ease-out forwards; }
    
    /* Shadows */
    .shadow-soft { box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08); }
    .shadow-medium { box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12); }
    .shadow-coral { box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25); }
    .shadow-teal { box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25); }
    
    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 2rem;
      border-radius: var(--radius);
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      border: none;
      transition: all 0.2s ease;
      font-family: inherit;
    }
    .btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
    .btn-primary {
      background-color: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
      box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25);
    }
    .btn-primary:hover { background-color: hsl(var(--coral-dark)); transform: translateY(-2px); }
    .btn-secondary {
      background-color: hsl(var(--secondary));
      color: hsl(var(--secondary-foreground));
      box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25);
    }
    .btn-secondary:hover { background-color: hsl(var(--teal-dark)); transform: translateY(-2px); }
    .btn-outline {
      background-color: transparent;
      border: 2px solid hsl(var(--secondary));
      color: hsl(var(--secondary));
    }
    .btn-outline:hover { background-color: hsl(var(--secondary)); color: hsl(var(--secondary-foreground)); }
    .btn-outline-light {
      background-color: transparent;
      border: 2px solid hsl(var(--primary-foreground));
      color: hsl(var(--primary-foreground));
    }
    .btn-outline-light:hover { background-color: hsla(0, 0%, 100%, 0.1); }
    
    /* Header */
    .header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      background-color: hsla(30, 50%, 98%, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid hsl(var(--border));
    }
    .header-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
    .logo img { height: 3.5rem; width: auto; }
    .nav-desktop { display: none; align-items: center; gap: 2rem; }
    @media (min-width: 1024px) { .nav-desktop { display: flex; } }
    .nav-link {
      color: hsla(200, 25%, 20%, 0.8);
      font-weight: 500;
      transition: color 0.2s;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }
    .nav-link:hover { color: hsl(var(--primary)); }
    .header-cta { display: none; align-items: center; gap: 1rem; }
    @media (min-width: 1024px) { .header-cta { display: flex; } }
    .phone-link { display: flex; align-items: center; gap: 0.5rem; color: hsl(var(--secondary)); font-weight: 600; }
    .mobile-menu-btn { display: block; padding: 0.5rem; background: none; border: none; cursor: pointer; color: hsl(var(--foreground)); }
    @media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
    .mobile-nav { display: none; padding: 1.5rem 0; border-top: 1px solid hsl(var(--border)); animation: fade-in 0.3s ease-out; }
    .mobile-nav.active { display: block; }
    .mobile-nav-links { display: flex; flex-direction: column; gap: 1rem; }
    .mobile-nav-links .nav-link { padding: 0.5rem 0; text-align: left; }
    .mobile-nav-cta { padding-top: 1rem; margin-top: 1rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; gap: 0.75rem; }
    
    /* Dropdown */
    .nav-dropdown { position: relative; }
    .nav-dropdown-trigger { display: flex; align-items: center; gap: 0.25rem; font-family: inherit; }
    .nav-dropdown-content {
      display: none; position: absolute; top: 100%; left: 0; margin-top: 0.5rem;
      background-color: hsl(var(--background)); border: 1px solid hsl(var(--border));
      border-radius: var(--radius); min-width: 10rem; z-index: 60;
      box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
    }
    .nav-dropdown-content.active { display: block; }
    .nav-dropdown-item {
      display: block; padding: 0.5rem 1rem; color: hsl(var(--foreground));
      font-weight: 500; font-size: 0.875rem; transition: background-color 0.2s;
    }
    .nav-dropdown-item:hover { background-color: hsl(var(--muted)); }
    .mobile-services-toggle { display: flex; align-items: center; gap: 0.25rem; width: 100%; font-family: inherit; }
    .mobile-services-sub { display: flex; flex-direction: column; gap: 0.5rem; }
    
    /* Hero Section */
    .hero { position: relative; min-height: 60vh; display: flex; align-items: center; overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, hsla(200, 25%, 20%, 0.9), hsla(200, 25%, 20%, 0.7), hsla(200, 25%, 20%, 0.4)); }
    .hero-content { position: relative; z-index: 10; padding: 8rem 0; max-width: 42rem; }
    .badge { display: inline-block; padding: 0.25rem 1rem; border-radius: 9999px; font-weight: 500; font-size: 0.875rem; margin-bottom: 1rem; }
    .badge-primary { background-color: hsla(12, 76%, 61%, 0.2); color: hsl(var(--primary-foreground)); }
    .badge-coral { background-color: hsl(var(--coral-light)); color: hsl(var(--primary)); }
    .badge-teal { background-color: hsl(var(--teal-light)); color: hsl(var(--secondary)); }
    .hero .badge { margin-bottom: 1.5rem; }
    .hero h1 { font-size: 2.5rem; font-weight: 700; color: hsl(var(--cream)); margin-bottom: 1.5rem; line-height: 1.2; }
    @media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
    @media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
    .text-primary { color: hsl(var(--primary)); }
    .text-secondary { color: hsl(var(--secondary)); }
    .hero p { font-size: 1.25rem; color: hsla(30, 50%, 98%, 0.9); margin-bottom: 2rem; }
    
    /* Sections */
    .section { padding: 6rem 0; }
    .section-bg { background-color: hsl(var(--background)); }
    .section-muted { background-color: hsla(30, 30%, 94%, 0.3); }
    .section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
    .section-title { font-size: 1.875rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1.5rem; }
    @media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
    .section-desc { font-size: 1.125rem; color: hsl(var(--muted-foreground)); }
    
    /* Service Cards Grid */
    .services-grid { display: grid; gap: 2rem; }
    @media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
    
    .service-card {
      background-color: hsl(var(--card));
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
      transition: all 0.3s;
    }
    .service-card:hover { box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12); }
    .service-icon { width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
    .service-icon-primary { background-color: hsla(12, 76%, 61%, 0.1); color: hsl(var(--primary)); }
    .service-icon-secondary { background-color: hsla(174, 42%, 41%, 0.1); color: hsl(var(--secondary)); }
    .service-icon svg { width: 1.75rem; height: 1.75rem; }
    .service-card h3 { font-size: 1.25rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.5rem; }
    .service-card p { color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
    .service-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; transition: color 0.2s; }
    .service-link-primary { color: hsl(var(--primary)); }
    .service-link-primary:hover { color: hsl(var(--coral-dark)); }
    .service-link-secondary { color: hsl(var(--secondary)); }
    .service-link-secondary:hover { color: hsl(var(--teal-dark)); }
    .service-link svg { transition: transform 0.2s; }
    .service-card:hover .service-link svg { transform: translateX(4px); }
    
    /* Service Detail Sections */
    .service-detail { padding: 6rem 0; }
    .service-detail-grid { display: grid; gap: 4rem; align-items: center; }
    @media (min-width: 1024px) { .service-detail-grid { grid-template-columns: repeat(2, 1fr); } }
    .service-detail-content h2 { font-size: 1.875rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1.5rem; }
    @media (min-width: 640px) { .service-detail-content h2 { font-size: 2.25rem; } }
    .service-detail-content > p { font-size: 1.125rem; color: hsl(var(--muted-foreground)); margin-bottom: 2rem; }
    .feature-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
    .feature-item { display: flex; align-items: center; gap: 0.75rem; }
    .feature-item svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
    .feature-item span { color: hsl(var(--foreground)); }
    .img-container { position: relative; }
    .img-rounded { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12); }
    .img-rounded img { width: 100%; height: auto; display: block; }
    .floating-badge-primary {
      position: absolute; bottom: -1.5rem; right: -1.5rem;
      background-color: hsl(var(--primary)); color: hsl(var(--primary-foreground));
      border-radius: var(--radius); padding: 1rem 1.5rem;
      box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25);
    }
    .floating-badge-secondary {
      position: absolute; bottom: -1.5rem; left: -1.5rem;
      background-color: hsl(var(--secondary)); color: hsl(var(--secondary-foreground));
      border-radius: var(--radius); padding: 1rem 1.5rem;
      box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25);
    }
    .floating-badge-primary p:first-child, .floating-badge-secondary p:first-child { font-weight: 600; }
    .floating-badge-primary p:last-child, .floating-badge-secondary p:last-child { font-size: 0.875rem; opacity: 0.9; }
    
    /* Additional Services Cards */
    .additional-services { display: grid; gap: 2rem; max-width: 64rem; margin: 0 auto; }
    @media (min-width: 768px) { .additional-services { grid-template-columns: repeat(2, 1fr); } }
    .additional-card {
      background-color: hsl(var(--card));
      border-radius: 1.5rem;
      padding: 2rem;
      box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
    }
    .additional-icon {
      width: 4rem; height: 4rem;
      border-radius: 1rem;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem;
    }
    .additional-icon-primary { background-color: hsl(var(--primary)); box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25); }
    .additional-icon-secondary { background-color: hsl(var(--secondary)); box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25); }
    .additional-icon svg { width: 2rem; height: 2rem; color: white; }
    .additional-card h3 { font-size: 1.5rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1rem; }
    .additional-card > p { color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }
    .additional-features { display: flex; flex-direction: column; gap: 0.5rem; }
    .additional-features .feature-item span { font-size: 0.875rem; }
    
    /* CTA Section */
    .cta-section { padding: 6rem 0; background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--coral))); text-align: center; }
    .cta-section h2 { font-size: 1.875rem; font-weight: 700; color: hsl(var(--primary-foreground)); margin-bottom: 1.5rem; }
    @media (min-width: 640px) { .cta-section h2 { font-size: 2.25rem; } }
    .cta-section p { font-size: 1.25rem; color: hsla(0, 0%, 100%, 0.9); margin-bottom: 2rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
    .cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
    @media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
    
    /* Footer */
    .footer { background-color: hsl(var(--foreground)); color: hsl(var(--background)); padding: 4rem 0 2rem; }
    .footer-grid { display: grid; gap: 2rem; margin-bottom: 3rem; }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
    .footer-brand img { height: 2.5rem; margin-bottom: 1rem; }
    .footer-brand p { color: hsla(30, 50%, 98%, 0.7); margin-bottom: 0.5rem; }
    .footer-tagline { font-style: italic; color: hsl(var(--primary)); }
    .footer h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; font-family: 'Source Sans 3', sans-serif; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a { color: hsla(30, 50%, 98%, 0.7); transition: color 0.2s; }
    .footer-links a:hover { color: hsl(var(--background)); }
    .footer-contact a { display: flex; align-items: center; gap: 0.5rem; color: hsla(30, 50%, 98%, 0.7); margin-bottom: 0.75rem; transition: color 0.2s; }
    .footer-contact a:hover { color: hsl(var(--background)); }
    .footer-bottom { border-top: 1px solid hsla(30, 50%, 98%, 0.1); padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
    @media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
    .footer-bottom p { color: hsla(30, 50%, 98%, 0.7); font-size: 0.875rem; }
    .made-with { display: flex; align-items: center; gap: 0.25rem; }
    .heart-icon { color: hsl(var(--primary)); }
    
    /* Scroll to Top */
    .scroll-to-top {
      position: fixed; bottom: 2rem; right: 2rem;
      width: 3rem; height: 3rem; border-radius: 50%;
      background-color: hsl(var(--secondary)); color: hsl(var(--secondary-foreground));
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; transition: all 0.3s ease;
      box-shadow: 0 4px 20px -4px hsla(174, 42%, 41%, 0.3); z-index: 40;
    }
    .scroll-to-top.visible { opacity: 1; visibility: visible; }
    .scroll-to-top:hover { transform: translateY(-4px); }
    
    /* Order classes */
    .order-1 { order: 1; }
    .order-2 { order: 2; }
    @media (min-width: 1024px) {
      .lg-order-1 { order: 1; }
      .lg-order-2 { order: 2; }
    }