/* ============================================
   GARAGE - Bold Street Style
   Gorilla Crown Aesthetic - Powerful & Notorious
   ============================================ */

:root {
  /* Colors - Black, White, Gold, Red */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gold: #FFD700;
  --color-red: #ff0000;
  --color-dark-grey: #1a1a1a;
  --color-grey: #333333;
  
  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.03), transparent 40%),
    var(--color-black);
  color: var(--color-white);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  cursor: url('../assets/cursor-wrench.svg') 6 6, auto;
}

a, button, .btn-primary, .btn-secondary, .btn-nav, .logo, .scroll-to-top {
  cursor: url('../assets/cursor-wrench.svg') 6 6, pointer !important;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(255, 215, 0, 0.01) 100px, rgba(255, 215, 0, 0.01) 101px);
  pointer-events: none;
  z-index: 9999;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-gold);
  color: var(--color-black);
  padding: 10px;
  z-index: 100;
  font-weight: bold;
}

.skip-link:focus {
  top: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1400px;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65px;
  position: relative;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: absolute;
  left: 30px;
  top: -15px;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo img {
  height: 75px;
  width: auto;
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
  transition: all 0.2s ease;
}

.logo:hover img {
  filter: brightness(1.3) drop-shadow(0 6px 16px rgba(255, 215, 0, 0.5));
}

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

.nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover {
  color: var(--color-white);
}

.nav a:hover::after {
  width: 100%;
}

.brand-name {
  position: absolute;
  right: 30px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--color-white);
  font-weight: 400;
  transition: color 0.2s ease;
}

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

.btn-nav {
  background: var(--color-gold);
  color: var(--color-black) !important;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: var(--font-body);
  margin-left: 10px;
}

.btn-nav::after {
  display: none;
}

.btn-nav:hover {
  background: #FFA500;
  transform: scale(1.05);
  color: var(--color-black) !important;
}

.btn-booking {
  display: none;
  background: linear-gradient(135deg, var(--color-gold), #FFA500);
  color: var(--color-black);
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-family: var(--font-body);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
  margin-left: 15px;
}

.btn-booking:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
  }
}

@media (min-width: 1200px) {
  .btn-booking {
    display: inline-block;
  }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 215, 0, 0.1);
  border: 1.5px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 30px;
  z-index: 100;
  transition: all 0.2s ease;
}

.mobile-toggle:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--color-gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.15), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(255, 0, 0, 0.1), transparent 40%),
    linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0.5;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-item {
  position: absolute;
  font-size: 40px;
  opacity: 0.15;
  animation: float var(--duration, 20s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

/* Gold Particles */
.gold-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold);
  animation: particleRise 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 16s; }
.particle:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 18s; }
.particle:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 20%; animation-delay: 6s; animation-duration: 17s; }
.particle:nth-child(8) { left: 75%; animation-delay: 7s; animation-duration: 11s; }

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.logo-background {
  font-family: var(--font-display);
  font-size: clamp(50px, 10vw, 120px);
  letter-spacing: 8px;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--color-white), var(--color-gold), var(--color-white));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s linear infinite;
  text-shadow: 0 0 80px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.5vw, 24px);
  letter-spacing: 4px;
  margin: 30px 0;
  color: var(--color-white);
  font-weight: 600;
}

.sub-item {
  display: inline-block;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.sub-item:nth-child(1) { animation-delay: 0.5s; }
.sub-item:nth-child(3) { animation-delay: 0.7s; }
.sub-item:nth-child(5) { animation-delay: 0.9s; }

.sub-divider {
  color: var(--color-gold);
  margin: 0 10px;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 80px);
  letter-spacing: 10px;
  color: var(--color-red);
  margin: 30px 0;
  text-shadow: 
    0 0 20px rgba(255, 0, 0, 0.8),
    0 0 40px rgba(255, 0, 0, 0.5),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  animation: neonPulse 2s ease-in-out infinite;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 280px;
  animation: fadeInUp 1s ease 1s forwards;
  opacity: 0;
  position: relative;
  z-index: 10;
}

.btn-primary, .btn-secondary {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-black);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background: #FFA500;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 3px;
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  margin: 10px auto 0;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  box-sizing: border-box;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: rgba(0, 0, 0, 1);
  transform: translateY(-3px);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 2;
}

.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
  border-radius: 50%;
}

.scroll-progress circle:first-child {
  fill: none;
  stroke: rgba(255, 215, 0, 0.2);
  stroke-width: 3;
  cx: 28;
  cy: 28;
  r: 26;
}

.scroll-progress circle:last-child {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 3;
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  transition: stroke-dashoffset 0.1s linear;
  stroke-linecap: round;
  cx: 28;
  cy: 28;
  r: 26;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .scroll-progress circle:first-child,
  .scroll-progress circle:last-child {
    cx: 25;
    cy: 25;
    r: 23;
  }
  
  .scroll-progress circle:last-child {
    stroke-dasharray: 144.51;
    stroke-dashoffset: 144.51;
  }
}

/* ============================================
   LIVE STATUS WIDGET
   ============================================ */
.live-status-widget {
  position: fixed;
  top: 20px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 10px 16px;
  z-index: 1001;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 1200px;
  margin-left: auto;
}

.live-status-widget:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

.status-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF0000;
  box-shadow: 0 0 8px currentColor;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.status-dot.open {
  background: #00FF00;
}

.status-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}

.status-time {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 600;
  white-space: nowrap;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 4px;
}

.whatsapp-icon:hover {
  background: #20BA5A;
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .live-status-widget {
    top: 85px;
    right: 20px;
    left: 20px;
    padding: 8px 12px;
    gap: 8px;
    justify-content: center;
  }
  
  .status-text {
    font-size: 11px;
  }
  
  .status-time {
    font-size: 11px;
    padding-left: 10px;
  }
  
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #000000, #1a1a1a, #000000);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 215, 0, 0.03) 50px, rgba(255, 215, 0, 0.03) 51px);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(50px, 8vw, 80px);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 15px;
  text-shadow: 
    0 0 30px rgba(255, 215, 0, 0.5),
    0 0 60px rgba(255, 215, 0, 0.3);
  animation: pulseGlow 2s ease-in-out infinite;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 120px 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05), transparent 50%),
    var(--color-black);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Animated Background Shapes */
.bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: morphShape 20s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-gold), transparent);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-red), transparent);
  bottom: 10%;
  right: -10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-gold), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

.section-title {
  font-family: var(--font-display);
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.2;
}

.title-accent {
  display: block;
  font-size: clamp(30px, 5vw, 50px);
  color: var(--color-gold);
  letter-spacing: 8px;
}

.title-main {
  display: block;
  font-size: clamp(60px, 10vw, 120px);
  color: var(--color-white);
  letter-spacing: 12px;
  background: linear-gradient(135deg, var(--color-white), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 0, 0, 0.1));
  transition: top 0.4s ease;
}



.service-card:hover::before {
  top: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 40px rgba(255, 215, 0, 0.3),
    0 0 40px rgba(255, 215, 0, 0.2);
  border-color: var(--color-gold);
}

.service-number {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(255, 215, 0, 0.1);
  position: absolute;
  top: 20px;
  right: 20px;
  letter-spacing: 4px;
}

.service-icon {
  font-size: 60px;
  margin-bottom: 20px;
  filter: grayscale(1) brightness(2);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  filter: grayscale(0) brightness(1);
  transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin: 20px 0 15px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.service-arrow {
  font-size: 32px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
  transform: translateX(10px);
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 120px 0;
  background: 
    linear-gradient(135deg, rgba(255, 0, 0, 0.05), transparent),
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1), transparent),
    var(--color-black);
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Floating Tools */
.floating-tools {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.tool {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.1;
  animation: floatTool 15s ease-in-out infinite;
}

.tool-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.tool-2 {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
  animation-duration: 22s;
}

.tool-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
  animation-duration: 20s;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(0, 0, 0, 0.9));
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.why-card:hover::before {
  left: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.why-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 60px;
  color: rgba(255, 215, 0, 0.1);
  letter-spacing: 2px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin: 0 0 20px 0;
}

.why-card p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ============================================
   BRANDS
   ============================================ */
.brands {
  padding: 60px 0;
  background: var(--color-dark-grey);
  border-top: 2px solid rgba(255, 215, 0, 0.2);
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.brands-title {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 3px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  font-weight: 600;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-item {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 3px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  padding: 20px;
  border: 2px solid rgba(255, 215, 0, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.brand-item:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: 
    radial-gradient(circle at 80% 50%, rgba(255, 0, 0, 0.08), transparent),
    var(--color-black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0.5));
  border-left: 4px solid var(--color-gold);
  border-radius: 8px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 215, 0, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateX(10px);
  box-shadow: -5px 5px 30px rgba(255, 215, 0, 0.2);
}

.stars {
  color: var(--color-gold);
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px 0;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.author {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-align: right;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 0, 0, 0.05));
  border-top: 2px solid rgba(255, 215, 0, 0.2);
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.feature-icon {
  font-size: 50px;
  margin-bottom: 20px;
  filter: grayscale(1) brightness(2);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  filter: grayscale(0) brightness(1);
  transform: scale(1.2);
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin: 15px 0 10px;
}

.feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 120px 0;
  background: 
    linear-gradient(180deg, var(--color-black) 0%, var(--color-dark-grey) 50%, var(--color-black) 100%);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 215, 0, 0.02) 2px, rgba(255, 215, 0, 0.02) 4px);
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 2px solid var(--color-grey);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--color-gold);
  transform: scale(1.05);
  box-shadow: 
    0 20px 40px rgba(255, 215, 0, 0.4),
    0 0 60px rgba(255, 215, 0, 0.2);
  z-index: 10;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 0, 0, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08), transparent),
    var(--color-black);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-intro {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 20px auto 0;
}

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

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info-block {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 0, 0, 0.03));
  border: 1.5px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-info-block p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.direction-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  padding: 8px 16px;
  border: 1.5px solid var(--color-gold);
  border-radius: 8px;
}

.direction-link:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.booking-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 0, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--color-gold), 
    var(--color-red), 
    var(--color-gold));
  background-size: 400% 400%;
  border-radius: 16px;
  z-index: -1;
  animation: borderGlow 3s ease infinite;
  opacity: 0.5;
}

.booking-section h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 30px;
  font-weight: 700;
}

.booking-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;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--color-white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.form-group select option {
  background: #1a1a1a;
  color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

.booking-form button {
  width: 100%;
  background: var(--color-gold);
  color: var(--color-black);
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  margin-top: 10px;
}

.booking-form button:hover {
  background: #FFA500;
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.booking-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 15px;
  font-style: italic;
}

.contact-info h2 {
  margin-bottom: 40px;
}

.info-block {
  margin-bottom: 40px;
}

.info-block h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.info-block p,
.info-block a {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-block a:hover {
  color: var(--color-gold);
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 0, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--color-gold), 
    var(--color-red), 
    var(--color-gold));
  background-size: 400% 400%;
  border-radius: 8px;
  z-index: -1;
  animation: borderGlow 3s ease infinite;
  opacity: 0.5;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 30px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--color-white);
  padding: 14px 18px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form button {
  width: 100%;
  background: var(--color-gold);
  color: var(--color-black);
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.contact-form button:hover {
  background: #FFA500;
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: 
    linear-gradient(135deg, rgba(255, 215, 0, 0.03), transparent),
    var(--color-black);
  border-top: 2px solid var(--color-gold);
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo strong {
  color: var(--color-red);
  font-family: var(--font-heading);
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(255, 0, 0, 0.8),
      0 0 40px rgba(255, 0, 0, 0.5),
      2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  50% {
    text-shadow: 
      0 0 30px rgba(255, 0, 0, 1),
      0 0 60px rgba(255, 0, 0, 0.7),
      2px 2px 4px rgba(0, 0, 0, 0.8);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(5deg);
  }
  50% {
    transform: translateY(-60px) rotate(0deg);
  }
  75% {
    transform: translateY(-30px) rotate(-5deg);
  }
}

@keyframes particleRise {
  0% {
    bottom: -10px;
    opacity: 0;
    transform: translateX(0) scale(0);
  }
  10% {
    opacity: 1;
    transform: translateX(20px) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateX(-20px) scale(1);
  }
  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(0) scale(0);
  }
}

@keyframes morphShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }
  25% {
    transform: translate(50px, 30px) scale(1.1);
    border-radius: 40%;
  }
  50% {
    transform: translate(100px, -20px) scale(0.9);
    border-radius: 60%;
  }
  75% {
    transform: translate(30px, 40px) scale(1.05);
    border-radius: 45%;
  }
}

@keyframes floatTool {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-40px) rotate(10deg);
  }
  66% {
    transform: translateY(-20px) rotate(-10deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 
      0 0 30px rgba(255, 215, 0, 0.5),
      0 0 60px rgba(255, 215, 0, 0.3);
    transform: scale(1);
  }
  50% {
    text-shadow: 
      0 0 40px rgba(255, 215, 0, 0.8),
      0 0 80px rgba(255, 215, 0, 0.5),
      0 0 120px rgba(255, 215, 0, 0.3);
    transform: scale(1.02);
  }
}

@keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}



/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .header {
    width: calc(100% - 40px);
    top: 15px;
  }
  
  .nav {
    display: none;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 400px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    z-index: 999;
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav a {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 15px;
  }
  
  .nav a:last-child {
    border-bottom: none;
  }
  
  .nav a::after {
    display: none;
  }
  
  .btn-nav {
    position: relative;
    right: 0;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .brand-name {
    display: none;
  }
  
  .logo {
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
  }
  
  .logo img {
    height: 70px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .map-container {
    height: 350px;
  }
  
  .booking-section {
    padding: 30px 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    margin-top: 300px;
  }
  
  .hero-title {
    letter-spacing: 8px;
  }
  
  .logo-bg-image img {
    width: 400px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .brand-item {
    font-size: 18px;
    padding: 15px 10px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .services,
  .gallery,
  .contact,
  .why-us,
  .testimonials {
    padding: 80px 0;
  }
  
  .features,
  .stats,
  .brands {
    padding: 60px 0;
  }
  
  .logo-bg-image img {
    width: 300px;
  }
  
  .hero-tag {
    font-size: 32px;
    letter-spacing: 4px;
  }
}
