
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Manrope", sans-serif;
        background-color: #f8f6f5; /* background-light */
        color: #1e293b; /* slate-800 */
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      /* selection style */
      ::selection {
        background-color: #fb4723; /* primary */
        color: #ffffff;
      }

      /* links & defaults */
      a {
        text-decoration: none;
        color: inherit;
      }

      img {
        max-width: 100%;
        display: block;
      }

      /* ---------- layout containers ---------- */
      .max-w-7xl {
        max-width: 80rem; /* 1280px */
        margin-left: auto;
        margin-right: auto;
      }

      .px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      @media (min-width: 640px) {
        .sm\:px-6 {
          padding-left: 1.5rem;
          padding-right: 1.5rem;
        }
      }

      @media (min-width: 1024px) {
        .lg\:px-8 {
          padding-left: 2rem;
          padding-right: 2rem;
        }
      }

      /* ---------- navigation ---------- */
      .nav {
        position: sticky;
        top: 0;
        z-index: 50;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9); /* surface-light/90 */
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(251, 71, 35, 0.1);
      }

      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 5rem; /* h-20 */
      }

      .logo-area {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        gap: 0.5rem;
      }

      .material-icon-primary {
        color: #fb4723;
        font-size: 2rem; /* text-3xl */
      }

      .logo-text {
        font-weight: 700;
        font-size: 1.25rem; /* xl */
        letter-spacing: -0.025em;
        color: #0f172a; /* slate-900 */
      }

      .logo-accent {
        color: #fb4723;
        font-weight: 800;
      }

      /* desktop menu */
      .desktop-menu {
        display: none;
      }

      @media (min-width: 768px) {
        .desktop-menu {
          display: flex;
          gap: 2rem; /* space-x-8 */
          align-items: center;
        }
      }

      .nav-link {
        color: #475569; /* slate-600 */
        font-weight: 500;
        transition: color 0.2s;
      }

      .nav-link:hover {
        color: #fb4723;
      }

      /* desktop cta */
      .desktop-cta {
        display: none;
      }

      @media (min-width: 768px) {
        .desktop-cta {
          display: flex;
        }
      }

      .btn-outline-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.625rem 1.5rem; /* px-6 py-2.5 */
        border: 1px solid #fb4723;
        font-size: 0.875rem;
        font-weight: 600;
        border-radius: 0.5rem; /* rounded-lg */
        color: #fb4723;
        background: transparent;
        transition: all 0.2s;
      }

      .btn-outline-primary:hover {
        background-color: #fb4723;
        color: white;
      }

      /* mobile menu button */
      .mobile-menu-btn {
        display: flex;
        align-items: center;
      }

      @media (min-width: 768px) {
        .mobile-menu-btn {
          display: none;
        }
      }

      .mobile-icon-btn {
        color: #475569;
        background: none;
        border: none;
        cursor: pointer;
      }

      .mobile-icon-btn:hover {
        color: #fb4723;
      }

      .material-icons-outlined.text-3xl {
        font-size: 2rem; /* 32px */
      }

      /* ---------- hero ---------- */
      .hero {
        position: relative;
        padding-top: 4rem; /* pt-16 */
        padding-bottom: 5rem; /* pb-20 */
        overflow: hidden;
      }

      @media (min-width: 1024px) {
        .hero {
          padding-top: 6rem; /* lg:pt-24 */
          padding-bottom: 7rem; /* lg:pb-28 */
        }
      }

      .hero-grid {
        display: grid;
        gap: 3rem; /* gap-16 */
        align-items: center;
      }

      @media (min-width: 1024px) {
        .hero-grid {
          grid-template-columns: repeat(12, 1fr);
        }
      }

      .hero-content {
        text-align: center;
      }

      @media (min-width: 1024px) {
        .hero-content {
          grid-column: span 6 / span 6;
          text-align: left;
          margin-bottom: 0;
        }
      }

      .badge {
        display: inline-block;
        padding: 0.25rem 0.75rem; /* px-3 py-1 */
        margin-bottom: 1.5rem; /* mb-6 */
        font-size: 0.75rem; /* text-xs */
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #fb4723;
        background-color: rgba(251, 71, 35, 0.1);
        border-radius: 9999px; /* rounded-full */
      }

      .hero-title {
        font-size: 2.25rem; /* 4xl */
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #0f172a; /* slate-900 */
        margin-bottom: 1.5rem; /* mb-6 */
        line-height: 1.15;
      }

      @media (min-width: 1024px) {
        .hero-title {
          font-size: 3.75rem; /* 6xl */
        }
      }

      .hero-title .text-primary {
        color: #fb4723;
      }

      .hero-description {
        font-size: 1.125rem; /* text-lg */
        color: #475569; /* slate-600 */
        margin-bottom: 2rem; /* mb-8 */
        max-width: 36rem; /* max-w-2xl */
        margin-left: auto;
        margin-right: auto;
        line-height: 1.625; /* relaxed */
      }

      @media (min-width: 1024px) {
        .hero-description {
          margin-left: 0;
        }
      }

      .btn-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
      }

      @media (min-width: 640px) {
        .btn-group {
          flex-direction: row;
        }
      }

      @media (min-width: 1024px) {
        .btn-group {
          justify-content: flex-start;
        }
      }

      .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2rem; /* px-8 py-4 */
        border: 1px solid transparent;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 0.5rem; /* rounded-lg */
        background-color: #fb4723;
        color: white;
        transition: all 0.2s;
        box-shadow: 0 10px 15px -3px rgba(251, 71, 35, 0.3); /* shadow-lg */
      }

      .btn-primary:hover {
        background-color: #d93616; /* primary-dark */
      }

      .btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2rem;
        border: 1px solid #e2e8f0; /* slate-200 */
        font-size: 1rem;
        font-weight: 700;
        border-radius: 0.5rem;
        background-color: #ffffff; /* surface-light */
        color: #334155; /* slate-700 */
        transition: all 0.2s;
      }

      .btn-secondary:hover {
        background-color: #f8fafc; /* slate-50 */
      }

      .arrow-icon {
        margin-left: 0.5rem;
        font-size: 1.25rem; /* text-xl */
      }

      /* stats */
      .stats-grid {
        margin-top: 2.5rem; /* mt-10 */
        padding-top: 2rem; /* pt-8 */
        border-top: 1px solid #e2e8f0; /* slate-200 */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem; /* gap-8 */
      }

      .stat-number {
        font-size: 1.875rem; /* 3xl */
        font-weight: 700;
        color: #0f172a;
      }

      .stat-label {
        font-size: 0.875rem;
        color: #64748b; /* slate-500 */
        font-weight: 500;
      }

      /* hero image */
      .hero-image-col {
        position: relative;
      }

      @media (min-width: 1024px) {
        .hero-image-col {
          grid-column: span 6 / span 6;
        }
      }

      .blur-bg-1 {
        position: absolute;
        top: -2.5rem;
        right: -2.5rem;
        width: 18rem; /* 72 */
        height: 18rem;
        background-color: rgba(251, 71, 35, 0.2);
        border-radius: 9999px;
        filter: blur(64px);
      }

      .blur-bg-2 {
        position: absolute;
        bottom: -2.5rem;
        left: -2.5rem;
        width: 18rem;
        height: 18rem;
        background-color: rgba(251, 71, 35, 0.1);
        border-radius: 9999px;
        filter: blur(64px);
      }

      .image-card {
        position: relative;
        border-radius: 1rem; /* rounded-2xl */
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(226, 232, 240, 0.5); /* shadow-2xl */
      }

      .image-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.7s;
      }

      .image-card:hover img {
        transform: scale(1.05);
      }

      .img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
        z-index: 10;
      }

      .floating-card {
        position: absolute;
        bottom: 1.5rem; /* bottom-6 */
        left: 1.5rem;
        right: 1.5rem;
        z-index: 20;
        background-color: rgba(255, 255, 255, 0.95); /* surface-light/95 */
        backdrop-filter: blur(4px);
        padding: 1rem; /* p-4 */
        border-radius: 0.75rem; /* rounded-xl */
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-left: 4px solid #fb4723;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .load-label {
        font-size: 0.75rem;
        color: #64748b;
        font-weight: 600;
        text-transform: uppercase;
      }

      .load-number {
        font-weight: 700;
        color: #0f172a;
      }

      .schedule-badge {
        background-color: #dcfce7; /* green-100 */
        color: #16a34a; /* green-700 */
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 700;
      }

      /* ---------- services ---------- */
      .services-section {
        padding: 5rem 0; /* py-20 */
        background-color: #ffffff; /* surface-light */
      }

      .section-header {
        text-align: center;
        max-width: 48rem; /* max-w-3xl */
        margin: 0 auto 4rem; /* mb-16 */
      }

      .section-title {
        font-size: 1.875rem; /* 3xl */
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 1rem; /* mb-4 */
      }

      @media (min-width: 1024px) {
        .section-title {
          font-size: 2.25rem; /* 4xl */
        }
      }

      .section-subtitle {
        font-size: 1.125rem;
        color: #64748b; /* slate-600 */
      }

      .services-grid {
        display: grid;
        gap: 2rem; /* gap-8 */
      }

      @media (min-width: 768px) {
        .services-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }

      .service-card {
        background-color: #ffffff;
        padding: 2rem; /* p-8 */
        border-radius: 1rem; /* 2xl */
        border: 1px solid #f1f5f9; /* slate-100 */
        transition: all 0.3s;
      }

      .service-card:hover {
        border-color: rgba(251, 71, 35, 0.3);
        box-shadow:
          0 20px 25px -5px rgba(251, 71, 35, 0.05),
          0 10px 10px -5px rgba(251, 71, 35, 0.02);
      }

      .icon-box {
        width: 3.5rem; /* 14 */
        height: 3.5rem;
        background-color: rgba(251, 71, 35, 0.1);
        border-radius: 0.75rem; /* xl */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: #fb4723;
        transition: all 0.3s;
      }

      .service-card:hover .icon-box {
        background-color: #fb4723;
        color: white;
      }

      .icon-box span {
        font-size: 1.875rem; /* 3xl */
      }

      .service-title {
        font-size: 1.25rem; /* xl */
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 0.75rem;
        transition: color 0.3s;
      }

      .service-card:hover .service-title {
        color: #fb4723;
      }

      .service-desc {
        color: #475569;
        line-height: 1.625;
      }

      /* why choose us */
      .why-section {
        padding: 5rem 0;
        background-color: #f8f6f5;
      }

      .why-grid {
        display: grid;
        gap: 4rem; /* gap-16 */
        align-items: center;
      }

      @media (min-width: 1024px) {
        .why-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      .why-image-col {
        position: relative;
        margin-bottom: 3rem;
      }

      @media (min-width: 1024px) {
        .why-image-col {
          margin-bottom: 0;
        }
      }

      .why-image-wrapper {
        position: relative;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        height: 24rem; /* h-96 */
      }

      .why-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .image-overlay-color {
        position: absolute;
        inset: 0;
        background-color: rgba(251, 71, 35, 0.1);
        mix-blend-mode: multiply;
      }

      .stats-card {
        position: absolute;
        bottom: -1.5rem;
        right: -1.5rem;
        background-color: white;
        padding: 2rem; /* p-8 */
        border-radius: 0.75rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        max-width: 20rem; /* max-w-xs */
        border: 1px solid #f1f5f9;
      }

      .stats-row {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
      }

      .stats-icon {
        width: 3rem; /* 12 */
        height: 3rem;
        background-color: #dcfce7;
        border-radius: 9999px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #16a34a;
      }

      .stats-small {
        font-size: 0.75rem;
        color: #94a3b8;
      }

      .why-heading {
        font-size: 1.875rem; /* 3xl */
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 1.5rem;
      }

      .why-paragraph {
        font-size: 1.125rem;
        color: #475569;
        margin-bottom: 2rem;
      }

      .checklist {
        list-style: none;
        padding: 0;
      }

      .checklist li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
      }

      .checklist .material-icons-outlined {
        color: #fb4723;
        margin-right: 1rem;
      }

      .checklist h4 {
        font-size: 1.125rem;
        font-weight: 700;
        color: #0f172a;
      }

      .checklist p {
        color: #475569;
        font-size: 0.875rem;
        margin-top: 0.25rem;
      }

      /* CTA section */
      .cta-section {
        padding: 5rem 0;
        background-color: #ffffff;
        border-top: 1px solid #e2e8f0;
      }

      .cta-card {
        background-color: #23120f; /* background-dark */
        border-radius: 1.5rem; /* 3xl */
        overflow: hidden;
        position: relative;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      }

      .cta-blur-1 {
        position: absolute;
        top: 0;
        right: 0;
        width: 20rem;
        height: 20rem;
        background-color: rgba(251, 71, 35, 0.2);
        border-radius: 9999px;
        filter: blur(64px);
        transform: translate(20%, -20%);
      }

      .cta-blur-2 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 20rem;
        height: 20rem;
        background-color: rgba(251, 71, 35, 0.1);
        border-radius: 9999px;
        filter: blur(64px);
        transform: translate(-20%, 20%);
      }

      .cta-content {
        position: relative;
        z-index: 10;
        padding: 4rem 2rem; /* py-16 px-8 */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
      }

      @media (min-width: 768px) {
        .cta-content {
          flex-direction: row;
          text-align: left;
          padding: 5rem 4rem; /* md:py-20 md:px-16 */
          justify-content: space-between;
        }
      }

      .cta-text h2 {
        font-size: 1.875rem; /* 3xl */
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
      }

      @media (min-width: 768px) {
        .cta-text h2 {
          font-size: 2.25rem; /* 4xl */
        }
      }

      .cta-text p {
        color: #d1d5db; /* gray-300 */
        font-size: 1.125rem;
        margin-bottom: 2rem;
      }

      .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      @media (min-width: 640px) {
        .cta-buttons {
          flex-direction: row;
        }
      }

      .btn-cta-primary {
        background-color: #fb4723;
        color: white;
        font-weight: 700;
        padding: 0.75rem 2rem; /* px-8 py-3 */
        border-radius: 0.5rem;
        transition: background 0.2s;
        box-shadow: 0 10px 15px -3px rgba(251, 71, 35, 0.3);
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .btn-cta-primary:hover {
        background-color: #d93616;
      }

      .btn-cta-secondary {
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(4px);
        color: white;
        font-weight: 700;
        padding: 0.75rem 2rem;
        border-radius: 0.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
      }

      .btn-cta-secondary:hover {
        background-color: rgba(255, 255, 255, 0.2);
      }

      .map-icon {
        opacity: 0.3;
        display: none;
      }

      @media (min-width: 768px) {
        .map-icon {
          display: block;
        }
      }

      .map-icon span {
        font-size: 9rem; /* 144px */
        color: white;
      }

      /* footer */
      .footer {
        background-color: #f8f6f5;
        border-top: 1px solid #e2e8f0;
        padding-top: 4rem;
        padding-bottom: 2rem;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
      }

      @media (min-width: 768px) {
        .footer-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }

      .footer-brand p {
        color: #64748b;
        font-size: 0.875rem;
        line-height: 1.625;
        margin: 1.5rem 0;
      }

      .social-links {
        display: flex;
        gap: 1rem;
      }

      .social-links a {
        color: #94a3b8;
        transition: color 0.2s;
      }

      .social-links a:hover {
        color: #fb4723;
      }

      .footer-title {
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 1.5rem;
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 0.75rem;
      }

      .footer-links a {
        color: #64748b;
        font-size: 0.875rem;
        transition: color 0.2s;
      }

      .footer-links a:hover {
        color: #fb4723;
      }

      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        color: #64748b;
        font-size: 0.875rem;
        margin-bottom: 1rem;
      }

      .contact-item .material-icons-outlined {
        color: #fb4723;
        font-size: 1.25rem;
      }

      .footer-bottom {
        border-top: 1px solid #e2e8f0;
        padding-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      @media (min-width: 768px) {
        .footer-bottom {
          flex-direction: row;
          justify-content: space-between;
        }
      }

      .copyright {
        font-size: 0.75rem;
        color: #94a3b8;
      }

      .legal-links {
        display: flex;
        gap: 1.5rem;
        font-size: 0.75rem;
        color: #94a3b8;
      }

      .legal-links a:hover {
        color: #334155;
      }

      /* responsiveness fixes */
      .material-icons-outlined,
      .material-symbols-outlined {
        vertical-align: middle;
      }
      
      li.menu-item{
         list-style-type: none;
      }
      
      .menu-item a{
          color: #475569;
    font-weight: 500;
    transition: color 0.2s;
      }
      
      .menu-item a:hover,
      li.current-menu-item a{
    color: #fb4723;
}

img.custom-logo {
    width: 200px;
    height: auto;
}

section.why-section {
    background-color: #fff;
}

.our-values {
    padding: 5rem 0;
}

/* AJAX Form Loading Spinner */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-primary.loading {
    position: relative;
    cursor: wait;
}

.btn-primary.loading .btn-text {
    opacity: 0.7;
}

.btn-primary.loading .btn-loader {
    display: inline-block !important;
    animation: spin 1s linear infinite;
}

.btn-primary.loading .arrow-icon {
    display: none;
}

/* Form Response Messages */
.success-message {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.error-message {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

/* Form Input Focus Effects */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #fb4723 !important;
    box-shadow: 0 0 0 3px rgba(251, 71, 35, 0.1);
}

/* ========== About Page Styles ========== */

/* About Hero Section */
.about-hero {
    position: relative;
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-content {
    text-align: left;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.about-hero-title .text-primary {
    color: #fb4723;
}

.about-hero-description {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.625;
}

.about-image-card {
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
}

/* Values Section - Reusing service-card styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.value-card .icon-box {
    margin: 0 auto 1.5rem;
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image-col {
    position: relative;
}

.story-image-wrapper {
    height: 30rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.story-image-wrapper:hover img {
    transform: scale(1.05);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    list-style: none;
}

.checklist-item .material-icons-outlined {
    color: #fb4723;
    font-size: 1.5rem;
}

.checklist-item span:last-child {
    font-weight: 600;
    color: #0f172a;
}

/* ========== Responsive Styles ========== */

/* Large Desktop (up to 1280px) */
@media screen and (max-width: 1280px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .story-image-wrapper {
        height: 28rem;
    }
}

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .about-hero-grid {
        gap: 2rem;
    }
    
    .about-hero-title {
        font-size: 2.25rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .story-grid {
        gap: 2rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-image-wrapper {
        height: 25rem;
    }
}

/* Mobile (up to 768px) */
@media screen and (max-width: 768px) {
    .about-hero {
        padding: 2rem 0;
    }
    
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero-content {
        text-align: center;
        order: 1;
    }
    
    .about-hero-image {
        order: 2;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .stats-grid {
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        order: 1;
        text-align: center;
    }
    
    .story-image-col {
        order: 2;
    }
    
    .story-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .why-paragraph {
        text-align: center;
    }
    
    .checklist-item {
        justify-content: center;
    }
    
    .story-image-wrapper {
        height: 20rem;
    }
}

/* Small Mobile (up to 480px) */
@media screen and (max-width: 480px) {
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .story-image-wrapper {
        height: 15rem;
    }
    
    .checklist-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Landscape orientation for mobile */
@media screen and (max-width: 896px) and (orientation: landscape) {
    .about-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .story-image-wrapper {
        height: 18rem;
    }
}

/* ========== Contact Page Styles ========== */

/* Contact Hero Section */
.contact-hero {
    padding: 4rem 0 2rem;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 1rem 0 1.5rem;
    line-height: 1.15;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.625;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Grid Section */
.contact-grid-section {
    padding: 0 0 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Info Styles */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-header {
    margin-bottom: 1rem;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.contact-info-description {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.contact-method-card {
    padding: 2rem 1.5rem;
    text-align: center;
}

.contact-method-card .icon-box {
    margin: 0 auto 1.5rem;
}

.contact-method-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.contact-method-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fb4723;
    margin-bottom: 0.5rem;
}

.contact-method-value a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-method-value a:hover {
    opacity: 0.8;
}

.contact-method-hours,
.contact-method-note {
    font-size: 0.9rem;
    color: #64748b;
}

.contact-method-address {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
}

/* Social Links Card */
.social-links-card {
    padding: 2rem;
    text-align: center;
}

.social-links-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.social-links-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: rgba(251, 71, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fb4723;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #fb4723;
    color: white;
    transform: translateY(-3px);
}

.social-link .material-icons-outlined {
    font-size: 1.5rem;
}

/* Contact Form Styles */
.contact-form-card {
    padding: 3rem;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
}

.form-loader {
    text-align: center;
    padding: 2rem;
}

.form-loader .material-icons-outlined {
    animation: spin 1s linear infinite;
    color: #fb4723;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-loader p {
    color: #64748b;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #fff;
}

.map-card {
    padding: 0;
    overflow: hidden;
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(251, 71, 35, 0.3);
}

.faq-details {
    cursor: pointer;
}

.faq-summary {
    font-weight: 700;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0f172a;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    color: #fb4723;
    transition: transform 0.3s ease;
}

details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 1rem;
    color: #475569;
    line-height: 1.6;
    padding-right: 2rem;
}

/* ========== Responsive Styles ========== */

/* Large Desktop (up to 1280px) */
@media screen and (max-width: 1280px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
}

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .contact-hero-title {
        font-size: 2.25rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-wrapper {
        order: 1;
    }
    
    .contact-form-wrapper {
        order: 2;
    }
    
    .contact-methods-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Mobile (up to 768px) */
@media screen and (max-width: 768px) {
    .contact-hero {
        padding: 2rem 0;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-description {
        font-size: 1rem;
    }
    
    .contact-grid-section {
        padding: 0 0 2rem;
    }
    
    .contact-info-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .contact-info-description {
        text-align: center;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-method-card {
        padding: 1.5rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .social-links-card {
        padding: 1.5rem;
    }
    
    .social-links-grid {
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .map-section {
        padding: 2rem 0;
    }
    
    .map-card iframe {
        height: 350px;
    }
    
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-summary {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
}

/* Small Mobile (up to 480px) */
@media screen and (max-width: 480px) {
    .contact-hero-title {
        font-size: 1.75rem;
    }
    
    .contact-method-value {
        font-size: 1.1rem;
        word-break: break-word;
    }
    
    .contact-method-value a {
        display: inline-block;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .form-loader .material-icons-outlined {
        font-size: 1.75rem;
    }
    
    .map-card iframe {
        height: 250px;
    }
    
    .faq-summary {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .faq-answer {
        padding-right: 0;
        text-align: center;
    }
}

/* Landscape orientation for mobile */
@media screen and (max-width: 896px) and (orientation: landscape) {
    .contact-methods-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .contact-hero {
        padding: 1.5rem 0;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .contact-hero,
    .contact-grid-section,
    .map-section,
    .faq-section {
        padding: 1rem 0;
    }
    
    .social-link,
    .form-loader,
    #expedite-contact-form .material-icons-outlined {
        display: none;
    }
}

/* ========== Generic Page Template Styles ========== */

/* Page Hero Section */
.page-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, #f8f6f5 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(251, 71, 35, 0.1);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.page-hero-description {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Content Section */
.page-content-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.page-content {
    color: #334155;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Gutenberg Content Styling */
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: #0f172a;
    font-weight: 700;
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

.page-content h1 {
    font-size: 2.5rem;
}

.page-content h2 {
    font-size: 2rem;
}

.page-content h3 {
    font-size: 1.75rem;
}

.page-content h4 {
    font-size: 1.5rem;
}

.page-content h5 {
    font-size: 1.25rem;
}

.page-content h6 {
    font-size: 1.1rem;
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content a {
    color: #fb4723;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.page-content a:hover {
    border-bottom-color: #fb4723;
}

.page-content ul,
.page-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.page-content ul li {
    list-style-type: disc;
}

.page-content ol li {
    list-style-type: decimal;
}

.page-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #fb4723;
    background-color: #f8f6f5;
    font-style: italic;
    border-radius: 0 0.5rem 0.5rem 0;
}

.page-content blockquote p:last-child {
    margin-bottom: 0;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.page-content .wp-block-image {
    margin: 2rem 0;
}

.page-content .wp-block-image img {
    margin: 0;
}

.page-content .wp-block-image figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.page-content .wp-block-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
}

.page-content th,
.page-content td {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
}

.page-content th {
    background-color: #f8f6f5;
    font-weight: 600;
}

.page-content .wp-block-separator {
    margin: 3rem auto;
    border: none;
    border-top: 2px solid #e2e8f0;
    max-width: 100px;
}

.page-content .wp-block-separator.is-style-wide {
    max-width: 100%;
}

.page-content .wp-block-button {
    margin: 2rem 0;
}

.page-content .wp-block-button__link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #fb4723;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.2s;
    border: none;
}

.page-content .wp-block-button__link:hover {
    background-color: #d93616;
}

.page-content .wp-block-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.page-content .wp-block-cover {
    margin: 2rem 0;
    padding: 3rem;
    border-radius: 0.5rem;
}

/* Comments Section */
.comments-area {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f6f5;
    border-radius: 0.5rem;
}

.comment-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.comment-author {
    font-weight: 600;
    color: #0f172a;
}

.comment-author a {
    color: inherit;
}

.comment-metadata a {
    color: #64748b;
    text-decoration: none;
}

.comment-metadata a:hover {
    color: #fb4723;
}

.reply {
    margin-top: 1rem;
}

.reply a {
    color: #fb4723;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.reply a:hover {
    text-decoration: underline;
}

.comment-respond {
    margin-top: 3rem;
}

.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #fb4723;
}

.comment-form .form-submit {
    margin-top: 1rem;
}

.comment-form .submit {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #fb4723;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.comment-form .submit:hover {
    background-color: #d93616;
}

/* ========== Responsive Styles ========== */

/* Large Desktop (up to 1280px) */
@media screen and (max-width: 1280px) {
    .page-hero-title {
        font-size: 2.5rem;
    }
}

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .page-hero-title {
        font-size: 2.25rem;
    }
    
    .page-content {
        font-size: 1rem;
    }
}

/* Mobile (up to 768px) */
@media screen and (max-width: 768px) {
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-description {
        font-size: 1.1rem;
    }
    
    .page-content-section {
        padding: 2rem 0;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
    
    .page-content h2 {
        font-size: 1.75rem;
    }
    
    .page-content h3 {
        font-size: 1.5rem;
    }
    
    .page-content h4 {
        font-size: 1.25rem;
    }
    
    .page-content blockquote {
        padding: 1rem 1.5rem;
    }
    
    .page-content .wp-block-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .page-content .wp-block-cover {
        padding: 2rem;
    }
    
    .comment-respond {
        margin-top: 2rem;
    }
    
    .comment-form {
        gap: 1rem;
    }
}

/* Small Mobile (up to 480px) */
@media screen and (max-width: 480px) {
    .page-hero-title {
        font-size: 1.75rem;
    }
    
    .page-hero-description {
        font-size: 1rem;
    }
    
    .page-content h1 {
        font-size: 1.75rem;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
    }
    
    .page-content h3 {
        font-size: 1.25rem;
    }
    
    .page-content h4 {
        font-size: 1.1rem;
    }
    
    .page-content .wp-block-cover {
        padding: 1.5rem;
    }
    
    .comment {
        padding: 1rem;
    }
    
    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea {
        padding: 0.5rem;
    }
    
    .comment-form .submit {
        width: 100%;
        text-align: center;
    }
}