/*
Theme Name: Appliance Repair Solution
Theme URI: https://appliancerepairsolution.ca
Author: Appliance Repair Solution
Author URI: https://appliancerepairsolution.ca
Description: Professional appliance repair business theme for Winnipeg. Navy, Orange and Grey color scheme. Full homepage with booking form, services, reviews, and service areas.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ars
Tags: business, one-page, custom-colors, full-width-template
*/

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy:        #0B2C6B;
  --navy-dark:   #071E4A;
  --navy-light:  #1A4099;
  --orange:      #FF5500;
  --orange-dark: #DD4400;
  --orange-light:#FF7733;
  --grey:        #F5F6F8;
  --grey-mid:    #E2E5EA;
  --grey-dark:   #6B7280;
  --text:        #1A1F2E;
  --text-mid:    #4B5563;
  --white:       #FFFFFF;
  --radius:      8px;
  --radius-lg:   14px;
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 85px; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── TOP BAR ── */
.topbar { background: var(--navy-dark); padding: 8px 0; font-size: 12px; color: rgba(255,255,255,0.7); }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-badge { background: rgba(255,85,0,0.15); border: 1px solid rgba(255,85,0,0.4); color: #FF7733; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: .05em; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-right a { color: rgba(255,255,255,0.85); font-weight: 600; transition: color .2s; }
.topbar-right a:hover { color: var(--orange-light); }
.topbar-phone-main { color: var(--orange-light) !important; font-size: 13px !important; font-weight: 700 !important; }

/* ── HEADER ── */
.site-header { background: var(--navy); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.site-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 46px; height: 46px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; }
.logo-text-main { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: .02em; line-height: 1; }
.logo-text-main span { color: var(--orange-light); }
.logo-text-sub { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav a { color: rgba(255,255,255,0.8); padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 500; transition: all .2s; }
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-cta { background: var(--orange) !important; color: #fff !important; padding: 10px 20px !important; border-radius: 7px !important; font-weight: 700 !important; font-size: 14px !important; transition: background .2s !important; display: flex !important; align-items: center; gap: 7px; }
.nav-cta:hover { background: var(--orange-dark) !important; }
.mobile-menu-btn { display: none; background: none; border: 1px solid rgba(255,255,255,0.3); border-radius: 6px; padding: 8px 10px; cursor: pointer; flex-direction: column; gap: 4px; }
.mobile-menu-btn span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%); padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: 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='%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/svg%3E"); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,85,0,0.15); border: 1px solid rgba(255,85,0,0.4); color: #FF9966; padding: 6px 16px; border-radius: 30px; font-size: 12px; font-weight: 700; letter-spacing: .05em; margin-bottom: 24px; }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 62px; font-weight: 800; color: #fff; line-height: 1.0; margin-bottom: 16px; letter-spacing: -.01em; }
.hero h1 span { color: var(--orange-light); }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary { background: var(--orange); color: #fff; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; box-shadow: 0 4px 20px rgba(255,85,0,0.4); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); color: #fff; }
.btn-secondary { background: transparent; border: 2px solid rgba(255,255,255,0.35); color: #fff; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; transition: all .2s; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); color: #fff; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: .06em; }

/* ── HERO CARD ── */
.hero-card { background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.hero-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-card-icon { width: 48px; height: 48px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.hero-card h3 { font-size: 20px; font-weight: 800; color: var(--text); }
.hero-card > p { color: var(--text-mid); font-size: 14px; margin-bottom: 20px; }
.hero-book-btn { display: block; background: var(--orange); color: #fff; text-align: center; padding: 15px; border-radius: 8px; font-weight: 700; font-size: 16px; margin-bottom: 16px; transition: background .2s; box-shadow: 0 4px 16px rgba(255,85,0,0.35); }
.hero-book-btn:hover { background: var(--orange-dark); color: #fff; }
.hero-divider { border: none; border-top: 1px solid var(--grey-mid); margin: 12px 0; }
.hero-badges { display: flex; flex-direction: column; gap: 8px; }
.hero-badge-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-mid); font-weight: 500; }
.hero-badge-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy-dark); padding: 16px 0; border-top: 3px solid var(--orange); }
.trust-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; }
.trust-icon { width: 32px; height: 32px; background: rgba(255,85,0,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 15px; height: 15px; stroke: var(--orange-light); fill: none; stroke-width: 2; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { display: inline-block; background: rgba(255,85,0,0.08); color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; border: 1px solid rgba(255,85,0,0.2); }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 12px; }
.section-sub { color: var(--text-mid); font-size: 16px; max-width: 560px; }
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { background: #fff; border: 1.5px solid var(--grey-mid); border-radius: var(--radius-lg); padding: 28px 22px; text-align: center; transition: all .25s; }
.service-card:hover { border-color: var(--orange); box-shadow: 0 8px 30px rgba(255,85,0,0.12); transform: translateY(-3px); }
.service-icon { width: 58px; height: 58px; background: rgba(11,44,107,0.07); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 26px; transition: all .25s; }
.service-card:hover .service-icon { background: var(--orange); }
.service-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.service-link { display: inline-flex; align-items: center; gap: 4px; color: var(--orange); font-size: 13px; font-weight: 600; margin-top: 12px; }

/* ── BRANDS ── */
.brands-section { background: var(--grey); padding: 50px 0; }
.brands-title { text-align: center; font-size: 14px; font-weight: 700; color: var(--text-mid); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 28px; }
.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.brand-pill { background: #fff; border: 1.5px solid var(--grey-mid); border-radius: 30px; padding: 9px 22px; font-size: 13px; font-weight: 700; color: var(--navy); transition: all .2s; }
.brand-pill:hover { border-color: var(--orange); color: var(--orange); }

/* ── WHY US ── */
.why-section { background: var(--navy); padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-left .section-title { color: #fff; }
.why-left .section-sub { color: rgba(255,255,255,0.65); }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon { width: 44px; height: 44px; background: rgba(255,85,0,0.15); border: 1px solid rgba(255,85,0,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-point-icon svg { width: 20px; height: 20px; stroke: var(--orange-light); fill: none; stroke-width: 2; }
.why-point h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.why-point p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px 22px; text-align: center; }
.why-stat-card.accent { background: var(--orange); border-color: var(--orange); }
.why-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 800; color: #fff; line-height: 1; }
.why-stat-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; }
.why-stat-card.accent .why-stat-label { color: rgba(255,255,255,0.85); }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); opacity: .25; }
.step-card { text-align: center; padding: 24px 16px; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--navy); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 1; border: 3px solid var(--orange); }
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews-section { background: var(--grey); padding: 80px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--grey-mid); }
.review-stars { color: var(--orange); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 14px; color: var(--text); }
.review-date { font-size: 12px; color: var(--grey-dark); }
.reviews-cta { text-align: center; margin-top: 36px; }

/* ── BOOKING ── */
.booking-section { padding: 80px 0; background: #fff; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.booking-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.booking-perk { display: flex; align-items: center; gap: 14px; }
.perk-icon { width: 42px; height: 42px; background: rgba(255,85,0,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.perk-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.perk-text span { font-size: 13px; color: var(--text-mid); }
.perk-text a { color: var(--orange); font-weight: 700; }
.booking-form-wrap { background: var(--grey); border-radius: var(--radius-lg); padding: 36px; }
.arw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.arw-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.arw-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.arw-field input,
.arw-field select,
.arw-field textarea { padding: 11px 14px; border: 1.5px solid var(--grey-mid); border-radius: var(--radius); font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--text); background: #fff; transition: border-color .2s; outline: none; width: 100%; }
.arw-field input:focus,
.arw-field select:focus,
.arw-field textarea:focus { border-color: var(--navy); }
.arw-field textarea { resize: vertical; min-height: 100px; }
.arw-submit-btn { width: 100%; padding: 15px; background: var(--orange); color: #fff; border: none; border-radius: 8px; font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; transition: background .2s; margin-top: 8px; }
.arw-submit-btn:hover { background: var(--orange-dark); }
.arw-form-note { text-align: center; font-size: 12px; color: var(--grey-dark); margin-top: 10px; }
.arw-file-box { background: #fff; border: 2px dashed var(--grey-mid); border-radius: var(--radius); padding: 16px; text-align: center; }
.arw-file-box p { font-size: 12px; color: var(--grey-dark); margin-bottom: 10px; }
.arw-file-btn { background: var(--navy); color: #fff; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; display: inline-block; }
.arw-file-box input[type="file"] { display: none; }
#arw-file-name { font-size: 12px; color: var(--grey-dark); margin-top: 8px; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--orange); padding: 60px 0; }
.cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; color: #fff; line-height: 1.1; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 16px; margin-top: 8px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--orange); padding: 14px 30px; border-radius: 8px; font-weight: 700; font-size: 15px; transition: all .2s; white-space: nowrap; display: inline-block; }
.btn-white:hover { background: rgba(255,255,255,0.9); color: var(--orange); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.6); color: #fff; padding: 14px 30px; border-radius: 8px; font-weight: 600; font-size: 15px; transition: all .2s; white-space: nowrap; display: inline-block; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ── AREAS ── */
.areas-section { background: var(--grey); padding: 80px 0; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.area-pill { background: #fff; border: 1.5px solid var(--grey-mid); border-radius: 30px; padding: 8px 18px; font-size: 13px; font-weight: 600; color: var(--navy); transition: all .2s; }
.area-pill:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); padding: 60px 0 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.7; margin: 16px 0; }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 8px; transition: color .2s; }
.footer-contact a:hover { color: var(--orange-light); }
.footer-contact svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--orange-light); }
.footer-book-btn { display: block; background: var(--orange); color: #fff; text-align: center; padding: 13px; border-radius: 8px; font-weight: 700; font-size: 15px; margin-bottom: 10px; transition: background .2s; }
.footer-book-btn:hover { background: var(--orange-dark); color: #fff; }
.footer-book-online { display: block; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; text-align: center; padding: 13px; border-radius: 8px; font-weight: 600; font-size: 14px; transition: background .2s; }
.footer-book-online:hover { background: rgba(255,255,255,0.12); color: #fff; }
.footer-trust-badges { margin-top: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 4px 12px; color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 600; }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 12px; }
.footer-bottom-links { display: flex; gap: 12px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 12px; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── FLOATING BAR ── */
.floating-bar { position: fixed; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; z-index: 200; box-shadow: 0 -2px 20px rgba(0,0,0,0.2); }
.fbar-btn { padding: 14px 10px; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: filter .2s; }
.fbar-btn:hover { filter: brightness(1.1); }
.fbar-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.fbar-call { background: var(--navy); color: #fff; }
.fbar-sms { background: var(--orange); color: #fff; }
.fbar-whatsapp { background: #25D366; color: #fff; }

/* ── BOOKING SUCCESS ── */
.arw-booking-success { text-align: center; padding: 60px 24px; max-width: 600px; margin: 0 auto; }
.arw-success-icon { font-size: 64px; margin-bottom: 20px; }
.arw-booking-success h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.arw-success-sub { color: var(--text-mid); font-size: 16px; margin-bottom: 32px; }
.arw-success-details { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.arw-success-item { background: var(--grey); border-radius: var(--radius); padding: 16px; display: flex; align-items: center; gap: 12px; text-align: left; }
.arw-success-item-icon { font-size: 24px; }
.arw-success-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.arw-success-item span { font-size: 13px; color: var(--text-mid); }
.arw-success-urgent { font-size: 14px; color: var(--text-mid); }
.arw-success-urgent a { color: var(--orange); font-weight: 700; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 44px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; }
  .arw-success-details { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-right { grid-template-columns: 1fr 1fr; }
  .arw-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 34px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
}
