/* =============================================
   VIKING FRIDGE REPAIRS — STYLESHEET
   Background: #0C2444 (the blue from screenshot)
   Cards:      #0a1e38
   Sections:   #091830
   Ice Blue:   #7FD8FF
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

:root {
  --bg:        #0C2444;
  --bg-dark:   #091830;
  --bg-card:   #0a1e38;
  --bg-light:  #0e2a50;
  --ice:       #7FD8FF;
  --ice-light: #b8ecff;
  --ice-dim:   #4BBFE8;
  --white:     #FFFFFF;
  --silver:    #C8D8E8;
  --muted:     #7A9AB5;
  --border:    rgba(127,216,255,0.15);
  --border-hi: rgba(127,216,255,0.4);
  --r:         12px;
  --r-lg:      20px;
  --ease:      0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow:    0 8px 40px rgba(0,10,30,0.6);
  --glow:      0 0 40px rgba(127,216,255,0.15);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3 { font-family: 'Cinzel', serif; letter-spacing: 0.04em; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }

/* LAYOUT */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section--alt  { background: var(--bg-dark); }
.section--deep { background: var(--bg-card); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--ice); border-radius: 3px; }

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.5;
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: linear-gradient(90deg, #071525, #0a1e38, #071525);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 9px 24px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  position: relative; z-index: 200;
}
.topbar a { color: var(--ice); font-weight: 700; }
.topbar strong { color: var(--white); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  transition: all var(--ease);
}
.navbar.scrolled {
  top: 0;
  background: rgba(9, 24, 48, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0, 10, 30, 0.8);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; max-width: 1200px; margin: 0 auto;
}
.navbar__logo { display: flex; align-items: center; gap: 12px; }
.navbar__logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--ice), var(--ice-dim));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(127,216,255,0.3);
  transition: transform var(--ease), box-shadow var(--ease);
}
.navbar__logo:hover .navbar__logo-icon {
  transform: rotate(-10deg) scale(1.05);
  box-shadow: 0 0 32px rgba(127,216,255,0.5);
}
.navbar__logo-text { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; line-height: 1.25; }
.navbar__logo-text span { display: block; font-size: 0.58rem; font-family: 'Montserrat', sans-serif; color: var(--ice); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; }
.navbar__nav { display: flex; align-items: center; gap: 4px; }
.navbar__link {
  padding: 8px 14px; border-radius: 7px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--silver); transition: color var(--ease), background var(--ease);
  position: relative;
}
.navbar__link::after {
  content: ''; position: absolute;
  bottom: 5px; left: 14px; right: 14px; height: 1.5px;
  background: var(--ice); transform: scaleX(0); transition: transform var(--ease);
}
.navbar__link:hover { color: var(--white); }
.navbar__link:hover::after { transform: scaleX(1); }
.navbar__link.active { color: var(--white); }
.navbar__link.active::after { transform: scaleX(1); }
.navbar__cta {
  background: var(--ice); color: var(--bg-dark);
  padding: 10px 22px; border-radius: 9px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--ease);
  box-shadow: 0 4px 20px rgba(127,216,255,0.35);
}
.navbar__cta:hover { background: var(--ice-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(127,216,255,0.5); }
.navbar__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.navbar__toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--ease); }
.navbar__mobile {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(6,15,35,0.99); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a { font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 700; color: var(--silver); transition: color var(--ease); }
.navbar__mobile a:hover { color: var(--ice); }
.navbar__mobile-close { position: absolute; top: 24px; right: 28px; font-size: 2.2rem; color: var(--silver); cursor: pointer; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px; border-radius: 11px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--ease); cursor: pointer; white-space: nowrap; border: none;
}
.btn--primary {
  background: var(--ice); color: var(--bg-dark);
  box-shadow: 0 4px 22px rgba(127,216,255,0.35);
}
.btn--primary:hover { background: var(--ice-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(127,216,255,0.55); }
.btn--outline {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--border-hi);
}
.btn--outline:hover { border-color: var(--ice); color: var(--ice); background: rgba(127,216,255,0.07); }
.btn--lg { padding: 17px 40px; font-size: 0.95rem; }
.btn--sm { padding: 10px 20px; font-size: 0.78rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 110px;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero__orb-1 {
  position: absolute; top: -15%; right: -8%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(20,100,255,0.2) 0%, rgba(127,216,255,0.08) 40%, transparent 70%);
  border-radius: 50%;
  animation: orb-pulse 8s ease-in-out infinite;
  pointer-events: none;
}
.hero__orb-2 {
  position: absolute; bottom: -20%; left: -10%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(10,60,180,0.15) 0%, transparent 65%);
  border-radius: 50%;
  animation: orb-pulse 10s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes orb-pulse { 0%,100%{transform:scale(1);opacity:.7;} 50%{transform:scale(1.12);opacity:1;} }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(127,216,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(127,216,255,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 65% 40%, black 0%, transparent 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 60px 28px 80px;
  width: 100%;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(127,216,255,0.1); border: 1px solid var(--border-hi);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ice); margin-bottom: 24px;
}
.hero__h1 { margin-bottom: 10px; }
.hero__h1 .accent {
  background: linear-gradient(135deg, var(--ice), var(--ice-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__sub { font-size: 1.1rem; font-weight: 600; color: var(--silver); margin-bottom: 16px; }
.hero__desc { color: var(--muted); font-size: 0.95rem; max-width: 460px; line-height: 1.9; margin-bottom: 36px; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__phone {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(10,30,60,0.7); border: 1px solid var(--border);
  padding: 12px 20px; border-radius: 10px;
  font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 700; color: var(--ice);
  transition: border-color var(--ease), background var(--ease);
  margin-bottom: 36px;
}
.hero__phone:hover { border-color: var(--ice); background: rgba(10,40,80,0.8); }
.hero__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero__stat-n { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--ice); line-height: 1; }
.hero__stat-l { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.hero__visual { position: relative; }
.hero__frame {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(127,216,255,0.2);
  box-shadow: 0 30px 80px rgba(0,8,30,0.8), 0 0 60px rgba(20,100,255,0.2);
  background: var(--bg-card);
  aspect-ratio: 4/5; max-height: 580px;
  display: flex; align-items: center; justify-content: center;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--muted); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.hero__frame-placeholder span { font-size: 5rem; filter: drop-shadow(0 0 20px rgba(127,216,255,0.5)); }
.hero__badge-float {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(6,15,35,0.95); backdrop-filter: blur(16px);
  border: 1px solid var(--border-hi); padding: 12px 18px; border-radius: 12px;
}
.hero__badge-float strong { display: block; font-size: 0.78rem; color: var(--ice); font-weight: 700; letter-spacing: 0.06em; }
.hero__badge-float span { font-size: 0.65rem; color: var(--muted); }
.hero__dot {
  position: absolute; top: 22px; right: 22px;
  width: 12px; height: 12px; background: #22c55e; border-radius: 50%;
  box-shadow: 0 0 10px rgba(34,197,94,0.7);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-bar {
  background: linear-gradient(90deg, var(--bg-card), var(--bg-dark), var(--bg-card));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: space-around;
  gap: 20px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; padding: 0 28px;
}
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-item__icon { font-size: 1.3rem; color: var(--ice); }
.trust-item__text { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--silver); }

/* =============================================
   SECTION HEADER
   ============================================= */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head__eye { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ice); margin-bottom: 10px; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { color: var(--muted); max-width: 520px; margin: 0 auto; font-size: 0.95rem; }

/* =============================================
   SERVICE CARDS
   ============================================= */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: all var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(127,216,255,0.07), transparent);
  opacity: 0; transition: opacity var(--ease);
}
.service-card:hover { transform: translateY(-7px); border-color: var(--border-hi); box-shadow: 0 20px 50px rgba(0,10,30,0.5), var(--glow); }
.service-card:hover::before { opacity: 1; }
.service-card__icon { font-size: 2.4rem; margin-bottom: 18px; filter: drop-shadow(0 0 14px rgba(127,216,255,0.4)); }
.service-card__title { font-family: 'Cinzel', serif; font-size: 1.05rem; margin-bottom: 10px; }
.service-card__desc { color: var(--muted); font-size: 0.87rem; margin-bottom: 18px; line-height: 1.75; }
.service-card__list { margin-bottom: 22px; }
.service-card__list li { font-size: 0.82rem; color: var(--silver); padding: 4px 0 4px 16px; position: relative; }
.service-card__list li::before { content: ''; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--ice); transform: translateY(-50%); }
.service-card__link { color: var(--ice); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--ease); }
.service-card__link:hover { gap: 12px; }

/* =============================================
   BRANDS
   ============================================= */
.brands-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; max-width: 960px; margin: 0 auto; }
.brand-tile {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--r);
  padding: 22px 14px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all var(--ease); text-align: center;
}
.brand-tile:hover { background: rgba(127,216,255,0.08); border-color: var(--border-hi); transform: translateY(-3px); }
.brand-tile__init {
  width: 54px; height: 54px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(127,216,255,0.18), rgba(127,216,255,0.05));
  border: 1px solid rgba(127,216,255,0.28);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--ice);
}
.brand-tile__name { font-size: 0.75rem; font-weight: 600; color: var(--silver); letter-spacing: 0.03em; }
.brands-note { text-align: center; margin-top: 22px; font-size: 0.78rem; color: var(--muted); font-style: italic; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* =============================================
   WHY US
   ============================================= */
.why-us { background: var(--bg-dark); }
.why-us__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 88px 28px; }
.why-us__points { display: flex; flex-direction: column; gap: 14px; }
.why-point {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px; border-radius: 12px;
  background: rgba(127,216,255,0.04); border: 1px solid transparent; transition: all var(--ease);
}
.why-point:hover { background: rgba(127,216,255,0.09); border-color: var(--border); transform: translateX(4px); }
.why-point__icon { font-size: 1.6rem; flex-shrink: 0; }
.why-point__title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.why-point__text { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
.why-us__visual {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 44px 36px; display: flex; flex-direction: column; gap: 24px; text-align: center;
}
.why-us__visual-icon { font-size: 4.5rem; filter: drop-shadow(0 0 28px rgba(127,216,255,0.5)); }
.why-us__stat-n { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--ice); line-height: 1; }
.why-us__stat-l { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: -8px; }
.why-us__quote {
  font-size: 0.88rem; color: var(--muted); line-height: 1.85; font-style: italic;
  padding: 16px; background: rgba(127,216,255,0.05); border-radius: 10px; border-left: 3px solid var(--ice);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.how-step {
  text-align: center; padding: 36px 24px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: all var(--ease); position: relative;
}
.how-step:hover { transform: translateY(-5px); border-color: var(--border-hi); box-shadow: var(--glow); }
.how-step__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ice), var(--ice-dim));
  color: var(--bg-dark); font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-family: 'Cinzel', serif;
  box-shadow: 0 0 20px rgba(127,216,255,0.4);
}
.how-step__icon { font-size: 2rem; margin-bottom: 12px; }
.how-step__title { font-family: 'Cinzel', serif; font-size: 0.95rem; margin-bottom: 8px; font-weight: 700; }
.how-step__text { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.how-step::after {
  content: '→';
  position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%);
  color: var(--ice); font-size: 1.2rem; z-index: 1;
}
.how-step:last-child::after { display: none; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px; transition: all var(--ease); position: relative; overflow: hidden;
}
.tcard::before {
  content: '"'; position: absolute; top: -10px; right: 20px;
  font-family: 'Cinzel', serif; font-size: 8rem; color: var(--ice); opacity: 0.04; line-height: 1;
}
.tcard:hover { transform: translateY(-5px); border-color: var(--border-hi); box-shadow: var(--glow); }
.tcard__stars { color: #FFD700; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.tcard__text { font-size: 0.9rem; color: var(--silver); line-height: 1.85; margin-bottom: 22px; font-style: italic; }
.tcard__author { display: flex; align-items: center; gap: 12px; }
.tcard__av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--ice), var(--ice-dim)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--bg-dark); font-size: 1rem; flex-shrink: 0; }
.tcard__name { font-weight: 700; font-size: 0.87rem; }
.tcard__loc { font-size: 0.74rem; color: var(--muted); }

/* =============================================
   AREAS
   ============================================= */
.areas-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.area-pill {
  display: block; background: rgba(127,216,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 12px; text-align: center;
  font-size: 0.82rem; font-weight: 600; color: var(--silver); transition: all var(--ease);
}
.area-pill .ico { display: block; font-size: 1.15rem; margin-bottom: 5px; }
.area-pill:hover { background: rgba(127,216,255,0.12); border-color: var(--ice); color: var(--ice); transform: translateY(-3px); box-shadow: var(--glow); }

/* =============================================
   CALLOUT / PRICING BOX
   ============================================= */
.callout-box {
  background: rgba(127,216,255,0.07); border: 1px solid var(--border-hi); border-radius: var(--r-lg);
  padding: 28px 32px; margin-bottom: 36px; display: flex; align-items: center; gap: 20px;
}
.callout-box__icon { font-size: 2.5rem; flex-shrink: 0; }
.callout-box__title { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--ice); margin-bottom: 6px; }
.callout-box__text { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  margin-bottom: 12px; overflow: hidden; transition: border-color var(--ease);
}
.faq-item.open { border-color: var(--border-hi); }
.faq-q {
  padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 700; font-size: 0.95rem; color: var(--white);
  transition: color var(--ease); user-select: none;
}
.faq-q:hover { color: var(--ice); }
.faq-q__arrow { color: var(--ice); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q__arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a__inner { padding: 0 24px 20px; font-size: 0.88rem; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 200px; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; padding: 80px 28px;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 500px; margin: 0 auto 36px; }
.cta-band__phone {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem,6vw,4rem);
  color: var(--ice); letter-spacing: 0.08em; margin-bottom: 32px;
  filter: drop-shadow(0 0 24px rgba(127,216,255,0.45));
}
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 140px 28px 64px; text-align: center;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(20,100,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero__eye { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ice); margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--muted); max-width: 540px; margin: 0 auto 28px; font-size: 0.95rem; }
.crumb { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 0.77rem; color: var(--muted); margin-top: 16px; }
.crumb a { color: var(--ice); }
.crumb span { opacity: 0.4; }

/* =============================================
   CONTACT
   ============================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; max-width: 1100px; margin: 0 auto; padding: 64px 28px 80px; align-items: start; }
.cinfo__item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border-radius: 12px; background: var(--bg-card); border: 1px solid var(--border); margin-bottom: 14px; transition: border-color var(--ease), transform var(--ease); }
.cinfo__item:hover { border-color: var(--border-hi); transform: translateX(4px); }
.cinfo__ico { font-size: 1.6rem; color: var(--ice); flex-shrink: 0; }
.cinfo__label { font-weight: 700; font-size: 0.87rem; margin-bottom: 4px; }
.cinfo__val { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.cinfo__val a { color: var(--ice); }
.cform { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px; }
.cform h3 { font-family: 'Cinzel', serif; margin-bottom: 6px; }
.cform__sub { color: var(--muted); font-size: 0.87rem; margin-bottom: 30px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { margin-bottom: 18px; }
.flabel { display: block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver); margin-bottom: 7px; }
.finput, .fselect, .ftextarea {
  width: 100%; background: rgba(5,15,35,0.8); border: 1.5px solid var(--border);
  border-radius: 9px; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
  padding: 12px 16px; outline: none; appearance: none; transition: border-color var(--ease), box-shadow var(--ease);
}
.finput:focus, .fselect:focus, .ftextarea:focus { border-color: var(--ice); box-shadow: 0 0 0 3px rgba(127,216,255,0.12); }
.ftextarea { resize: vertical; min-height: 120px; }
.fselect option { background: #0a1e38; color: #fff; }
.fsubmit { width: 100%; padding: 15px; font-size: 0.92rem; }
.fmsg { padding: 15px; border-radius: 9px; margin-top: 14px; font-size: 0.87rem; font-weight: 600; display: none; }
.fmsg--ok { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.fmsg--err { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #f87171; }

/* =============================================
   ABOUT
   ============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1100px; margin: 0 auto; padding: 88px 28px; }
.about-panel { background: linear-gradient(145deg, var(--bg-card), var(--bg-dark)); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 48px; display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.about-panel__icon { font-size: 5rem; filter: drop-shadow(0 0 26px rgba(127,216,255,0.5)); }
.about-stats { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; }
.astat { text-align: center; }
.astat__n { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--ice); }
.astat__l { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.vals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 48px; }
.val-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; transition: all var(--ease); }
.val-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.val-card__ico { font-size: 1.4rem; margin-bottom: 8px; }
.val-card__title { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.val-card__text { font-size: 0.82rem; color: var(--muted); }

/* =============================================
   SERVICES DETAIL
   ============================================= */
.svc-detail {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: center;
  padding: 48px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); margin-bottom: 26px;
  transition: border-color var(--ease), box-shadow var(--ease); position: relative; overflow: hidden;
}
.svc-detail::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(127,216,255,0.05), transparent 55%); pointer-events: none; }
.svc-detail:hover { border-color: var(--border-hi); box-shadow: 0 0 50px rgba(10,50,150,0.2); }
.svc-detail:nth-child(even) { grid-template-columns: 300px 1fr; }
.svc-detail:nth-child(even) > div:first-child { order: 2; }
.svc-detail:nth-child(even) .svc-panel { order: 1; }
.svc-detail h3 { font-family: 'Cinzel', serif; font-size: 1.5rem; margin-bottom: 12px; }
.svc-detail p { color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.svc-detail ul { list-style: none; margin-bottom: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 22px; }
.svc-detail ul li { font-size: 0.85rem; color: var(--silver); padding-left: 16px; position: relative; line-height: 1.6; }
.svc-detail ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--ice); }
.svc-panel { background: linear-gradient(135deg, var(--bg-dark), var(--bg)); border: 1px solid var(--border); border-radius: 14px; padding: 36px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; justify-content: center; }
.svc-panel__ico { font-size: 3.5rem; filter: drop-shadow(0 0 20px rgba(127,216,255,0.4)); }
.svc-panel__tag { font-family: 'Cinzel', serif; font-size: 0.78rem; color: var(--ice); letter-spacing: 0.1em; text-transform: uppercase; }
.svc-panel__n { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: #fff; letter-spacing: 0.05em; line-height: 1; }
.svc-panel__l { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: -6px; }
.svc-panel__note { font-size: 0.79rem; color: var(--muted); line-height: 1.7; }
.brand-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 26px; }
.brand-chip { background: rgba(5,15,35,0.8); border: 1px solid rgba(127,216,255,0.2); border-radius: 6px; padding: 4px 12px; font-size: 0.74rem; font-weight: 600; color: var(--silver); }
.info-note { background: rgba(5,15,35,0.7); border: 1px solid var(--border); border-radius: 9px; padding: 13px 16px; font-size: 0.84rem; color: var(--silver); margin-bottom: 20px; line-height: 1.65; }
.why-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 52px; }
.why-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 13px; padding: 24px 18px; text-align: center; transition: all var(--ease); }
.why-card:hover { border-color: var(--ice); transform: translateY(-3px); box-shadow: var(--glow); }
.why-card__ico { font-size: 1.8rem; margin-bottom: 10px; }
.why-card__title { font-family: 'Cinzel', serif; font-size: 0.88rem; margin-bottom: 6px; font-weight: 700; }
.why-card__text { font-size: 0.79rem; color: var(--muted); line-height: 1.6; }

/* =============================================
   AREAS PAGE
   ============================================= */
.areas-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.area-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 26px 22px; transition: all var(--ease); display: flex; flex-direction: column; gap: 9px; }
.area-card:hover { border-color: var(--ice); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,10,30,0.4), var(--glow); }
.area-card__name { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; }
.area-card__desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; flex: 1; }
.area-card__link { font-size: 0.77rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ice); display: inline-flex; align-items: center; gap: 5px; transition: gap var(--ease); }
.area-card__link:hover { gap: 10px; }

/* =============================================
   SUBURB PAGE
   ============================================= */
.local-body { max-width: 780px; margin: 0 auto; padding: 0 28px 80px; }
.local-body h2 { font-family: 'Cinzel', serif; margin-bottom: 14px; font-size: 1.6rem; }
.local-body p { color: var(--muted); margin-bottom: 18px; line-height: 1.9; }
.local-cta { background: var(--bg-card); border: 1px solid var(--border-hi); border-radius: 14px; padding: 28px; margin: 32px 0; }
.local-cta h3 { font-family: 'Cinzel', serif; margin-bottom: 10px; }
.local-cta p { margin-bottom: 16px; font-size: 0.9rem; color: var(--muted); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; padding: 0 28px 48px; }
.footer__brand { font-family: 'Cinzel', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.footer__desc { font-size: 0.84rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.footer__ci { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--silver); margin-bottom: 8px; }
.footer__ci a { color: var(--ice); transition: color var(--ease); }
.footer__ci a:hover { color: var(--white); }
.footer__head { font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ice); margin-bottom: 14px; }
.footer__a { display: block; font-size: 0.84rem; color: var(--muted); margin-bottom: 8px; transition: color var(--ease); }
.footer__a:hover { color: var(--ice); }
.footer__google { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 8px 16px; background: rgba(5,15,35,0.8); border: 1px solid rgba(127,216,255,0.25); border-radius: 9px; font-size: 0.8rem; font-weight: 600; color: var(--silver); transition: all var(--ease); }
.footer__google:hover { background: rgba(127,216,255,0.1); border-color: var(--ice); color: #fff; transform: translateY(-1px); }
.footer__bottom { max-width: 1200px; margin: 0 auto; padding: 18px 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer__copy { font-size: 0.77rem; color: var(--muted); }
.footer__credit { font-size: 0.75rem; color: var(--muted); }
.footer__credit a { color: var(--ice); font-weight: 700; }
.footer__credit a:hover { color: #fff; }

/* =============================================
   STICKY CALL
   ============================================= */
.sticky-call { display: none; position: fixed; bottom: 22px; right: 22px; z-index: 500; width: 58px; height: 58px; background: var(--ice); color: var(--bg-dark); border-radius: 50%; font-size: 1.5rem; align-items: center; justify-content: center; box-shadow: 0 4px 22px rgba(127,216,255,0.6); animation: pulse-call 2.5s ease-in-out infinite; text-decoration: none; }
@keyframes pulse-call { 0%,100%{transform:scale(1);} 50%{transform:scale(1.08);} }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.show { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media(max-width:1024px) {
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .how-grid { grid-template-columns: repeat(2,1fr); }
  .how-step::after { display: none; }
  .brands-grid { grid-template-columns: repeat(4,1fr); }
  .areas-grid { grid-template-columns: repeat(4,1fr); }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { display: none; }
  .hero__btns, .hero__stats { justify-content: center; }
  .hero__desc { margin: 0 auto 36px; }
  .why-us__inner { grid-template-columns: 1fr; }
  .why-us__visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .svc-detail, .svc-detail:nth-child(even) { grid-template-columns: 1fr; }
  .svc-detail:nth-child(even) > div:first-child { order: unset; }
  .svc-detail:nth-child(even) .svc-panel { order: unset; }
  .svc-detail ul { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: repeat(2,1fr); }
  .why-cards { grid-template-columns: repeat(2,1fr); }
  .callout-box { flex-direction: column; }
}
@media(max-width:768px) {
  .navbar__nav { display: none; }
  .navbar__toggle { display: flex; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .sticky-call { display: flex; }
  .vals-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3,1fr); }
  .frow { grid-template-columns: 1fr; }
  .svc-detail { padding: 28px 20px; }
  .areas-list { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .cform { padding: 28px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .brands-grid { grid-template-columns: repeat(2,1fr); }
  .cta-band__btns { flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
  .how-grid { grid-template-columns: 1fr; }
}
