/* ===========================
   Reset and Base Styles
   =========================== */

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

:root {
    --primary-color: #4F46E5;
    --primary-hover: #4338CA;
    --secondary-color: #06B6D4;
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #6B7280;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-lighter: #F3F4F6;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

/* Touch-friendly targets */
a, button, input, select, textarea {
    touch-action: manipulation;
}

button, .btn-primary, .btn-secondary {
    min-height: 44px;
    min-width: 44px;
}

/* ===========================
   Typography
   =========================== */

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

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

/* ===========================
   Buttons
   =========================== */

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-large {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
}

/* ===========================
   Container
   =========================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.services {
    padding-top: 0;
}

section {
    padding: 5rem 0;
}

#pricing, #about, #process, #reviews, #faqs {
    position: relative;
    top: -25px;
    visibility: hidden;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

/* ===========================
   Header
   =========================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

#header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 87px;
    width: auto;
    display: block;
}

.nav-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-desktop a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary-color);
}

.nav-desktop a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.header-cta {
    display: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    max-height: 500px;
}

.mobile-nav a {
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    padding-top: 3.5rem;
    padding-bottom: 0;
    background: linear-gradient(to bottom, var(--bg-lighter), var(--bg-white));
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.hero-left {
    text-align: center;
    margin-top: -60px;
}

@media (max-width: 639px) {
    .hero-left {
        margin-top: 0;
    }

    .logo-image {
        height: 70px;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
    }

    .logo {
        position: static;
        transform: none;
    }

    .mobile-menu-toggle {
        position: static;
    }
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.trust-cues {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.trust-item .icon {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.hero-right {
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    margin-top: 0;
}

.hero-image {
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.hero-testimonial-overlay {
    position: absolute;
    bottom: 120px;
    right: 1.5rem;
    width: calc(100% - 3rem);
    max-width: 400px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.testimonial-author {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.875rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* ===========================
   Services Section
   =========================== */

.services {
    background-color: var(--bg-white);
}

.services-showcase {
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.services-showcase img {
    width: 100%;
    height: auto;
    display: block;
}

.plans {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card .btn-primary {
    margin-top: auto;
    width: 100%;
}

.plan-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.plan-featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.plan-tagline {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.plan-includes {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.plan-features-condensed {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-features-condensed li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.5;
    font-size: 0.9375rem;
}

.plan-features-condensed li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1rem;
}

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

.add-ons h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.add-on-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.add-on-tile {
    background-color: var(--bg-light);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.add-on-tile:hover {
    background-color: var(--bg-lighter);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.add-on-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* ===========================
   Process Section
   =========================== */

.process {
    background-color: var(--bg-light);
}

.process-showcase {
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.process-showcase img {
    width: 100%;
    height: auto;
    display: block;
}

.steps {
    display: grid;
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.step p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

/* ===========================
   Checklist Section
   =========================== */

.checklist {
    background-color: var(--bg-white);
}

.tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 0.75rem 2rem;
    background-color: var(--bg-light);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
    max-width: 700px;
    margin: 0 auto;
}

.tab-content.active {
    display: block;
}

.checklist-preview {
    list-style: none;
    margin-bottom: 2rem;
}

.checklist-preview li {
    padding: 0.875rem 1rem;
    padding-left: 2.5rem;
    background-color: var(--bg-light);
    margin-bottom: 0.5rem;
    border-radius: var(--radius-sm);
    position: relative;
}

.checklist-preview li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--success-color);
    font-weight: 700;
}

/* ===========================
   Pricing Overview Section
   =========================== */

.pricing-overview {
    background-color: var(--bg-white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.pricing-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-tagline {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.pricing-highlight {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.pricing-from {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: 0.25rem;
}

.pricing-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.pricing-detail {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin: 0;
}

.pricing-note {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.9375rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================
   Quote Form Section
   =========================== */

.quote-section {
    background-color: var(--bg-light);
}

.quote-disclaimer {
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 1px solid #BAE6FD;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.quote-disclaimer p {
    margin: 0;
    color: #0C4A6E;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.quote-disclaimer strong {
    color: #075985;
    font-weight: 600;
}

/* ===========================
   Supplies Section
   =========================== */

.supplies {
    background-color: var(--bg-light);
}

.supplies-showcase {
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.supplies-showcase img {
    width: 100%;
    height: auto;
    display: block;
}

.supplies-grid {
    display: grid;
    gap: 2rem;
}

.supply-category {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.supply-category h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.supply-category ul {
    list-style: none;
}

.supply-category li {
    padding: 0.625rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.supply-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.premium-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* ===========================
   Pricing Section
   =========================== */

.pricing {
    background-color: var(--bg-white);
}

.quote-form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    gap: 1rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group input.highlight {
    border-color: var(--primary-color);
    animation: highlight 1s ease;
}

@keyframes highlight {
    0%, 100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
    50% { box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.2); }
}

.form-note {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin-top: 1rem;
    font-style: italic;
}

.checkbox-group {
    display: grid;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-success {
    display: none;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    animation: successFadeIn 0.5s ease;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 48px;
    height: 48px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.25rem;
}

.form-success h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.success-message {
    font-size: 0.9375rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-next-steps {
    background: var(--bg-light);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    margin: 1.5rem auto;
    max-width: 500px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.success-next-steps h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.875rem;
    text-align: left;
    font-weight: 600;
}

.success-next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-next-steps li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.5;
    font-size: 0.9375rem;
}

.success-next-steps li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.success-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.success-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.success-note a:hover {
    text-decoration: underline;
}

/* ===========================
   Reviews Section
   =========================== */

.reviews {
    background-color: var(--bg-light);
}

.reviews-grid {
    display: grid;
    gap: 2rem;
}

.review-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.review-stars {
    color: #FBBF24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-author {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

/* ===========================
   FAQ Section
   =========================== */

.faqs {
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-white);
    border: none;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

/* ===========================
   About Section
   =========================== */

.about {
    background-color: var(--bg-light);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

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

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

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-image {
    width: 100%;
    max-width: 400px;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* ===========================
   Footer
   =========================== */

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.footer-section h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.875rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    column-gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
}

.now-accepting-footer {
    margin-top: 1rem;
}

.accepting-badge {
    display: inline-block;
    background-color: var(--success-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}


.footer-legal {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.8125rem;
}

/* ===========================
   Mobile Bottom CTA
   =========================== */

.mobile-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: transform 0.3s ease;
}

.mobile-bottom-cta .btn-primary {
    width: 100%;
}

/* ===========================
   Mobile Optimizations (< 640px)
   =========================== */

@media (max-width: 639px) {
    /* Hero Section Mobile */
    .hero {
        min-height: auto;
        padding-top: 10rem;
        padding-bottom: 2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .hero-content {
        gap: 1.25rem;
    }

    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    /* Hero Image Mobile */
    .hero-image-wrapper {
        margin-bottom: 0;
        margin-top: 1rem;
    }

    .hero-image img {
        max-height: 400px;
        object-fit: contain;
        width: 100%;
    }

    /* Testimonial Overlay Mobile */
    .hero-testimonial-overlay {
        position: static;
        margin-top: 1rem;
        margin-bottom: 1rem;
        width: 100%;
        max-width: none;
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .testimonial-author {
        font-size: 0.875rem;
    }

    .testimonial-stars {
        font-size: 1rem;
    }

    /* Section Spacing Mobile */
    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Service Plans Mobile */
    .plans {
        gap: 1.5rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .plan-card h3 {
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 2rem;
    }

    /* Quote Form Mobile */
    .quote-form-card {
        padding: 1.5rem;
    }

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

    .form-group label {
        font-size: 0.9375rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.625rem 0.875rem;
        font-size: 0.9375rem;
    }


    /* Steps Mobile */
    .steps {
        gap: 1.5rem;
    }

    .step {
        padding: 1.25rem;
    }

    .step-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    /* Reviews Mobile */
    .reviews-grid {
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.25rem;
    }

    /* FAQ Mobile */
    .faq-item {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9375rem;
    }

    /* About Section Mobile */
    .about-image img {
        max-height: 250px;
    }


    /* Footer Mobile */
    .footer-content {
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    /* Trust Cues Mobile */
    .trust-cue {
        font-size: 0.875rem;
    }

    .trust-cue strong {
        font-size: 1.125rem;
    }
}

/* ===========================
   Responsive Design - Tablet
   =========================== */

@media (min-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .trust-cues {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    /* Testimonial stays static on tablet */
    .hero-testimonial-overlay {
        position: static;
        margin-top: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image img {
        max-height: 400px;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .add-on-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   Responsive Design - Desktop
   =========================== */

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }

    .header-cta {
        display: block;
    }

    .mobile-menu-toggle,
    .mobile-nav,
    .mobile-bottom-cta {
        display: none;
    }

    .hero {
        padding-top: 4.5rem;
        padding-bottom: 0;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-left {
        text-align: left;
        flex: 1;
    }

    .hero-right {
        flex: 1;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    /* Restore absolute positioning for testimonial on desktop */
    .hero-testimonial-overlay {
        position: absolute;
        bottom: 120px;
        right: 1.5rem;
        width: calc(100% - 3rem);
        max-width: 400px;
        margin: 0;
    }

    .hero-left {
        margin-top: -40px;
    }

    .hero-image img {
        max-height: none;
    }

    .trust-cues {
        justify-content: flex-start;
    }

    .plans {
        grid-template-columns: repeat(2, 1fr);
    }

    .add-on-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 100%;
    }

    .steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .supplies-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-content {
        flex-direction: row;
        text-align: left;
    }

    .about-text {
        flex: 1;
        text-align: left;
    }

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

    .about-text p {
        margin-left: 0;
    }

    .about-image {
        flex: 1;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    section {
        padding: 6rem 0;
    }
}

/* ===========================
   Accessibility
   =========================== */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===========================
   Print Styles
   =========================== */

@media print {
    .header,
    .mobile-bottom-cta,
    .footer,
    .btn-primary,
    .btn-secondary {
        display: none;
    }
}
