/* ========== TOAST NOTIFICATION ========== */
.toast-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateX(calc(100% + 24px));
    transition: transform 0.3s ease;
    max-width: 420px;
}

.toast-notification.toast-visible {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    flex-shrink: 0;
}

.toast-content span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.toast-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.toast-error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

@media (max-width: 480px) {
    .toast-notification {
        top: 12px;
        right: 12px;
        left: 12px;
        max-width: none;
    }
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1B3A2D;
    --color-accent: #2D6A4F;
    --color-accent-dark: #1B4332;
    --color-white: #FFFFFF;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F0F7F4;
    --color-bg-dark: #111111;
    --color-text: #1A1A1A;
    --color-text-secondary: #666666;
    --color-text-light: #999999;
    --color-border: #E8E8E8;
    --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --nav-height: 80px;
    --container-max: 1400px;
    --section-padding: 100px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; font-size: inherit; color: inherit; }

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 { font-size: clamp(48px, 7vw, 80px); }
h2 { font-size: clamp(36px, 5vw, 56px); }

h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.3;
}

.text-accent { color: var(--color-accent); }

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--color-accent);
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-label::before { display: none; }
.section-header .section-label { padding-left: 0; }

.section-subtitle {
    max-width: 560px;
    margin: 16px auto 0;
    color: var(--color-text-secondary);
    font-size: 16px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition);
    white-space: nowrap;
    gap: 8px;
}

.btn-primary { background: var(--color-primary); color: var(--color-white); }
.btn-primary:hover { background: #222; transform: translateY(-1px); }

.btn-accent { background: var(--color-accent); color: var(--color-white); }
.btn-accent:hover { background: var(--color-accent-dark); transform: translateY(-1px); }

.btn-dark { background: var(--color-primary); color: var(--color-white); }
.btn-dark:hover { background: #222; transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); }

.btn-outline-light { background: transparent; color: var(--color-white); border: 2px solid var(--color-white); }
.btn-outline-light:hover { background: var(--color-white); color: var(--color-primary); }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition);
    background: var(--color-white);
    box-shadow: 0 1px 0 var(--color-border);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--color-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Language Switcher */
.lang-switcher { position: relative; }

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 4px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
}

.lang-btn:hover { background: var(--color-bg-alt); }
.lang-flag { font-size: 0; line-height: 0; display: inline-flex; align-items: center; }
.lang-flag img, .lang-option img, .mobile-lang-btn img { width: 20px; height: 15px; object-fit: cover; border-radius: 2px; vertical-align: middle; }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 6px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    transition: background var(--transition);
}

.lang-option:hover { background: var(--color-bg-alt); }
.lang-option.active { color: var(--color-accent); background: rgba(230, 57, 70, 0.06); }

.nav-cta { padding: 10px 24px; font-size: 14px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition);
    border-radius: 1px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -70%;
    width: 70%;
    height: 100vh;
    background: var(--color-white);
    padding: 100px 32px 40px;
    transition: left var(--transition-slow);
    z-index: 999;
    box-shadow: 4px 0 32px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-menu.open { left: 0; }

.mobile-nav-links { margin-bottom: 32px; }
.mobile-nav-links li { border-bottom: 1px solid var(--color-border); }
.mobile-nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
}

.mobile-lang-switcher {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.mobile-lang-btn {
    padding: 10px 16px;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
}

.mobile-lang-btn.active {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.mobile-cta { width: 100%; text-align: center; }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-overlay.open { opacity: 1; }

/* ========== HERO ========== */
.hero-wrapper {
    padding-top: calc(var(--nav-height) + 16px);
    padding-bottom: 16px;
    background: var(--color-bg);
}

.hero-wrapper .container {
    max-width: 1600px;
}

.hero-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 8, 8, 0.88) 0%,
        rgba(12, 22, 16, 0.60) 50%,
        rgba(20, 40, 30, 0.12) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 56px 56px;
    width: 100%;
}

.hero-text {
    max-width: 520px;
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.hero-card h1 {
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.05;
    font-size: clamp(40px, 5.5vw, 64px);
}

.hero-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

.hero-badges {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hero-badge-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 106, 79, 0.9);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-badge-icon svg {
    width: 14px;
    height: 14px;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.hiw-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 16px;
}

.hiw-step {
    flex: 1;
    max-width: 340px;
    text-align: center;
    padding: 40px 32px;
    border-radius: 16px;
    position: relative;
    transition: all var(--transition);
}

.hiw-step:hover {
    background: var(--color-white);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.hiw-step-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 20px;
    transition: color var(--transition);
}

.hiw-step:hover .hiw-step-number {
    color: var(--color-accent);
}

.hiw-step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    margin: 0 auto 24px;
    transition: all var(--transition);
}

.hiw-step:hover .hiw-step-icon {
    background: var(--color-accent);
    transform: scale(1.08);
}

.hiw-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hiw-step p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.hiw-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-border);
    padding-top: 100px;
    flex-shrink: 0;
}

/* ========== SERVICES ========== */
.services {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 20px;
    transition: all var(--transition);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
    transform: scaleY(0);
    transition: transform var(--transition);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    border-color: rgba(230, 57, 70, 0.2);
}

.service-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.08);
    border-radius: 10px;
    color: var(--color-accent);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.05);
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* ========== STATS BANNER ========== */
.stats-banner {
    background: var(--color-bg-dark);
    padding: 64px 0;
    overflow: hidden;
    position: relative;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
}

.stats-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.stats-text {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stats-number {
    font-family: var(--font-display);
    font-size: 72px;
    color: var(--color-accent);
    line-height: 1;
    letter-spacing: 0.02em;
}

.stats-banner h2 {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--color-white);
    max-width: 480px;
}

/* ========== BRANDS MARQUEE ========== */
.brands {
    padding: 64px 0;
    background: var(--color-white);
    overflow: hidden;
}

.brands .section-header {
    margin-bottom: 48px;
}

.brands-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 8px 16px;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s ease;
}

.brand-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.brand-logo img {
    max-height: 100%;
    max-width: 140px;
    object-fit: contain;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== WHY CHOOSE US ========== */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-header .section-subtitle { margin: 16px 0 0; text-align: left; }

.why-us-benefits { display: flex; flex-direction: column; }

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition);
}

.benefit-item:first-child { border-top: 1px solid var(--color-border); }

.benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border-radius: 50%;
    color: var(--color-accent);
    transition: all var(--transition);
}

.benefit-text h4 {
    transition: color var(--transition);
}

.benefit-text { flex: 1; }
.benefit-text h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.benefit-text p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.5; }

.benefit-arrow {
    display: none;
}

.benefit-item:hover .benefit-icon {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.05);
}

.benefit-item:hover .benefit-text h4 {
    color: var(--color-accent);
}

/* Why Us Image */
.why-us-image {
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.why-us-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.why-us-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    pointer-events: none;
}

/* ========== FAQ ========== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.faq-header .section-subtitle { text-align: left; margin: 16px 0 0; }

/* FAQ Image */
.faq-image {
    margin-top: 28px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.faq-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.faq-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    pointer-events: none;
}

.faq-contact { margin-top: 28px; }
.faq-contact p { font-size: 15px; color: var(--color-text-secondary); margin-bottom: 16px; }

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: var(--color-text);
    transition: color var(--transition);
    padding-right: 40px;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 24px;
    font-weight: 300;
    color: var(--color-text-light);
    transition: all var(--transition);
}

.faq-item.open .faq-question::after { content: '\2212'; color: var(--color-accent); }
.faq-question:hover { color: var(--color-accent); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 20px; }

.faq-answer p {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== APPOINTMENT FORM ========== */
.appointment {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.appointment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.appointment-gallery {
    position: relative;
    height: 400px;
}

.gallery-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--color-bg-alt);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.gallery-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
    z-index: 2;
}

.gallery-badge-number {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.gallery-badge-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.9;
}

/* Appointment Contact */
.appointment-contact {
    background: var(--color-white);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--color-border);
}

.appointment-contact h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-row-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.08);
    border-radius: 10px;
    color: var(--color-accent);
}

.contact-row-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-row-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.contact-row-text span {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.contact-row-text a {
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 500;
    transition: color var(--transition);
}

.contact-row-text a:hover {
    color: var(--color-accent-dark);
}

.appointment-form-wrapper {
    position: relative;
}

.appointment-form-wrapper h2 { margin-bottom: 0; }
.appointment-form-wrapper .section-subtitle { text-align: left; margin: 12px 0 28px; }

.appointment-form {
    background: var(--color-white);
    border-radius: 16px;
    padding: 0;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.form-body {
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    background: var(--color-bg-alt);
    border: 1.5px solid transparent;
    border-radius: 10px;
    transition: all var(--transition);
    outline: none;
    height: 46px;
    box-sizing: border-box;
}

.form-group textarea {
    height: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08);
}

.form-group textarea { resize: vertical; min-height: 80px; }

/* Property Type Selector */
.property-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.property-type-option {
    cursor: pointer;
    margin: 0;
}

.property-type-option input[type="radio"] {
    display: none;
}

.property-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    border: 2px solid var(--color-border, #e0e0e0);
    border-radius: 10px;
    background: var(--color-white, #fff);
    transition: all 0.25s ease;
    text-align: center;
}

.property-type-card i {
    font-size: 18px;
    color: var(--color-text-muted, #777);
    transition: color 0.25s ease;
}

.property-type-card span:not(.service-fee) {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-text, #1a1a1a);
}

.property-type-card .service-fee {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent, #e63946);
    background: rgba(230, 57, 70, 0.08);
    padding: 3px 8px;
    border-radius: 20px;
}

.property-type-option input[type="radio"]:checked + .property-type-card {
    border-color: var(--color-accent, #e63946);
    background: rgba(230, 57, 70, 0.04);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
}

.property-type-option input[type="radio"]:checked + .property-type-card i {
    color: var(--color-accent, #e63946);
}

/* Date input mobile fix */
.form-group input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color-scheme: light;
    position: relative;
}

.form-group input[type="date"]::-webkit-datetime-edit,
.form-group input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.form-group input[type="date"]::-webkit-datetime-edit-text,
.form-group input[type="date"]::-webkit-datetime-edit-month-field,
.form-group input[type="date"]::-webkit-datetime-edit-day-field,
.form-group input[type="date"]::-webkit-datetime-edit-year-field {
    color: var(--color-text);
    opacity: 1;
    display: inline-block;
    padding: 0;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 1;
    cursor: pointer;
    padding: 4px;
    margin: 0;
    font-size: 16px;
}

/* Empty date input placeholder style */
.form-group input[type="date"]:invalid::-webkit-datetime-edit {
    color: var(--color-text-light);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 4px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 4px;
}

/* ========== REVIEWS ========== */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.reviews-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
    padding: 36px 48px;
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.review-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.stat-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-detail .stars {
    color: #F59E0B;
    font-size: 16px;
    letter-spacing: 2px;
}

.stat-detail span {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.review-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--color-border);
}

.reviews-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.reviews-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    width: calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    flex-shrink: 0;
}

.review-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: transparent;
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.reviews-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--color-text);
}

.reviews-nav-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.reviews-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.reviews-dots {
    display: flex;
    gap: 8px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all var(--transition);
}

.reviews-dot.active {
    background: var(--color-accent);
    width: 28px;
    border-radius: 5px;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.review-stars {
    color: #F59E0B;
    font-size: 16px;
    letter-spacing: 2px;
}

.google-icon {
    flex-shrink: 0;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.review-date {
    font-size: 12px;
    color: var(--color-text-light);
}

@media (max-width: 1024px) {
    .review-card {
        width: calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .review-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

/* ========== DISCOUNTS ========== */
.discounts {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.discount-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 0;
    transition: all var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.discount-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.discount-top {
    background: var(--color-primary);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.discount-top::after {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.15);
}

.discount-percent {
    font-family: var(--font-display);
    font-size: 52px;
    line-height: 1;
    color: var(--color-accent);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.discount-percent-label {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.discount-percent-label span:first-child {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-white);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.discount-percent-label span:last-child {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.discount-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.discount-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.08);
    border-radius: 10px;
    color: var(--color-accent);
    margin-bottom: 14px;
    transition: all var(--transition);
}

.discount-card:hover .discount-icon {
    background: var(--color-accent);
    color: var(--color-white);
}

.discount-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.discount-card > .discount-body > p {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.discount-card .btn {
    padding: 12px 24px;
    font-size: 14px;
    align-self: flex-start;
}

.discounts-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.discounts-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ========== BOOKING ========== */
.booking {
    padding: 80px 0;
    background: var(--color-accent);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: 'VMF';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 240px;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    pointer-events: none;
}

.booking h2 { color: var(--color-white); margin-bottom: 12px; }

.booking p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.booking-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
.footer {
    background: #0D0D0D;
    color: rgba(255,255,255,0.65);
    padding: 64px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { height: 64px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    place-items: center;
}

.footer-col h4 { color: var(--color-white); font-size: 15px; font-weight: 600; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--color-white); }

.footer-contact h4 { color: var(--color-white); font-size: 15px; font-weight: 600; margin-bottom: 20px; }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact-item svg { min-width: 18px; color: var(--color-accent); }
.footer-contact-item a:hover { color: var(--color-white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 13px;
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--color-white); }

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
    z-index: 900;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-accent); transform: translateY(-2px); }

/* ========== BRAND PAGE - HERO ========== */
.brand-hero {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #1a1a2e 100%);
    padding: calc(var(--nav-height) + 48px) 0 64px;
    color: var(--color-white);
    overflow: hidden;
}

.brand-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.brand-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 40px;
    padding: 10px 28px 10px 14px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.brand-hero-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.brand-hero-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-hero-content h1 {
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.1;
    margin: 0 0 20px;
    font-weight: 800;
}

.brand-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin: 0 0 32px;
    max-width: 500px;
}

.brand-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.brand-hero-content .hero-badges {
    margin-top: 0;
}

.brand-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.brand-hero-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-4px);
}

.brand-hero-card-icon {
    color: var(--color-accent);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-hero-card span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

/* ========== BRAND PAGE - LOGO SHOWCASE ========== */
.brand-hero-logo-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
}

.brand-hero-logo-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(230, 57, 70, 0.06) 0%, transparent 70%);
}

.brand-hero-logo-showcase img {
    max-width: 420px;
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* ========== BRAND PAGE - EXPERTISE ========== */
.brand-expertise {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.expertise-card--wide {
    grid-column: span 1;
}

.expertise-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.expertise-card-inner {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: all var(--transition);
    position: relative;
}

.expertise-card-inner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.expertise-card:hover .expertise-card-inner::before {
    transform: scaleX(1);
}

.expertise-card:hover .expertise-card-inner {
    background: var(--color-white);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: transparent;
}

.expertise-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 14px;
    color: var(--color-accent);
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.1);
    transition: all var(--transition);
}

.expertise-card:hover .expertise-icon {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
    transform: scale(1.08);
}

.expertise-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--color-text);
}

.expertise-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ========== REFRIGERATOR PAGE - HERO ========== */
.refrig-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    min-height: 560px;
    margin-top: var(--nav-height);
    width: 100%;
}

.refrig-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.refrig-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.refrig-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.refrig-hero-image img {
    max-height: 480px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.refrig-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 56px 56px 0;
}

.refrig-hero-content .hero-label {
    color: var(--color-accent);
}

.refrig-hero-content h1 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
}

.refrig-hero-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.refrig-hero-content .hero-badges {
    margin-top: 32px;
}

/* ========== PROBLEMS SECTION ========== */
.problems {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--color-bg-alt);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid transparent;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    background: var(--color-white);
    border-color: var(--color-border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

.problem-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 14px;
    color: var(--color-accent);
    margin-bottom: 20px;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.1);
}

.problem-card:hover .problem-icon {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
    transform: scale(1.08);
}

.problem-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--color-text);
}

.problem-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ========== REPAIR PROCESS ========== */
.repair-process {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, var(--color-accent), var(--color-border) 33%, var(--color-border) 66%, var(--color-accent));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 24px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 12px;
    margin: 0 auto 16px;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.process-step:hover .step-icon {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* ========== BRANDS SECTION ========== */
.brands-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.brand-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.02em;
    transition: all var(--transition);
    cursor: default;
}

.brand-card:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed { opacity: 1; transform: translateY(0); }

.appointment-form-wrapper.reveal {
    opacity: 1;
    transform: none;
}

.hiw-steps .reveal:nth-child(2) { transition-delay: 0.15s; }
.hiw-steps .reveal:nth-child(3) { transition-delay: 0.3s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.05s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(7) { transition-delay: 0.15s; }
.services-grid .reveal:nth-child(8) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(9) { transition-delay: 0.05s; }
.services-grid .reveal:nth-child(10) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(11) { transition-delay: 0.15s; }
.services-grid .reveal:nth-child(12) { transition-delay: 0.2s; }

/* ========== SERVICE AREAS ========== */
.service-areas {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.area-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.area-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.area-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.area-card-icon svg {
    width: 20px;
    height: 20px;
}

.area-card-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.3;
}

.service-areas .section-header .section-label {
    color: var(--color-accent);
}

.service-areas .section-header h2 {
    color: var(--color-white);
}

.service-areas .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ========== RESPONSIVE ========== */
@media (min-width: 1025px) {
    .hero-badges {
        flex-wrap: nowrap;
    }
}

@media (max-width: 1024px) {
    :root { --section-padding: 80px; }

    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }

    .hiw-steps { flex-direction: column; align-items: center; }
    .hiw-connector { display: none; }
    .hiw-step { max-width: 100%; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .why-us-layout { grid-template-columns: 1fr; gap: 40px; }
    .why-us-image { display: none; }
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .faq-image { display: none; }
    .appointment-layout { grid-template-columns: 1fr; gap: 40px; }
    .appointment-form-wrapper { order: -1; }
    .appointment-gallery { height: 360px; }
    .reviews-stats { flex-wrap: wrap; gap: 24px; padding: 28px 32px; }
    .review-stat-divider { display: none; }
    .discounts-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { place-items: start; }
    .stats-content { flex-direction: column; text-align: center; }
    .stats-text { flex-direction: column; }
    .hero-content { padding: 40px 32px; }
    .refrig-hero-layout { grid-template-columns: 1fr; min-height: auto; }
    .brand-hero-layout { grid-template-columns: 1fr; gap: 40px; }
    .brand-hero-logo-showcase { padding: 48px 32px; }
    .brand-hero-logo-showcase img { max-width: 260px; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .expertise-card--wide { grid-column: span 1; }
    .refrig-hero-image { padding: 32px; }
    .refrig-hero-image img { max-height: 320px; }
    .refrig-hero-content { padding: 32px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-steps::before { display: none; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .refrig-problems-grid { grid-template-columns: repeat(2, 1fr); }
    .service-areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 64px; --nav-height: 68px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-areas-grid { grid-template-columns: repeat(2, 1fr); }
.footer-links { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero-bg img { object-position: center right; }
    .hero-card { min-height: 480px; }
    .hero-card h1 { font-size: 36px; }
    .hero-content { padding: 36px 24px; }
    .booking-actions { flex-direction: column; align-items: center; }
    .booking-actions .btn { width: 100%; max-width: 280px; }
    .form-row { grid-template-columns: 1fr; }
    .form-body { padding: 24px; }
    .form-group input[type="date"] {
        font-size: 16px;
    }
    .appointment-gallery { height: 300px; }
    .gallery-main { width: 68%; height: 280px; }
    .gallery-secondary { width: 50%; height: 210px; }
    .gallery-badge { bottom: 40px; padding: 12px 16px; }
    .gallery-badge-number { font-size: 28px; }
    .refrig-hero-image img { max-height: 260px; }
    .refrig-hero-content h1 { font-size: 32px; }
    .brand-hero-logo-showcase { padding: 40px 24px; }
    .brand-hero-logo-showcase img { max-width: 220px; }
    .expertise-grid { grid-template-columns: 1fr; }
    .refrig-hero-content { padding: 28px 24px; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .refrig-problems-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    :root { --section-padding: 48px; }

    .container { padding: 0 16px; }
    .hero-wrapper { padding-top: calc(var(--nav-height) + 8px); padding-bottom: 8px; }
    .hero-card { min-height: 420px; border-radius: 14px; }
    .hero-card h1 { font-size: 32px; }
    .hero-content { padding: 28px 20px; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .service-card { padding: 16px 14px; }
    .service-icon { width: 38px; height: 38px; min-width: 38px; }
    .service-card h3 { font-size: 13px; }
    .footer-links { grid-template-columns: 1fr; }
    .stats-number { font-size: 56px; }
    .process-steps { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .service-areas-grid { grid-template-columns: 1fr; gap: 12px; }
    .brand-card { padding: 16px 12px; font-size: 14px; }
    .refrig-hero-image { padding: 24px 16px; }
    .refrig-hero-content { padding: 24px 20px; }
    .brand-hero-logo-showcase { padding: 32px 20px; border-radius: 16px; }
    .brand-hero-logo-showcase img { max-width: 180px; }
    .brand-hero-actions { flex-direction: column; }
    .brand-hero-actions .btn { width: 100%; text-align: center; }
    .expertise-card-inner { padding: 24px 20px; }
    .problem-card { padding: 24px 20px; }
    .problem-icon { width: 48px; height: 48px; }
    .problem-card h3 { font-size: 16px; }
}