/* ============================================
   PRACTICAL PLUMBING - MAIN STYLESHEET
   Non-critical styles (loaded after initial render)
   ============================================ */

/* -------------------- Typography -------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.section-title .highlight {
    color: var(--secondary);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-light);
    max-width: 600px;
}

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

.section-header .section-subtitle {
    margin-inline: auto;
}

/* -------------------- Trust Bar -------------------- */
.trust-bar {
    padding: var(--space-2xl) 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--muted);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.trust-text strong {
    display: block;
    font-size: 0.9375rem;
}

.trust-text span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

@media (max-width: 1023px) {
    .trust-items { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
    .trust-items { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* -------------------- Services Section -------------------- */
.services-section {
    padding: var(--space-4xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--bg);
    border: 1px solid var(--muted);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.service-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(0,184,230,0.05) 0%, transparent 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    font-size: 0.9375rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: var(--space-sm);
}

.service-link svg {
    transition: transform var(--transition-fast);
}

.service-link:hover svg {
    transform: translateX(4px);
}

.service-link.disabled {
    color: var(--text-muted);
    cursor: default;
    pointer-events: none;
}

@media (max-width: 1023px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* -------------------- About Section -------------------- */
.about-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-content .lead {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.about-highlights {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge .badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .badge-text {
    font-size: 0.8125rem;
    opacity: 0.9;
}

@media (max-width: 1023px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; max-width: 400px; margin-inline: auto; }
}

/* -------------------- Why Section -------------------- */
.why-section {
    padding: var(--space-4xl) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.why-card {
    text-align: center;
    padding: var(--space-xl);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.why-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.why-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

@media (max-width: 1023px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* -------------------- Testimonials Section -------------------- */
.testimonials-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.testimonials-section .section-tag { color: var(--secondary); }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-title .highlight { color: var(--secondary); }
.testimonials-section .section-subtitle { color: rgba(255, 255, 255, 0.8); }

.testimonials-carousel { margin-top: var(--space-2xl); }
.carousel-track { overflow: visible; }

.testimonials-grid,
.carousel-slides {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .testimonials-grid,
    .carousel-slides { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .testimonials-grid,
    .carousel-slides { grid-template-columns: repeat(4, 1fr); }
}

.testimonial-card {
    background: white;
    color: var(--text);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.testimonial-text {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--muted);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-name {
    font-weight: 600;
    font-style: normal;
    display: block;
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-light);
}

.carousel-controls { display: none; }

.google-reviews-link {
    text-align: center;
    margin-top: var(--space-2xl);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* -------------------- Service Areas -------------------- */
.service-areas-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-alt);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.area-card {
    background: var(--bg);
    border: 1px solid var(--muted);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-fast);
}

.area-card:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.area-card.primary-area {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(0,184,230,0.1) 0%, transparent 100%);
}

.area-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
}

.area-icon svg {
    width: 100%;
    height: 100%;
    color: var(--secondary);
}

.area-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.area-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.area-note {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.areas-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    color: var(--text-light);
    font-size: 0.9375rem;
}

@media (max-width: 1023px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------------------- Contact Section -------------------- */
.contact-section {
    padding: var(--space-4xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

a.contact-method:hover {
    background: var(--primary);
    color: white;
}

a.contact-method:hover .method-icon {
    background: white;
}

a.contact-method:hover .method-icon svg {
    color: var(--primary);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.method-content strong {
    font-size: 0.9375rem;
    display: block;
}

.method-content span {
    font-size: 1rem;
    color: var(--text-light);
}

.emergency-notice {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
}

.emergency-notice svg {
    width: 24px;
    height: 24px;
    color: var(--error);
    flex-shrink: 0;
}

.emergency-notice strong {
    display: block;
    color: var(--error);
}

.emergency-notice p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 1023px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* -------------------- Contact Form -------------------- */
.contact-form-wrapper {
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.contact-form > p {
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
}

.required { color: var(--error); }
.required-alt { color: var(--secondary); font-weight: 500; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 184, 230, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--error);
}

.error-message {
    display: block;
    font-size: 0.8125rem;
    color: var(--error);
    margin-top: var(--space-xs);
    min-height: 1.2em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: calc(-1 * var(--space-sm));
    margin-bottom: var(--space-md);
    font-style: italic;
}

.checkbox-group {
    margin-bottom: var(--space-xl);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.9375rem;
}

.checkbox-label input {
    width: auto;
    margin-top: 3px;
}

.checkbox-label a {
    color: var(--secondary);
    text-decoration: underline;
}

.btn-full { width: 100%; }

.btn-loading { display: none; }

.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-success {
    display: none;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    margin-top: var(--space-lg);
}

.form-success.show { display: flex; }

.form-success svg {
    width: 24px;
    height: 24px;
    color: var(--success);
    flex-shrink: 0;
}

.form-success strong {
    color: var(--success);
    display: block;
}

.form-success p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.form-error {
    display: none;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
    margin-top: var(--space-lg);
}

.form-error.show { display: flex; }

.form-error svg {
    width: 24px;
    height: 24px;
    color: #ef4444;
    flex-shrink: 0;
}

.form-error strong {
    color: #ef4444;
    display: block;
}

.form-error p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.captcha-container {
    margin: var(--space-md) 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 639px) {
    .form-row { grid-template-columns: 1fr; }
}

/* -------------------- CTA Banner -------------------- */
.cta-banner {
    padding: var(--space-3xl) 0;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

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

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: #ffffff;
    margin-bottom: var(--space-sm);
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

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

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

/* -------------------- Footer -------------------- */
.main-footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo { margin-bottom: var(--space-lg); display: inline-block; }

.footer-logo-image {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

.footer-rebrand {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.footer-licenses {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.footer-social span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.footer-social a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    color: white;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-nav button {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9375rem;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: color var(--transition-fast);
}

.footer-nav button:hover { color: var(--secondary); }

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

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

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom p { margin-bottom: var(--space-sm); }

.footer-credit { font-size: 0.8125rem; }

.footer-regulatory {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-regulatory p { margin-bottom: var(--space-xs); }

.footer-regulatory a {
    color: var(--secondary);
    text-decoration: underline;
}

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

@media (max-width: 1023px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-desc { margin-inline: auto; }
    .footer-licenses { justify-content: center; }
    .footer-social { justify-content: center; }
}

/* -------------------- Mobile CTA -------------------- */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    padding: var(--space-md);
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: white;
    font-weight: 600;
    font-size: 1.0625rem;
}

@media (max-width: 1023px) {
    .mobile-cta { display: block; }
    .main-footer { padding-bottom: 100px; }
}

/* -------------------- Back to Top -------------------- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: var(--space-lg);
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 998;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-4px);
}

@media (max-width: 1023px) {
    .back-to-top { bottom: 80px; }
}

/* -------------------- Utilities -------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* -------------------- Quality Parts Section -------------------- */
.brand-logo {
    transition: all var(--transition-base);
    filter: grayscale(100%);
    opacity: 0.7;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.brand-logo img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Larger sizing for text-heavy logos */
.brand-logo img[alt="Kohler"],
.brand-logo img[alt="Price Pfister"],
.brand-logo img[alt="A.O. Smith"] {
    max-width: 280px;
    max-height: 120px;
}

.brand-logo img[alt="American Standard"] {
    max-width: 400px;
    max-height: 180px;
}

@media (max-width: 767px) {
    .brands-grid {
        gap: var(--space-lg) var(--space-xl);
    }

    .brand-logo img {
        max-width: 100px;
        max-height: 45px;
    }

    .brand-logo img[alt="Kohler"],
    .brand-logo img[alt="Price Pfister"],
    .brand-logo img[alt="A.O. Smith"] {
        max-width: 200px;
        max-height: 90px;
    }

    .brand-logo img[alt="American Standard"] {
        max-width: 280px;
        max-height: 135px;
    }
}

/* -------------------- FAQs Section -------------------- */
.faqs-section {
    padding: var(--space-4xl) 0;
    padding-bottom: calc(var(--space-4xl) + 120px);
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
}

.faqs-section .section-tag { color: var(--secondary); }
.faqs-section .section-title { color: white; }
.faqs-section .section-title .highlight { color: var(--secondary); }
.faqs-section .section-subtitle { color: rgba(255, 255, 255, 0.8); }

.faqs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.faq-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.faq-card.coming-soon {
    opacity: 0.85;
}

.faq-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: white;
}

.faq-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

@media (max-width: 639px) {
    .faqs-grid { grid-template-columns: 1fr; }
}

/* -------------------- About Section Enhancements -------------------- */
.about-image-wrapper {
    background: #ffffff;
    border: 3px solid #1a1a1a;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.about-logo-img {
    max-width: 250px;
    height: auto;
}

/* -------------------- Wave Dividers -------------------- */
.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.wave-divider.top {
    top: 0;
    transform: rotate(180deg);
}

.wave-divider.bottom {
    bottom: 0;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Sections with wave dividers need relative positioning */
.trust-bar,
.services-section,
.about-section,
.why-section,
.testimonials-section,
.service-areas-section,
.quality-parts-section,
.faqs-section,
.contact-section {
    position: relative;
}

.trust-bar {
    padding-bottom: calc(var(--space-2xl) + 120px);
}

.services-section {
    padding-bottom: calc(var(--space-4xl) + 120px);
}

.about-section {
    padding-bottom: calc(var(--space-4xl) + 120px);
}

.why-section {
    padding-bottom: calc(var(--space-4xl) + 120px);
}

.testimonials-section {
    padding-bottom: calc(var(--space-4xl) + 120px);
}

.service-areas-section {
    padding-bottom: calc(var(--space-4xl) + 120px);
}

.quality-parts-section {
    padding-bottom: calc(var(--space-4xl) + 120px);
}

.contact-section {
    padding-bottom: calc(var(--space-4xl) + 120px);
}

/* -------------------- Hero Bubbles Animation -------------------- */
.hero-bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: rgba(0, 184, 230, 0.15);
    border-radius: 50%;
    animation: bubbleRise 8s ease-in-out infinite;
}

.bubble-1 {
    width: 20px;
    height: 20px;
    left: 10%;
    bottom: -20px;
    animation-delay: 0s;
    animation-duration: 7s;
}

.bubble-2 {
    width: 30px;
    height: 30px;
    left: 25%;
    bottom: -30px;
    animation-delay: 1.5s;
    animation-duration: 9s;
}

.bubble-3 {
    width: 15px;
    height: 15px;
    left: 50%;
    bottom: -15px;
    animation-delay: 3s;
    animation-duration: 6s;
}

.bubble-4 {
    width: 25px;
    height: 25px;
    left: 70%;
    bottom: -25px;
    animation-delay: 2s;
    animation-duration: 8s;
}

.bubble-5 {
    width: 18px;
    height: 18px;
    left: 85%;
    bottom: -18px;
    animation-delay: 4s;
    animation-duration: 7.5s;
}

/* -------------------- Service Card Animations -------------------- */
.service-card {
    transition: all var(--transition-base), transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card .service-icon img {
    transition: transform var(--transition-base);
}

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

/* -------------------- Form Enhancements -------------------- */
.form-group .optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.recaptcha-notice {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.recaptcha-notice a {
    color: var(--secondary);
}

/* -------------------- Footer Legal Links -------------------- */
.footer-legal {
    margin-top: var(--space-md);
    font-size: 0.875rem;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

/* -------------------- Service Areas Grid Enhancement -------------------- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
}

@media (max-width: 1023px) {
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 639px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
