/* ============================================
   CSS CUSTOM PROPERTIES (Auto Workshop palette)
   ============================================ */
:root {
  /* fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* colors - rich dark + vibrant accents */
  --color-bg-primary: #faf8f5;          /* warm off-white */
  --color-bg-dark: #0f1419;            /* deep charcoal */
  --color-bg-card: #ffffff;
  --color-text-dark: #1a1e24;
  --color-text-light: #f2f0ec;
  --color-accent-gold: #d4a853;        /* premium auto gold */
  --color-accent-burgundy: #8b2a3b;    /* rich burgundy */
  --color-accent-orange: #e05a2c;      /* CTA vibrant */
  --color-accent-hover: #b8431f;
  --color-glass-bg: rgba(255, 255, 255, 0.18);
  --color-glass-border: rgba(255, 255, 255, 0.25);
  --color-muted: #5a6068;
  --color-shadow: rgba(0, 0, 0, 0.08);
  --color-overlay: rgba(0, 0, 0, 0.65);
  --map-bg: #e8e3da;

  /* spacing / radius */
  --radius-card: 20px;
  --radius-btn: 60px;
  --section-pad: 5rem 1.5rem;
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, i {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.8s cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
}

/* ========== GLASS NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--color-glass-bg);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-bottom: 1px solid var(--color-glass-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: background 0.2s;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.8rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.emoji-logo {
  font-size: 1.8rem;
  color: var(--color-accent-gold);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-dark);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: var(--color-accent-gold);
  color: var(--color-accent-burgundy);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--color-text-dark);
  cursor: pointer;
  padding: 0.3rem;
  transition: transform 0.2s;
}
.nav-toggle:hover {
  transform: scale(1.1);
}

/* ========== HERO ========== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 7rem 1.5rem 5rem;
  background: radial-gradient(circle at 20% 40%, #1f2a35 0%, #0b1117 90%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(45deg, rgba(212, 168, 83, 0.04) 0px, rgba(212, 168, 83, 0.04) 2px, transparent 2px, transparent 12px),
    radial-gradient(circle at 70% 30%, rgba(212,168,83,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  color: var(--color-text-light);
  animation: fadeInUp 0.9s ease;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.8rem;
  border-radius: 60px;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255,215,140,0.25);
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
  color: #f6eee7;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.4rem;
  background: rgba(0,0,0,0.3);
  display: inline-block;
  padding: 0.3rem 1.6rem;
  border-radius: 40px;
  backdrop-filter: blur(2px);
}

.hero-tagline i {
  margin-right: 0.4rem;
  color: var(--color-accent-gold);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.cta-primary, .cta-secondary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.6rem;
  border-radius: var(--radius-btn);
  transition: all 0.25s ease;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.cta-primary {
  background: var(--color-accent-orange);
  color: #fff;
  border-color: var(--color-accent-orange);
  box-shadow: 0 6px 18px rgba(224, 90, 44, 0.3);
}

.cta-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(224, 90, 44, 0.4);
}

.cta-secondary {
  background: transparent;
  color: #f0ebe6;
  border: 2px solid rgba(255, 215, 140, 0.7);
  backdrop-filter: blur(4px);
}

.cta-secondary:hover {
  background: rgba(212, 168, 83, 0.2);
  border-color: var(--color-accent-gold);
  color: #fff;
  transform: translateY(-2px);
}

.hero-rating-float {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(15, 20, 25, 0.7);
  backdrop-filter: blur(6px);
  padding: 0.7rem 1.6rem;
  border-radius: 48px;
  color: #f5e6d3;
  border: 1px solid rgba(212,168,83,0.2);
  font-weight: 500;
  font-size: 0.95rem;
  z-index: 3;
}
.hero-rating-float i {
  color: gold;
  display: inline;
  margin-right: 0.3rem;
}

/* ========== ABOUT ========== */
.about-section {
  padding: var(--section-pad);
  background: var(--color-bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image-frame {
  background: var(--color-bg-dark);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  background: linear-gradient(145deg, #1a232c, #0d131a);
  border: 1px solid rgba(212, 168, 83, 0.2);
}

.image-placeholder {
  text-align: center;
  color: var(--color-accent-gold);
}

.image-placeholder i {
  font-size: 5rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  color: #dfc08b;
}

.placeholder-caption {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  background: rgba(0,0,0,0.45);
  padding: 0.4rem 1.6rem;
  border-radius: 40px;
  color: #ebe3d5;
  letter-spacing: 0.5px;
}

.about-text .section-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  background: rgba(139, 42, 59, 0.06);
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-accent-burgundy);
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.about-text p {
  color: #3b424b;
  margin-bottom: 0.9rem;
  font-size: 1rem;
  max-width: 500px;
}

.stats-row {
  display: flex;
  gap: 1.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  background: white;
  padding: 1rem 1.8rem;
  border-radius: 32px;
  box-shadow: 0 4px 14px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  border: 1px solid #ece7e0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-accent-burgundy);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ========== SERVICES section ========== */
.services-section {
  padding: var(--section-pad);
  background: #f2efe9;
}

.section-header {
  margin-bottom: 2.8rem;
  text-align: center;
}

.section-header .section-tag {
  display: inline-block;
  background: rgba(212, 168, 83, 0.12);
  padding: 0.3rem 1.8rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #7a5e2e;
  margin-bottom: 0.3rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

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

.service-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-card);
  padding: 1.8rem 1.5rem 2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  border: 1px solid #f0e9e0;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--color-accent-gold);
}

.card-img {
  background: #ece3d8;
  border-radius: 60px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: var(--color-accent-burgundy);
  margin-bottom: 1.2rem;
  position: relative;
  background: linear-gradient(145deg, #f5ede4, #e6dbcf);
}

.card-img-tag {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-accent-gold);
  font-size: 0.6rem;
  font-weight: 700;
  color: #1d1a16;
  padding: 0.2rem 0.8rem;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.service-card p {
  color: #4a4f58;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  flex: 1;
}

.card-price {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-accent-burgundy);
  background: rgba(139, 42, 59, 0.06);
  align-self: flex-start;
  padding: 0.25rem 1.1rem;
  border-radius: 40px;
}

/* ========== CONTACT ========== */
.contact-section {
  padding: var(--section-pad);
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info .section-tag {
  display: inline-block;
  background: rgba(212, 168, 83, 0.08);
  padding: 0.2rem 1.6rem;
  border-radius: 50px;
  font-weight: 500;
  color: #715a30;
  margin-bottom: 0.2rem;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 1.8rem;
  color: var(--color-text-dark);
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.4rem;
  color: var(--color-accent-gold);
  margin-top: 0.2rem;
  width: 2rem;
}

.info-label {
  font-weight: 600;
  display: block;
  font-size: 0.9rem;
  color: var(--color-muted);
  letter-spacing: 0.3px;
}

.info-value {
  font-weight: 500;
  color: var(--color-text-dark);
}

.info-value a {
  text-decoration: underline;
  text-decoration-color: var(--color-accent-gold);
  text-underline-offset: 4px;
}

.contact-map {
  background: var(--map-bg);
  border-radius: 32px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e1d7cc;
  box-shadow: 0 6px 20px rgba(0,0,0,0.02);
}

.map-placeholder {
  text-align: center;
  color: #2a313b;
}

.map-placeholder i {
  font-size: 3.5rem;
  color: var(--color-accent-burgundy);
  margin-bottom: 0.3rem;
}

.map-placeholder p {
  font-weight: 600;
  font-size: 1.1rem;
}

.map-link {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--color-bg-dark);
  color: #ebe3d5;
  padding: 0.4rem 1.4rem;
  border-radius: 40px;
  font-size: 0.9rem;
  transition: background 0.2s;
  border: 1px solid #464f5a;
}

.map-link:hover {
  background: #262f3b;
}

.map-embed-note {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  background: rgba(0,0,0,0.05);
  padding: 0.2rem 1.2rem;
  border-radius: 40px;
  color: #3f464e;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-bg-dark);
  color: #d8d2ca;
  padding: 2.8rem 1.5rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  color: #eee7de;
}

.footer-brand i {
  color: var(--color-accent-gold);
}

.footer-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: #afaba5;
  margin-top: 0.1rem;
}

.footer-message {
  font-size: 1rem;
  letter-spacing: 0.3px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
  margin: 0.8rem auto 0.6rem;
  max-width: 500px;
  color: #cac2b6;
}

.footer-copyright {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.6rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 0 0 28px 28px;
    padding: 1.2rem 1.8rem;
    gap: 1.2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(212,168,83,0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .hero-section {
    padding: 7rem 1rem 4rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-frame {
    min-height: 200px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-row {
    justify-content: center;
  }

  .hero-rating-float {
    bottom: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .footer-brand {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  .cta-primary, .cta-secondary {
    width: 90%;
    text-align: center;
  }
}