/**
 * Washington Home Improvements - Service Page Styles
 * Specific layouts for service pages, contact, and about
 */

/* ========================================
   MODERN SERVICE HERO
   ======================================== */

.service-hero-modern {
    background: white;
    padding: var(--space-3xl) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.service-hero-content {
    max-width: 600px;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9100 0%, #ff7c00 100%);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    border: 2px solid #ff9100;
}

.service-hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-hero-title .highlight {
    display: block;
    color: #ff9100;
}

.service-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    color: #1a2332;
}

.service-hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.service-trust-badges {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.trust-badge-small {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 145, 0, 0.1);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    border: 2px solid #ff9100;
}

.trust-badge-small .badge-icon {
    font-size: 1rem;
}

.trust-badge-small .badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1a2332;
}

.service-hero-image {
    position: relative;
}

.service-hero-image .image-placeholder {
    background: #1a2332;
    border-radius: var(--radius-lg);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    border: 2px dashed #87CEEB;
}

/* ========================================
   SERVICES DETAIL SECTION
   ======================================== */

.services-detail-section {
    background: #f8f9fa;
    padding: var(--space-3xl) 0;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #1a2332;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #1a2332;
    opacity: 0.8;
}

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

/* Center last row when only 2 cards remain */
.services-grid .service-detail-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 1 / 2;
}

.services-grid .service-detail-card:nth-last-child(1):nth-child(3n + 2) {
    grid-column: 2 / 3;
}

.services-grid .service-detail-card:nth-last-child(2):nth-child(3n + 1),
.services-grid .service-detail-card:nth-last-child(1):nth-child(3n + 2) {
    margin: 0 auto;
    max-width: 100%;
}

/* Simpler approach - just center the last 2 cards */
.services-grid:has(.service-detail-card:nth-child(6):last-child) .service-detail-card:nth-child(5) {
    grid-column: 2 / 3;
}

.services-grid:has(.service-detail-card:nth-child(6):last-child) .service-detail-card:nth-child(6) {
    grid-column: 3 / 4;
}

.service-detail-card {
    background: #1a2332;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid #ff9100;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: #87CEEB;
    box-shadow: 0 8px 24px rgba(135, 206, 235, 0.3);
    transform: translateY(-4px);
}

.service-card-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.service-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(135, 206, 235, 0.3));
    transition: transform 0.3s ease;
}

/* Match light blue glow for Range Hood & Microwave (30.png) - same as other icons */
.service-card-image img[src*="30.png"] {
    filter: drop-shadow(0 4px 12px rgba(135, 206, 235, 0.3));
}

.service-detail-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #87CEEB;
    margin-bottom: var(--space-sm);
    letter-spacing: 0;
}

.service-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
}

/* ========================================
   HVAC SOLUTIONS CONTENT SECTION
   ======================================== */

.hvac-solutions-section {
    background: #f8f9fa;
    padding: var(--space-3xl) 0;
}

.hvac-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hvac-solutions-content {
    max-width: 600px;
}

.hvac-solutions-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #1a2332;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
}

.hvac-solutions-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #1a2332;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.hvac-services-checklist {
    margin-top: var(--space-xl);
}

.hvac-checklist-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff9100;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    font-size: 1rem;
    line-height: 1.8;
    color: #1a2332;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    position: relative;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff9100;
    font-weight: 900;
    font-size: 1.2rem;
}

.hvac-solutions-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hvac-solutions-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hvac-solutions-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: #d1d5db;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    font-size: 1rem;
    opacity: 0.6;
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */

.why-choose-section {
    background: #1a2332;
    padding: var(--space-3xl) 0;
}

.why-choose-section .section-title {
    color: #87CEEB;
}

.why-choose-section .section-subtitle {
    color: white;
    opacity: 0.9;
}

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

.why-choose-card {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 145, 0, 0.1);
    border-radius: var(--radius-lg);
    border: 2px solid #ff9100;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    background: rgba(135, 206, 235, 0.1);
    border-color: #87CEEB;
    box-shadow: 0 8px 24px rgba(135, 206, 235, 0.3);
    transform: translateY(-4px);
}

.why-choose-icon {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.why-choose-icon img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(135, 206, 235, 0.3));
    transition: transform 0.3s ease;
}

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

.why-choose-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #87CEEB;
    margin-bottom: var(--space-sm);
}

.why-choose-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: white;
}

/* ========================================
   QUOTE FORM SECTION
   ======================================== */

.quote-form-section {
    background: #f9fafb;
    padding: var(--space-3xl) 0;
    position: relative;
}

.quote-form-wrapper {
    background: white;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid #ff9100;
    position: relative;
    overflow: hidden;
}

.quote-form-content {
    padding: 3rem 3rem 3.5rem;
}

.quote-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-form-header .section-title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: #111827;
    font-weight: 800;
}

.quote-form-header .section-subtitle {
    font-size: 1.0625rem;
    color: #6b7280;
    font-weight: 400;
}

.modern-quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.modern-quote-form .form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.modern-quote-form label {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.modern-quote-form input,
.modern-quote-form select,
.modern-quote-form textarea {
    padding: 1rem 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    color: #1a2332;
    background: white;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    width: 100%;
}

.modern-quote-form input::placeholder,
.modern-quote-form select::placeholder,
.modern-quote-form textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
    font-size: 1rem;
}

.modern-quote-form input:focus,
.modern-quote-form select:focus,
.modern-quote-form textarea:focus {
    outline: none;
    border-color: #ff9100;
    box-shadow: 0 0 0 3px rgba(255, 145, 0, 0.1);
}


.modern-quote-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.modern-quote-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
    padding-top: 1.125rem;
}

/* Input Icons - REMOVED for now to avoid overlap */
.modern-quote-form .form-group::before {
    display: none;
}

/* Icon backgrounds using SVG */
.modern-quote-form .form-group[data-icon="user"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.modern-quote-form .form-group[data-icon="phone"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.modern-quote-form .form-group[data-icon="email"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}

.modern-quote-form .form-group[data-icon="clipboard"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/%3E%3Crect x='8' y='2' width='8' height='4' rx='1' ry='1'/%3E%3C/svg%3E");
}

.modern-quote-form .form-group[data-icon="edit"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/%3E%3Cpath d='M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z'/%3E%3C/svg%3E");
}

.form-actions {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-primary {
    background: #ff9100;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    max-width: 500px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary::after {
    content: '→';
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    background: #e68200;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 145, 0, 0.25);
}

.btn-primary:hover::after {
    transform: translateX(3px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Form Trust Badges */
.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.form-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #6b7280;
    font-weight: 500;
}

.form-trust-badge-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.form-message {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 968px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .service-hero-image .image-placeholder {
        min-height: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .modern-quote-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Reset centered cards on mobile */
    .services-grid:has(.service-detail-card:nth-child(6):last-child) .service-detail-card:nth-child(5),
    .services-grid:has(.service-detail-card:nth-child(6):last-child) .service-detail-card:nth-child(6) {
        grid-column: auto;
    }

    /* HVAC Solutions responsive */
    .hvac-solutions-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hvac-solutions-image .image-placeholder {
        height: 350px;
    }
}

@media (max-width: 640px) {
    .service-hero-modern {
        padding: var(--space-2xl) 0;
    }

    .service-hero-image .image-placeholder {
        min-height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-ctas {
        flex-direction: column;
    }

    .service-hero-ctas .btn {
        width: 100%;
    }

    .quote-form-wrapper {
        padding: var(--space-xl);
    }
}

/* ========================================
   OLD SERVICE HERO SECTIONS (Legacy)
   ======================================== */

.service-hero {
    padding: var(--spacing-section) 0;
    position: relative;
    overflow: hidden;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-icon-large {
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.icon-animated path,
.icon-animated rect,
.icon-animated circle {
    transition: all 0.3s ease;
}

.service-hero:hover .icon-animated path {
    fill: var(--color-off-white);
}

/* ========================================
   SERVICE OVERVIEW
   ======================================== */

.service-overview {
    padding: var(--spacing-section) 0;
}

.service-features {
    background: var(--color-off-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    border-left: 4px solid var(--color-yellow);
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-yellow);
    font-weight: bold;
    font-size: 1.25rem;
}

.service-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.image-placeholder {
    border: 2px dashed var(--color-off-white);
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose {
    padding: var(--spacing-section) 0;
}

.feature-card {
    padding: var(--spacing-lg);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-yellow);
}

.feature-icon {
    font-size: 3rem;
    line-height: 1;
}

.feature-card h3 {
    color: var(--color-off-white);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ========================================
   QUOTE FORM ON SERVICE PAGES
   ======================================== */

.quote-form-wrapper {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.quote-form .form-row {
    margin-bottom: var(--spacing-md);
}

.quote-form .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-grey);
    font-size: 0.95rem;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.form-error {
    color: var(--color-red);
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    display: none;
}

.form-group.has-error .form-error {
    display: block;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-actions {
    margin-top: var(--spacing-lg);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 4px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   CONTACT PAGE SPECIFIC
   ======================================== */

.contact-hero {
    padding: var(--spacing-xl) 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-card {
    padding: var(--spacing-lg);
    background: var(--color-off-white);
    border-radius: 8px;
    border-left: 4px solid var(--color-yellow);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.contact-card h3 {
    color: var(--color-grey);
}

.contact-card a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-card a:hover {
    opacity: 0.8;
}

.quick-services {
    background: var(--color-off-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
}

.service-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-links li {
    margin-bottom: var(--spacing-sm);
}

.service-links a {
    color: var(--color-grey);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.service-links a::before {
    content: "→ ";
    color: var(--color-yellow);
    margin-right: var(--spacing-xs);
}

.service-links a:hover {
    color: var(--color-yellow);
    transform: translateX(5px);
}

/* ========================================
   ABOUT PAGE SPECIFIC
   ======================================== */

.about-hero {
    padding: var(--spacing-xl) 0;
}

.value-card {
    padding: var(--spacing-xl);
}

.value-card h3 {
    font-size: var(--font-size-lg);
}

.value-card p {
    color: rgba(255, 255, 255, 0.85);
}

.service-item {
    padding: var(--spacing-lg);
    background: var(--color-off-white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-item h3 {
    font-size: var(--font-size-md);
}

.benefit-card {
    padding: var(--spacing-lg);
    border-radius: 8px;
    background: rgba(136, 0, 0, 0.1);
    border: 2px solid rgba(136, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    line-height: 1;
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .service-overview .grid,
    .contact-methods .grid,
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .service-hero-content h1 {
        font-size: var(--font-size-xl);
    }

    .service-hero-content p.lead {
        font-size: var(--font-size-md);
    }

    .quote-form-wrapper {
        padding: var(--spacing-lg);
    }

    .form-row.grid {
        grid-template-columns: 1fr !important;
    }

    .feature-card,
    .value-card,
    .benefit-card {
        padding: var(--spacing-md);
    }

    .service-icon-large svg {
        width: 80px;
        height: 80px;
    }

    .col-span-2 {
        grid-column: span 1;
    }
}

/* ========================================
   UTILITY CLASSES FOR SERVICE PAGES
   ======================================== */

.hover-underline:hover {
    text-decoration: underline;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

/* Service page CTA spacing */
.cta-section {
    padding: var(--spacing-section) 0;
}

/* Emergency CTA styling */
.bg-red {
    background: var(--color-red);
}

.bg-red .btn-yellow:hover {
    background: var(--color-off-white);
    color: var(--color-red);
}

/* ========================================
   SERVICE IMAGE SECTION
   ======================================== */

.service-image-section {
    padding: var(--space-3xl) 0;
    background: #f8f9fa;
}

.service-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .service-image-section {
        padding: var(--space-xl) 0;
    }
    
    .service-image-wrapper {
        border-radius: 12px;
    }
}
