/*
Theme Name: The IT Guy MK
Theme URI: https://theitguymk.co.uk
Author: The IT Guy MK
Author URI: https://theitguymk.co.uk
Description: Custom theme for The IT Guy MK - IT Support in Milton Keynes & Northampton
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: theitguymk
Tags: custom, responsive, seo-optimised
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy: #001F3F;
  --cyan: #00BFFF;
  --cyan-dark: #009ACC;
  --gray: #808080;
  --light-gray: #f5f7fa;
  --white: #ffffff;
  --text-dark: #1a2332;
  --border: rgba(0,31,63,0.08);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.1rem; }
p { font-size: 1rem; color: var(--gray); line-height: 1.7; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 1.5rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(0, 31, 63, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,191,255,0.15);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.35); }

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--white);
}
.site-logo svg { width: 44px; height: 44px; flex-shrink: 0; }
.logo-accent { color: var(--cyan); }

#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
#primary-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
#primary-nav a:hover,
#primary-nav .current-menu-item > a { color: var(--cyan); }
#primary-nav .nav-cta a {
  background: var(--cyan);
  color: var(--navy) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}
#primary-nav .nav-cta a:hover { background: #33ccff; transform: translateY(-1px); }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: 0.3s;
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--navy);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,191,255,0.3);
}
.btn-primary:hover {
  background: #33ccff;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,191,255,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-navy:hover { background: #002d5a; color: var(--white); transform: translateY(-2px); }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub { max-width: 560px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,191,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridScroll 25s linear infinite;
}
@keyframes gridScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(64px); }
}
.hero-glow-1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,191,255,0.1) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: floatOrb 10s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,100,220,0.12) 0%, transparent 70%);
  bottom: -80px; left: 15%;
  animation: floatOrb 13s ease-in-out infinite reverse;
}
.hero-scan {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,191,255,0.5), transparent);
  animation: scan 5s linear infinite;
}
@keyframes floatOrb {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.04); }
}
@keyframes scan {
  0% { top: 0; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 9rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,191,255,0.1);
  border: 1px solid rgba(0,191,255,0.3);
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulseDot 1.5s ease infinite;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .accent { color: var(--cyan); }

.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--cyan);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Hero terminal card */
.hero-terminal {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,191,255,0.2);
  border-radius: 18px;
  padding: 1.75rem;
  animation: fadeUp 0.8s 0.2s ease both;
  backdrop-filter: blur(8px);
  position: relative;
}
.hero-terminal::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,191,255,0.25), transparent 50%, rgba(0,191,255,0.08));
  z-index: -1;
}
.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.terminal-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #4eff91;
  font-weight: 500;
}
.status-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4eff91;
  animation: pulseDot 1.5s ease infinite;
}
.terminal-secure { font-size: 0.7rem; color: rgba(255,255,255,0.3); }
.terminal-line {
  font-family: 'Courier New', monospace;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.4rem;
}
.terminal-line .t-cmd { color: var(--cyan); }
.terminal-line .t-ok { color: #4eff91; }
.terminal-bars { margin-top: 1.25rem; }
.t-bar-item { margin-bottom: 0.85rem; }
.t-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 5px;
}
.t-bar-val { color: var(--cyan); font-weight: 600; }
.t-bar-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.t-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), #33ccff);
  border-radius: 2px;
  animation: fillBar 1.5s ease both;
}
@keyframes fillBar { from { width: 0 !important; } }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--light-gray); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #33ccff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,31,63,0.12);
  border-color: rgba(0,191,255,0.25);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(0,191,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(0,191,255,0.2); }
.service-card h3 { color: var(--navy); margin-bottom: 0.7rem; }
.service-card p { font-size: 0.87rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1rem;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ============================================================
   AREAS (LOCAL SEO SECTION)
   ============================================================ */
.areas-section { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.area-card {
  background: var(--light-gray);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.25s;
}
.area-card:hover {
  border-color: var(--cyan);
  background: rgba(0,191,255,0.05);
  transform: translateY(-3px);
}
.area-card .area-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 3px;
}
.area-card .area-dist { font-size: 0.75rem; color: var(--gray); }
.area-card .area-pin { font-size: 1.1rem; margin-bottom: 0.4rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(0,191,255,0.1) 0%, transparent 60%);
}
.exp-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--cyan);
  color: var(--navy);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  margin-bottom: 1.5rem;
}
.exp-badge .years { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2.2rem; line-height: 1; }
.exp-badge .label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.cert-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 1.25rem 0; }
.cert-pill {
  background: rgba(0,191,255,0.12);
  border: 1px solid rgba(0,191,255,0.2);
  color: var(--cyan);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.skill-list { list-style: none; }
.skill-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.87rem;
  color: rgba(255,255,255,0.8);
}
.skill-list li::before { content: '✓'; color: var(--cyan); font-weight: 700; }
.about-text .section-sub { max-width: 100%; margin-bottom: 1.25rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}
.about-highlight {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 1.1rem;
  border-left: 3px solid var(--cyan);
}
.about-highlight h4 { font-size: 0.83rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; font-family: 'Montserrat', sans-serif; }
.about-highlight p { font-size: 0.76rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--navy); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-sub { color: rgba(255,255,255,0.6); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,191,255,0.15);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,191,255,0.35);
  transform: translateY(-4px);
}
.stars { color: var(--cyan); letter-spacing: 3px; font-size: 0.88rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #005f99);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.87rem; color: var(--white); }
.author-role { font-size: 0.74rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   BOOKING (Amelia Calendar wrapper)
   ============================================================ */
.booking-section { background: var(--white); }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.booking-info h2 { margin-bottom: 1rem; }
.booking-features { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.75rem; }
.booking-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--gray); }
.booking-feature-icon {
  width: 36px; height: 36px;
  background: rgba(0,191,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.booking-contact-box {
  margin-top: 2rem;
  background: var(--light-gray);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.booking-contact-box p { font-size: 0.85rem; color: var(--gray); margin-bottom: 0.4rem; }
.booking-contact-box a { color: var(--navy); font-weight: 600; }

/* Amelia plugin wrapper */
.amelia-booking-wrap {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 2rem;
  border: 1.5px solid var(--border);
}
.amelia-booking-wrap h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* Booking plugin colour overrides — LatePoint */
.latepoint-wrap .latepoint-btn,
.latepoint-booking-form-element .latepoint-next-btn,
.latepoint-w .latepoint-step-confirm-btn {
  background: var(--cyan) !important;
  border-color: var(--cyan) !important;
  color: var(--navy) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
}
.latepoint-wrap .latepoint-btn:hover,
.latepoint-booking-form-element .latepoint-next-btn:hover { background: #33ccff !important; }
.latepoint-w .os-selected-item,
.latepoint-w .os-item.selected { border-color: var(--cyan) !important; }
.latepoint-w .os-step-timeline .os-step.active .os-step-icon { background: var(--cyan) !important; color: var(--navy) !important; }
.latepoint-w input:focus,
.latepoint-w select:focus { border-color: var(--cyan) !important; box-shadow: 0 0 0 3px rgba(0,191,255,0.12) !important; }
.latepoint-w .os-selected-timeslot { background: rgba(0,191,255,0.15) !important; border-color: var(--cyan) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #000d1a;
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: block;
}
.footer-tagline { font-size: 0.85rem; line-height: 1.65; margin-bottom: 1.5rem; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; margin-bottom: 0.45rem; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--cyan); }
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-nav-links { list-style: none; }
.footer-nav-links li { margin-bottom: 0.5rem; }
.footer-nav-links a { color: rgba(255,255,255,0.5); font-size: 0.84rem; }
.footer-nav-links a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--cyan); }

/* ============================================================
   PAGE: PRICING
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 9rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,191,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-title { color: var(--white); }
.page-hero-title span { color: var(--cyan); }
.page-hero-sub { color: rgba(255,255,255,0.65); max-width: 540px; margin: 1rem auto 0; }

.pricing-section { padding: 5rem 1.5rem; }
.pricing-category { margin-bottom: 4rem; }
.cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 1.5rem;
}
.cat-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.cat-num { font-size: 0.7rem; font-weight: 700; color: var(--cyan); letter-spacing: 0.1em; text-transform: uppercase; }
.cat-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--navy); }

.price-cards { display: grid; gap: 1rem; }
.price-cards.cols-2 { grid-template-columns: 1fr 1fr; }
.price-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }

.price-card {
  background: var(--light-gray);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  position: relative;
  transition: all 0.25s;
}
.price-card:hover {
  border-color: rgba(0,191,255,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,31,63,0.1);
}
.price-card.featured { background: var(--navy); border-color: var(--cyan); }
.price-card.featured .price-name,
.price-card.featured .price-desc { color: rgba(255,255,255,0.85); }
.price-card.featured .price-amount { color: var(--cyan); }
.price-card.featured .price-meta { color: rgba(255,255,255,0.45); }
.featured-label {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.94rem; color: var(--navy); margin-bottom: 0.5rem; }
.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
  margin: 0.7rem 0 0.25rem;
}
.price-currency { font-size: 1.2rem; vertical-align: super; font-weight: 700; }
.price-parts { display: block; font-size: 0.75rem; font-weight: 600; color: var(--gray); margin-top: 3px; }
.price-meta { font-size: 0.78rem; color: var(--gray); margin-bottom: 0.6rem; }
.price-desc { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.7); }

.deposit-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,191,255,0.1);
  border: 1px solid rgba(0,191,255,0.25);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
}
.price-card.featured .deposit-badge { background: rgba(0,191,255,0.15); }

.price-rationale {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(0,191,255,0.05);
  border-left: 3px solid var(--cyan);
  border-radius: 0 8px 8px 0;
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
}

.guarantee-strip {
  background: var(--navy);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem 0;
}
.guarantee-item { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: rgba(255,255,255,0.8); }
.guarantee-item strong { color: var(--cyan); }

.pricing-cta-box {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
}
.pricing-cta-box h2 { color: var(--navy); margin-bottom: 0.75rem; }
.pricing-cta-box p { max-width: 440px; margin: 0 auto 2rem; }
.pricing-cta-contact { margin-top: 1.5rem; font-size: 0.85rem; }
.pricing-cta-contact a { color: var(--navy); font-weight: 600; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .price-cards.cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-terminal { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .booking-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .price-cards.cols-2,
  .price-cards.cols-3 { grid-template-columns: 1fr; }
  .guarantee-strip { flex-direction: column; align-items: flex-start; }
  .pricing-cta-box { padding: 2rem 1.5rem; }
}
@media (max-width: 680px) {
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #primary-nav { display: none; }
  #primary-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(0,15,30,0.98);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 9998;
  }
  #primary-nav.mobile-open ul { flex-direction: column; gap: 1.25rem; }
  .mobile-menu-toggle { display: flex; }
}
