/* =========================================
   THE GARAGE PRESTON — Main Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold: #B8BEC8;        /* primary silver */
  --gold-light: #D8DDE6;  /* light silver / chrome highlight */
  --gold-dark: #7A8494;   /* darker steel */
  --black: #080A0D;       /* near-black with cool blue tint */
  --dark: #0E1014;
  --dark-2: #14171C;
  --dark-3: #1C2028;
  --grey: #484E5A;
  --grey-light: #7A8090;
  --white: #EEF0F4;       /* cool off-white */
  --white-pure: #ffffff;
  --red: #C0392B;

  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --border: 1px solid rgba(184, 190, 200, 0.18);
  --border-strong: 1px solid rgba(184, 190, 200, 0.55);
  --shadow-gold: 0 0 36px rgba(184, 190, 200, 0.12);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---- Selection ---- */
::selection { background: var(--gold); color: var(--black); }

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 68px;
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: rgba(201, 168, 76, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img { height: 40px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover { opacity: 1; color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { opacity: 1; color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-phone .icon { font-size: 0.8rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(245, 240, 232, 0.4);
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(245, 240, 232, 0.08);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition-slow);
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

/* =========================================
   SECTION UTILITIES
   ========================================= */
section { position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--white);
}

.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 1rem;
  color: var(--grey-light);
  font-weight: 300;
  max-width: 520px;
  margin-top: 16px;
  line-height: 1.7;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad {
  padding: 100px 0;
}

/* =========================================
   HERO SECTION (index.html)
   ========================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: var(--border-strong);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  width: fit-content;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .gold { color: var(--gold); }
.hero-title .outline {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--grey-light);
  font-weight: 300;
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--border);
  padding-top: 40px;
}

.hero-stat {
  padding: 0 32px 0 0;
  border-right: var(--border);
}

.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 32px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1) contrast(1.1);
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 40%);
  z-index: 1;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--black) 100%);
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  z-index: 2;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--grey);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { width: 40px; opacity: 1; }
  50% { width: 20px; opacity: 0.5; }
  100% { width: 40px; opacity: 1; }
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  background: var(--dark-2);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 24px 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  flex-shrink: 0;
}

.trust-item .icon { color: var(--gold); font-size: 1rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================
   WHY CHOOSE US / FEATURES
   ========================================= */
.features {
  background: var(--black);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
  margin-top: 60px;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.feature-card {
  background: var(--dark);
  padding: 48px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover { background: var(--dark-2); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px;
  height: 56px;
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.feature-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.7;
  font-weight: 300;
}

/* =========================================
   SERVICES CARDS (services.html + home preview)
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: var(--dark);
  border: var(--border);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover .service-num { color: rgba(201, 168, 76, 0.25); }

.service-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

.service-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.brand-tag {
  padding: 4px 10px;
  border: var(--border);
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews {
  background: var(--dark-2);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}

.rating-info .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 4px; }
.rating-info .count { font-family: var(--font-condensed); font-size: 0.85rem; color: var(--grey-light); letter-spacing: 0.1em; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--dark);
  border: var(--border);
  padding: 32px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }

.review-text {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: var(--border);
  padding-top: 20px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  border: var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.author-date {
  font-size: 0.78rem;
  color: var(--grey);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 100px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 0.95;
  color: var(--white);
}

.cta-title span { color: var(--gold); }

.cta-subtitle {
  font-size: 1rem;
  color: var(--grey-light);
  font-weight: 300;
  margin-top: 12px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark-2) 100%);
  padding-top: 160px;
  position: relative;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://dev.spacewave.co.uk/thegaragepreston/images/BMW-The-Garage-Preston.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: grayscale(100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: var(--border-strong);
  z-index: 0;
}

.about-image img { position: relative; z-index: 1; }

.about-content { }

.about-text {
  font-size: 1rem;
  color: var(--grey-light);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: var(--border);
  flex-wrap: wrap;
}

.brand-logo-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--grey);
  transition: var(--transition);
}

.brand-logo-item:hover { color: var(--gold); }

.team-section { margin-top: 100px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.value-card {
  border: var(--border);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  background: var(--dark-2);
}

.value-icon { font-size: 2rem; margin-bottom: 16px; }

.value-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.85rem;
  color: var(--grey-light);
  line-height: 1.6;
}

/* =========================================
   SERVICES PAGE
   ========================================= */
.services-hero {
  padding-top: 180px;
  padding-bottom: 80px;
  background: var(--dark-2);
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: 'SERVICES';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(201, 168, 76, 0.03);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-full-card {
  background: var(--dark);
  border: var(--border);
  padding: 48px 44px;
  transition: var(--transition);
  position: relative;
}

.service-full-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: var(--shadow-gold);
}

.service-full-card .service-icon { font-size: 2rem; }
.service-full-card .service-title { font-size: 1.3rem; margin-top: 16px; }

.service-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--grey-light);
}

.service-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Pricing note */
.pricing-note {
  background: var(--dark-2);
  border: var(--border);
  padding: 32px 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.pricing-note-icon { font-size: 2rem; color: var(--gold); flex-shrink: 0; }
.pricing-note-text { font-size: 0.95rem; color: var(--grey-light); line-height: 1.7; }
.pricing-note-text strong { color: var(--white); }

/* =========================================
   GALLERY PAGE
   ========================================= */
.gallery-hero {
  padding-top: 180px;
  padding-bottom: 80px;
  background: var(--dark-2);
  border-bottom: var(--border);
}

.instagram-feed {
  margin-top: 60px;
}

.instagram-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px 32px;
  background: var(--dark);
  border: var(--border);
}

.instagram-handle {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.instagram-handle .icon {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ig-stats {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  color: var(--grey-light);
}

.ig-stats strong { color: var(--white); }

/* Embed container */
.instagram-embed-wrapper {
  background: var(--dark);
  border: var(--border);
  padding: 40px;
  text-align: center;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.instagram-embed-wrapper .ig-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-static-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.85) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero {
  padding-top: 180px;
  padding-bottom: 80px;
  background: var(--dark-2);
  border-bottom: var(--border);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 0px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-block {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border: var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.info-content {}
.info-label {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.info-value {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;
}

.info-value a { color: var(--gold-light); transition: var(--transition); }
.info-value a:hover { color: var(--gold); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.hours-table tr td {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--grey-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hours-table tr td:first-child { color: var(--white); font-weight: 500; }
.hours-table tr td:last-child { text-align: right; }
.hours-table tr.today td { color: var(--gold); }

/* Contact Form */
.contact-form-wrapper {}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--dark-2);
  border: var(--border);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--grey); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--dark);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-select option {
  background: var(--dark-2);
  color: var(--white);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.form-submit-btn:hover { background: transparent; color: var(--gold); }

.form-note {
  font-size: 0.8rem;
  color: var(--grey);
  font-style: italic;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  border: var(--border-strong);
}

.form-success .success-icon { font-size: 3rem; margin-bottom: 20px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.form-success p { color: var(--grey-light); }

/* =========================================
   MAP
   ========================================= */
.map-section { background: var(--dark-2); }

.map-container {
  position: relative;
  margin-top: 60px;
}

.map-frame {
  width: 100%;
  height: 480px;
  border: var(--border);
  filter: grayscale(30%) contrast(1.05);
}

.map-card {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border: var(--border-strong);
  padding: 28px 32px;
  max-width: 280px;
}

.map-card-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.map-card-address {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.map-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.map-directions-btn:hover { background: var(--gold-light); }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--dark);
  border-top: var(--border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.7;
  font-weight: 300;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--grey-light);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.footer-heading {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--grey-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--grey-light);
}

.footer-contact-item .icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--grey-light); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--grey);
  font-family: var(--font-condensed);
  letter-spacing: 0.05em;
}

/* =========================================
   PAGE HERO GENERIC
   ========================================= */
.page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: grayscale(100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--black) 100%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) { transition-delay: 0.05s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.15s; }
.fade-up:nth-child(4) { transition-delay: 0.2s; }
.fade-up:nth-child(5) { transition-delay: 0.25s; }
.fade-up:nth-child(6) { transition-delay: 0.3s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 40vh; order: 1;}
  .hero-image::before { background: linear-gradient(180deg, var(--black) 0%, transparent 40%); }
  .hero-content { padding: 60px 40px; }
  .hero-scroll { left: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .gallery-static-grid { grid-template-columns: repeat(2, 1fr); }
  .map-card { position: static; max-width: 100%; margin-top: 20px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 70px 0; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: flex; align-items: center; gap: 10px; }
  .nav-cta .btn-primary { display: none; }
  .nav-phone { font-size: 0.82rem; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stat:last-child { padding-left: 20px; }
  .hero-stat { padding-right: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .hero-content { padding: 40px 20px 60px; order: 2;}
  .gallery-static-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3.5rem; }
  .hero-stats { grid-template-columns: 1fr; border-top: none; padding-top: 0; }
  .hero-stat { border-right: none; border-top: var(--border); padding: 16px 0; }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat:last-child { padding-left: 0; }
  .gallery-static-grid { grid-template-columns: 1fr; }
  .quick-stats-grid { grid-template-columns: 1fr 1fr !important; }
  .quick-stats-grid > div { border-right: none !important; border-bottom: var(--border); padding: 20px 10px !important; }
  .values-grid { grid-template-columns: 1fr 1fr !important; }
}

/* =========================================
   SILVER / METALLIC ENHANCEMENTS
   ========================================= */

/* Metallic shimmer on primary buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 45%, var(--gold-dark) 55%, var(--gold) 100%);
  background-size: 200% auto;
  transition: background-position 0.5s ease, color var(--transition), border-color var(--transition);
}

.btn-primary:hover {
  background-position: right center;
  background: transparent;
  color: var(--gold-light);
}

/* Silver accent line on section labels */
.section-label { color: var(--gold-light); }
.section-label::before { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }

/* Chrome/steel hero accent */
.hero-title .gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-dark) 30%, #ffffff 50%, var(--gold-dark) 70%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: chromeShimmer 2s ease-in-out infinite alternate;
}

@keyframes chromeShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}

/* Steel texture on dark sections */
.dark-section-texture {
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(184, 190, 200, 0.015) 2px,
    rgba(184, 190, 200, 0.015) 4px
  );
}

/* Silver glow on hover for review cards */
.review-card:hover { box-shadow: 0 0 24px rgba(184, 190, 200, 0.08); }

/* Nav active link — silver underline */
.nav-links a::after { background: var(--gold-light); }

/* Silver brand tags */
.brand-tag { color: var(--gold-light); }

/* Rating number chrome */
.rating-number {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================
   FA ICON COLOURS
   ========================================= */
.trust-item i { color: var(--gold); font-size: 0.9rem; width: 18px; text-align: center; flex-shrink: 0; }
.feature-icon i { font-size: 1.3rem; }
.feature-card:hover .feature-icon i { color: var(--black); }
.service-icon i, .service-full-card .service-icon i { font-size: 1.6rem; }
.service-list li { display: flex; align-items: flex-start; gap: 10px; }
.service-list li i { color: var(--gold); font-size: 0.75rem; margin-top: 5px; flex-shrink: 0; }
.review-stars i { color: var(--gold); font-size: 0.85rem; }
.footer-contact-item i { color: var(--gold); flex-shrink: 0; width: 16px; text-align: center; margin-top: 2px; }
.social-link i { font-size: 1rem; }
.info-icon i { font-size: 1rem; color: var(--gold); }
.map-card-title i { color: var(--gold); margin-right: 4px; }
.value-icon i { font-size: 2rem; color: var(--gold); }
.pricing-note-icon i { font-size: 1.6rem; color: var(--gold); }
.form-success .success-icon i { font-size: 3rem; color: var(--gold); }
.nav-phone i { font-size: 0.85rem; margin-right: 2px; }

/* =========================================
   BRAND LOGOS
   ========================================= */
.brand-logo-item { display: inline-flex; align-items: center; justify-content: center; }
.brand-logo-item img { height: 36px; width: 36px; object-fit: contain; display: block; }

/* =========================================
   DISABLE PARALLAX ON MOBILE
   ========================================= */
@media (max-width: 768px) {
  .hero-image img { transform: none !important; }
}
