/* ============================================================
   Fix-It Men Appliance Depot — Main Stylesheet
   ============================================================ */

/* Google Fonts loaded in HTML */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:       #1e40af;
  --primary-light: #3b82f6;
  --primary-dark:  #1e3a8a;
  --accent:        #f97316;
  --accent-dark:   #ea6c00;
  --dark:          #0f172a;
  --text:          #1e293b;
  --muted:         #64748b;
  --light:         #f1f5f9;
  --lighter:       #f8fafc;
  --white:         #ffffff;
  --border:        #e2e8f0;
  --success:       #16a34a;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:        0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.14);
  --radius:        10px;
  --radius-lg:     16px;
  --transition:    all .25s ease;
  --nav-h:         72px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p  { color: var(--muted); line-height: 1.75; }

/* ── Utility ────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-gap { padding: 80px 0; }
.section-gap-sm { padding: 56px 0; }
.text-center { text-align: center; }
.badge {
  display: inline-block; background: #dbeafe; color: var(--primary);
  font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px; margin-bottom: 12px;
}
.badge-accent { background: #fff7ed; color: var(--accent); }
.section-title { margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; max-width: 580px; }
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: .95rem; font-weight: 600; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: var(--white);
  box-shadow: 0 4px 14px rgba(30,64,175,.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,64,175,.45); }
.btn-accent {
  background: var(--accent); color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: .875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand-icon {
  width: 42px; height: 42px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.nav-brand-icon svg { color: white; }
.brand-name { font-size: 1.1rem; font-weight: 800; color: var(--dark); line-height: 1.15; }
.brand-sub { font-size: .7rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-size: .9rem; font-weight: 500;
  color: var(--text); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { background: var(--light); color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: .875rem; font-weight: 600; color: var(--primary);
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  width: 22px; height: 2px; background: var(--dark); border-radius: 2px;
  transition: var(--transition); display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 24px; box-shadow: var(--shadow-lg); z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 1rem; font-weight: 500; color: var(--text);
}
.mobile-menu a:last-child { border: none; }
.mobile-menu a:hover { color: var(--primary); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 60px); padding-bottom: 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-text h1 { color: var(--white); margin-bottom: 20px; }
.hero-text h1 span { color: #93c5fd; }
.hero-text p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); padding: 6px 14px; border-radius: 99px; font-size: .8rem; font-weight: 500;
}
.hero-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: rgba(255,255,255,.05);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar { background: var(--lighter); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-list { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .875rem; font-weight: 600; color: var(--text);
}
.trust-icon { color: var(--primary); font-size: 1.1rem; }

/* ── Services Grid ──────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; background: #dbeafe;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: .9rem; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: .875rem; font-weight: 600;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ── Brands ─────────────────────────────────────────────────── */
.brands-section { background: var(--lighter); }
.brands-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap: 20px;
}
.brand-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 20px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition); min-height: 110px;
}
.brand-card:hover { box-shadow: var(--shadow); border-color: var(--primary-light); transform: translateY(-2px); }
.brand-card img { height: 52px; width: 130px; object-fit: contain; transition: var(--transition); }
.brand-card:hover img { transform: scale(1.05); }
.brand-card span { font-size: .75rem; font-weight: 600; color: var(--muted); text-align: center; }

/* ── Why Choose Us ──────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-item { display: flex; gap: 16px; }
.why-num {
  width: 44px; height: 44px; background: var(--primary); color: var(--white);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700; flex-shrink: 0;
}
.why-item h4 { margin-bottom: 4px; }
.why-item p { font-size: .9rem; }

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-item h3 { font-size: 2.5rem; color: var(--white); margin-bottom: 6px; }
.stat-item p { color: rgba(255,255,255,.75); font-size: .9rem; }

/* ── Testimonials ───────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: .95rem; color: var(--text); margin-bottom: 20px; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: .9rem;
}
.reviewer-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.reviewer-loc { font-size: .8rem; color: var(--muted); }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, var(--primary) 100%);
  padding: 80px 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-info { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 32px; }
.cta-info-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: .9rem; }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 56px); padding-bottom: 56px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto 24px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .875rem; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.75); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }

/* ── Services Page ──────────────────────────────────────────── */
.service-detail-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); }
.service-detail-img { aspect-ratio: 16/9; overflow: hidden; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-detail-card:hover .service-detail-img img { transform: scale(1.03); }
.service-detail-body { padding: 28px; }
.service-detail-body h3 { margin-bottom: 10px; }
.service-detail-body p { font-size: .9rem; margin-bottom: 16px; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.tag {
  background: var(--light); color: var(--text); font-size: .75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 99px;
}

/* ── Store Page ─────────────────────────────────────────────── */
.category-tabs {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 22px; border-radius: 99px; font-size: .875rem; font-weight: 600;
  border: 2px solid var(--border); color: var(--text); background: var(--white);
  transition: var(--transition); cursor: pointer;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 24px; }
.product-category { display: none; }
.product-category.active { display: block; }
.product-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--light);
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge-wrap { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.p-badge {
  padding: 3px 10px; border-radius: 99px; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
}
.p-badge-sale { background: #fee2e2; color: #dc2626; }
.p-badge-new  { background: #dcfce7; color: #16a34a; }
.p-badge-hot  { background: #fff7ed; color: var(--accent); }
.product-body { padding: 20px; }
.product-brand {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.product-brand img { height: 22px; width: auto; object-fit: contain; }
.product-brand span { font-size: .75rem; font-weight: 600; color: var(--muted); }
.product-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); line-height: 1.4; }
.product-card p { font-size: .8rem; margin-bottom: 14px; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.price-old { font-size: .85rem; text-decoration: line-through; color: var(--muted); margin-bottom: 2px; }
.add-cart {
  background: var(--primary); color: var(--white); border-radius: 8px;
  padding: 9px 16px; font-size: .8rem; font-weight: 600; transition: var(--transition);
  border: none; cursor: pointer;
}
.add-cart:hover { background: var(--primary-dark); }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-ico {
  width: 44px; height: 44px; background: #dbeafe; color: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h5 { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.contact-item p { font-size: .95rem; color: var(--text); margin: 0; }
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; font-size: .9rem; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border: none; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.contact-form h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .95rem; color: var(--text); background: var(--lighter);
  transition: var(--transition); resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,64,175,.1);
}
.map-wrap { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* ── Service Detail Page ────────────────────────────────────── */
.repair-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/7; }
.repair-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 24px; }
.step-card { text-align: center; padding: 32px 20px; }
.step-num {
  width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; margin: 0 auto 18px;
}
.appliance-models { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; }
.model-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; align-items: center; gap: 14px; transition: var(--transition);
}
.model-card:hover { box-shadow: var(--shadow); border-color: var(--primary-light); }
.model-ico { font-size: 1.5rem; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-weight: 600; font-size: .95rem; cursor: pointer; transition: var(--transition);
}
.faq-q:hover { background: var(--lighter); }
.faq-q .faq-arrow { transition: var(--transition); color: var(--primary); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 400px; }
.faq-a p { font-size: .9rem; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-icon {
  width: 40px; height: 40px; background: var(--primary); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.footer-col p { font-size: .875rem; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-col h5 { font-size: .875rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: rgba(255,255,255,.65); }
.footer-contact-item span:first-child { color: var(--primary-light); margin-top: 2px; }
.social-links { display: flex; gap: 10px; margin-top: 12px; }
.social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: var(--transition); font-size: .85rem;
}
.social-link:hover { background: var(--primary); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.4);
}

/* ── Service Icon Color Variants ────────────────────────────── */
.si-fridge  { background: #dbeafe; color: #1d4ed8; }
.si-washer  { background: #dcfce7; color: #16a34a; }
.si-dish    { background: #fef3c7; color: #d97706; }
.si-oven    { background: #fee2e2; color: #dc2626; }
.si-micro   { background: #f3e8ff; color: #9333ea; }
.si-freeze  { background: #e0f2fe; color: #0284c7; }
.si-ice     { background: #cffafe; color: #0891b2; }
.si-other   { background: #f0fdf4; color: #15803d; }
.service-icon i { font-size: 1.5rem; }

/* ── Brand logo sizing ───────────────────────────────────────── */
.brand-card img    { height: 52px; width: 130px; object-fit: contain; padding: 4px; transition: var(--transition); }
.product-brand img { height: 28px; width: 70px;  object-fit: contain; }
.brand-card:hover img { opacity: 1; }

/* ── Scroll To Top ──────────────────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 44px; height: 44px; background: var(--primary); color: white;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(12px);
  transition: var(--transition); pointer-events: none;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scrollTop:hover { background: var(--primary-dark); }

/* ── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--dark); color: white; padding: 12px 24px; border-radius: 99px;
  font-size: .875rem; font-weight: 600; z-index: 9999; opacity: 0; transition: var(--transition);
  white-space: nowrap; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img { max-width: 500px; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col p { max-width: 100%; }
  .hero { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 56px; }
  .hero-inner { gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .trust-list { gap: 20px; }
  .section-gap { padding: 56px 0; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badges { gap: 8px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .cta-info { flex-direction: column; gap: 16px; }
}
