/* ==========================================
   REFORMTECH - REFRIGERATOR REPAIR PAGE CSS
   Dedicated CSS for Refrigerator Repair Page
========================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #13343b;
    background-color: #f0f9ff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}



/* Header Styles */
.refrigerator-header {
    position: sticky;
    top: 0;
    background-color: #e0f2fe;
    border-bottom: 1px solid rgba(14, 165, 233, 0.12);
    z-index: 1000;
    transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.refrigerator-header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.refrigerator-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.refrigerator-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.refrigerator-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
}

/* Navigation */
.refrigerator-nav {
    display: flex;
    align-items: center;
}

.refrigerator-nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.refrigerator-nav-links a {
    color: #13343b;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.refrigerator-nav-links a:hover {
    color: #0ea5e9;
}

.refrigerator-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0ea5e9;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.refrigerator-nav-links a:hover::after {
    width: 100%;
}

.refrigerator-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.refrigerator-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #13343b;
}

/* Button Styles */
.refrigerator-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.5;
}

.refrigerator-btn:focus {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

.refrigerator-btn-primary {
    background-color: #0ea5e9;
    color: white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.refrigerator-btn-primary:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.refrigerator-btn-secondary {
    background-color: rgba(14, 165, 233, 0.12);
    color: #13343b;
}

.refrigerator-btn-secondary:hover {
    background-color: rgba(14, 165, 233, 0.2);
}

.refrigerator-btn-emergency {
    background-color: #dc2626;
    color: white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.refrigerator-btn-emergency:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.refrigerator-btn-whatsapp {
    background-color: #25d366;
    color: white;
    width: 100%;
    justify-content: center;
}

.refrigerator-btn-whatsapp:hover {
    background-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.refrigerator-btn svg {
    width: 18px;
    height: 18px;
}

/* Hero Section */
.refrigerator-hero {
    padding: 32px 16px;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.refrigerator-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.refrigerator-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.refrigerator-hero-content h1 {
    font-size: clamp(30px, 5vw, 36px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #13343b;
    letter-spacing: -0.01em;
}

.refrigerator-hero-content .refrigerator-highlight {
    color: #0ea5e9;
}

.refrigerator-hero-content p {
    font-size: clamp(14px, 2vw, 18px);
    color: #626c71;
    margin-bottom: 32px;
    line-height: 1.5;
}

.refrigerator-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.refrigerator-hero-actions .refrigerator-btn {
    font-size: 14px;
    padding: 16px 32px;
}

.refrigerator-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refrigerator-hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Breadcrumb */
.refrigerator-breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 12px;
    color: #626c71;
}

.refrigerator-breadcrumb a {
    color: #0ea5e9;
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.refrigerator-breadcrumb a:hover {
    text-decoration: underline;
}

.refrigerator-breadcrumb span {
    color: #626c71;
}

/* Section Header */
.refrigerator-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
}

.refrigerator-section-header h2 {
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 16px;
    color: #13343b;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.refrigerator-section-header p {
    font-size: 16px;
    color: #626c71;
    line-height: 1.5;
}

/* Container */
.refrigerator-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Problem Card Icon Styles */

.refrigerator-problems {
    padding: 32px 16px;
    background-color: #f0f9ff;
}

.refrigerator-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.refrigerator-problem-card {
    background: #e0f2fe;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.refrigerator-problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.refrigerator-problem-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0ea5e9;
}

.refrigerator-problem-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #13343b;
}

.refrigerator-problem-card ul {
    list-style: none;
    padding-left: 0;
}

.refrigerator-problem-card li {
    padding: 4px 0;
    color: #626c71;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.refrigerator-problem-card li::before {
    content: '•';
    color: #0ea5e9;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.refrigerator-problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Types of Refrigerators Section */
.refrigerator-types {
    padding: 48px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
}

.refrigerator-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.refrigerator-type-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.refrigerator-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: rgba(14, 165, 233, 0.2);
}

.refrigerator-type-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.refrigerator-type-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.refrigerator-type-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #13343b;
}

.refrigerator-type-card p {
    color: #626c71;
    font-size: 14px;
    line-height: 1.5;
}

/* Emergency Section */
.refrigerator-emergency {
    padding: 32px 16px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.refrigerator-emergency-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.refrigerator-emergency-icon {
    width: 64px;
    height: 64px;
    background: #fee2e2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refrigerator-emergency-icon svg {
    width: 32px;
    height: 32px;
    stroke: #dc2626;
}

.refrigerator-emergency-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #dc2626;
}

.refrigerator-emergency-text p {
    color: #626c71;
    font-size: 14px;
    line-height: 1.5;
}

.refrigerator-emergency-text strong {
    color: #dc2626;
}

/* Repair Process Section */
.refrigerator-process {
    padding: 48px 16px;
    background-color: #f0f9ff;
}

.refrigerator-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.refrigerator-process-step {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.refrigerator-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.refrigerator-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.refrigerator-process-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #13343b;
}

.refrigerator-process-step p {
    color: #626c71;
    font-size: 14px;
    line-height: 1.5;
}

/* Brands Section */
.refrigerator-brands {
    padding: 48px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
}

.refrigerator-disclaimer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
    background: #fef3c7;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    text-align: center;
}

.refrigerator-disclaimer p {
    color: #92400e;
    font-size: 14px;
    line-height: 1.5;
}

.refrigerator-disclaimer strong {
    font-weight: 600;
}

/* FAQ Section */
.refrigerator-faq {
    padding: 48px 16px;
    background-color: #f0f9ff;
}

.refrigerator-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.refrigerator-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.refrigerator-faq-item {
    background: white;
    border: 1px solid rgba(14, 165, 233, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.refrigerator-faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #13343b;
    transition: background-color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.refrigerator-faq-question:hover {
    background-color: rgba(14, 165, 233, 0.04);
}

.refrigerator-faq-question span {
    flex: 1;
    margin-right: 16px;
}

.refrigerator-faq-icon {
    width: 20px;
    height: 20px;
    stroke: #13343b;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.refrigerator-faq-item.active .refrigerator-faq-icon {
    transform: rotate(180deg);
}

.refrigerator-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.refrigerator-faq-item.active .refrigerator-faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

.refrigerator-faq-answer p {
    color: #626c71;
    font-size: 14px;
    line-height: 1.6;
}

.refrigerator-faq-answer strong {
    color: #13343b;
    font-weight: 600;
}

/* Booking Section */
.refrigerator-booking {
    padding: 48px 16px;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.refrigerator-booking-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.refrigerator-booking-content h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #13343b;
    line-height: 1.2;
}

.refrigerator-booking-content p {
    color: #626c71;
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.refrigerator-booking-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.refrigerator-booking-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.refrigerator-booking-feature svg {
    width: 20px;
    height: 20px;
    stroke: #0ea5e9;
    flex-shrink: 0;
}

.refrigerator-booking-feature span {
    color: #13343b;
    font-size: 14px;
}

.refrigerator-booking-form {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.12);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}

.refrigerator-booking-form h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #13343b;
}

.refrigerator-form-group {
    margin-bottom: 20px;
}

.refrigerator-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #13343b;
}

.refrigerator-form-group input,
.refrigerator-form-group select,
.refrigerator-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
}

.refrigerator-form-group input:focus,
.refrigerator-form-group select:focus,
.refrigerator-form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.refrigerator-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Mobile Bottom Navigation */
.refrigerator-mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    z-index: 999;
    display: none;
}

.refrigerator-mobile-nav-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 8px 0;
}

.refrigerator-mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 8px;
    color: #626c71;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.refrigerator-mobile-nav-link:hover {
    color: #0ea5e9;
}

.refrigerator-mobile-nav-link svg {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
    stroke: currentColor;
}

.refrigerator-mobile-nav-link span {
    font-size: 12px;
    font-weight: 500;
}

/* Footer */
.refrigerator-footer {
    background: #0f172a;
    color: white;
    padding: 48px 16px 24px;
}

.refrigerator-footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.refrigerator-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.refrigerator-footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f8fafc;
}

.refrigerator-footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0ea5e9;
}

.refrigerator-footer-section p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
}

.refrigerator-footer-links {
    list-style: none;
    padding: 0;
}

.refrigerator-footer-links li {
    margin-bottom: 12px;
}

.refrigerator-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.refrigerator-footer-links a:hover {
    color: #0ea5e9;
}

.refrigerator-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.refrigerator-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
}

.refrigerator-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: #0ea5e9;
    flex-shrink: 0;
    margin-top: 2px;
}

.refrigerator-contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.refrigerator-contact-item a:hover {
    color: #0ea5e9;
}

.refrigerator-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.refrigerator-footer-bottom p {
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.5;
}

.refrigerator-footer-bottom a {
    color: #0ea5e9;
    text-decoration: none;
}

.refrigerator-footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .refrigerator-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .refrigerator-booking-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .refrigerator-emergency-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .refrigerator-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(14, 165, 233, 0.1);
    }
    
    .refrigerator-nav-links.active {
        display: flex;
    }
    
    .refrigerator-menu-toggle {
        display: block;
    }
    
    .refrigerator-hero-actions {
        justify-content: center;
    }
    
    .refrigerator-hero-actions .refrigerator-btn {
        width: 100%;
        justify-content: center;
    }
    
    .refrigerator-mobile-nav {
        display: block;
    }
    
    .refrigerator-footer {
        padding-bottom: 80px; /* Space for mobile nav */
    }
}

@media (max-width: 640px) {
    .refrigerator-hero-content h1 {
        font-size: 28px;
    }
    
    .refrigerator-section-header h2 {
        font-size: 24px;
    }
    
    .refrigerator-booking-content h2 {
        font-size: 24px;
    }
    
    .refrigerator-process-steps,
    .refrigerator-types-grid,
    .refrigerator-problems-grid {
        grid-template-columns: 1fr;
    }
    
    .refrigerator-emergency-content {
        padding: 16px;
    }
    
    .refrigerator-booking-form {
        padding: 24px;
    }
}

/* Animation for hover effects */
.refrigerator-problem-card,
.refrigerator-type-card,
.refrigerator-process-step {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Print Styles */
@media print {
    .refrigerator-whatsapp-float,
    .refrigerator-menu-toggle,
    .refrigerator-btn:not(.refrigerator-btn-secondary),
    .refrigerator-mobile-nav {
        display: none !important;
    }
    
    .refrigerator-nav-links {
        display: flex !important;
    }
    
    body {
        font-size: 12px;
    }
    
    .refrigerator-footer {
        background: white !important;
        color: #13343b !important;
        padding: 24px 16px !important;
    }
    
    .refrigerator-footer-section h3 {
        color: #13343b !important;
    }
    
    .refrigerator-footer-section p,
    .refrigerator-footer-links a,
    .refrigerator-contact-item {
        color: #626c71 !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .refrigerator-btn-primary {
        border: 2px solid #13343b;
    }
    
    .refrigerator-problem-card,
    .refrigerator-type-card,
    .refrigerator-process-step {
        border: 2px solid #0ea5e9;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .refrigerator-whatsapp-float,
    .refrigerator-problem-card:hover,
    .refrigerator-type-card:hover,
    .refrigerator-process-step:hover,
    .refrigerator-btn:hover {
        transform: none !important;
    }
}