/* ============================================
   OTO PRIME GO — Premium Mobil Oto Yıkama
   Dark Theme | Navy-Gold Color Palette
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --bg-primary: #060a14;
  --bg-secondary: #0c1220;
  --bg-card: #111827;
  --bg-card-hover: #1a2332;
  --bg-surface: rgba(17, 24, 39, 0.7);
  
  --gold-primary: #c8a45e;
  --gold-light: #e8c97a;
  --gold-dark: #a3843c;
  --gold-gradient: linear-gradient(135deg, #c8a45e, #e8c97a, #c8a45e);
  --gold-gradient-hover: linear-gradient(135deg, #e8c97a, #f0d88e, #e8c97a);
  --gold-glow: 0 0 30px rgba(200, 164, 94, 0.3);
  --gold-glow-intense: 0 0 50px rgba(200, 164, 94, 0.5);
  
  --blue-deep: #0f1d32;
  --blue-mid: #1e3a5f;
  --blue-accent: #2563eb;
  --blue-glow: 0 0 40px rgba(37, 99, 235, 0.15);
  
  --text-primary: #f0f0f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --white: #ffffff;
  --black: #000000;
  --overlay-dark: rgba(6, 10, 20, 0.75);
  --overlay-darker: rgba(6, 10, 20, 0.88);
  
  /* Glassmorphism */
  --glass-bg: rgba(17, 24, 39, 0.55);
  --glass-border: rgba(200, 164, 94, 0.12);
  --glass-blur: blur(20px);
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  background: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ── Typography ── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(200, 164, 94, 0.08);
  border: 1px solid rgba(200, 164, 94, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-title .gold {
  color: var(--gold-primary);
  position: relative;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  box-shadow: var(--gold-glow);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: var(--gold-glow-intense);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(200, 164, 94, 0.35);
}

.btn-outline:hover {
  background: rgba(200, 164, 94, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1.2em;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* SVG Icons */
.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.icon-sm {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(6, 10, 20, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(200, 164, 94, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.navbar-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: transparent;
  transition: transform var(--transition-base);
}

.navbar-brand:hover img {
  border-color: var(--gold-primary);
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-primary);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.navbar-brand-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: auto;
}

.navbar-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--gold-light);
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

.navbar-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition-base);
  box-shadow: var(--gold-glow);
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar-call-btn .icon {
  width: 16px;
  height: 16px;
}

.navbar-call-btn:hover {
  box-shadow: var(--gold-glow-intense);
  transform: translateY(-1px);
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  margin-left: auto;
}

.navbar-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

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

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

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

/* ══════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.35) saturate(0.8);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 10, 20, 0.92) 0%,
    rgba(6, 10, 20, 0.7) 40%,
    rgba(6, 10, 20, 0.5) 70%,
    rgba(6, 10, 20, 0.75) 100%
  );
}

/* Ambient glow circles */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(200, 164, 94, 0.06);
  top: -100px;
  right: -100px;
  animation: float-glow 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.05);
  bottom: -50px;
  left: -100px;
  animation: float-glow 10s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(200, 164, 94, 0.1);
  border: 1px solid rgba(200, 164, 94, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero-title .line {
  display: block;
}

.hero-title .gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(200, 164, 94, 0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

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

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-scroll 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
}

/* ══════════════════════════════════════════════
   WHY US SECTION
   ══════════════════════════════════════════════ */
.why-us {
  padding: var(--section-padding);
  position: relative;
  background: linear-gradient(135deg, rgba(6, 10, 20, 0.92) 0%, rgba(12, 18, 32, 0.85) 50%, rgba(6, 10, 20, 0.94) 100%), url('premium-foto2.jpeg') center/cover no-repeat;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 164, 94, 0.15), transparent);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  padding: 36px 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 164, 94, 0.25);
  box-shadow: var(--gold-glow), var(--shadow-card-hover);
  background: rgba(17, 24, 39, 0.75);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(200, 164, 94, 0.12);
  margin-bottom: 16px;
  line-height: 1;
  transition: color var(--transition-base);
}

.why-card:hover .why-card-number {
  color: rgba(200, 164, 94, 0.25);
}

.why-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.why-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════ */
.services {
  padding: var(--section-padding);
  position: relative;
  background: linear-gradient(135deg, rgba(6, 10, 20, 0.93) 0%, rgba(12, 18, 32, 0.86) 50%, rgba(6, 10, 20, 0.93) 100%), url('detay-yikama.avif') center/cover no-repeat;
}

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

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200, 164, 94, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 164, 94, 0.3);
  box-shadow: var(--gold-glow), var(--shadow-card-hover);
}

.service-card:hover::after {
  opacity: 1;
}

.service-accent {
  width: 40px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin-bottom: 24px;
  transition: width var(--transition-base);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-accent {
  width: 60px;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(200, 164, 94, 0.1);
  border: 1px solid rgba(200, 164, 94, 0.2);
  border-radius: var(--radius-sm);
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.service-cta:hover {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  border-color: transparent;
  box-shadow: var(--gold-glow);
}

/* ══════════════════════════════════════════════
   GALLERY SECTION
   ══════════════════════════════════════════════ */
.gallery {
  padding: var(--section-padding);
  position: relative;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 10, 20, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay-text {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
}



/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(200, 164, 94, 0.2);
  border: 1px solid rgba(200, 164, 94, 0.3);
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 2001;
}

.lightbox-close:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(200, 164, 94, 0.15);
  border: 1px solid rgba(200, 164, 94, 0.2);
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.lightbox-nav:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ══════════════════════════════════════════════
   CONTACT / CTA SECTION
   ══════════════════════════════════════════════ */
.contact {
  padding: var(--section-padding);
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.contact-big-cta {
  background: linear-gradient(135deg, rgba(200, 164, 94, 0.08), rgba(200, 164, 94, 0.02));
  border: 1px solid rgba(200, 164, 94, 0.15);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-big-cta .section-title {
  margin-bottom: 12px;
}

.contact-big-cta .section-subtitle {
  margin-bottom: 28px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-detail-item:hover {
  border-color: rgba(200, 164, 94, 0.25);
  background: rgba(17, 24, 39, 0.7);
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
}

.contact-detail-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.contact-detail-value a {
  color: var(--gold-primary);
}

.contact-detail-value a:hover {
  color: var(--gold-light);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 100%;
  min-height: 480px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  filter: grayscale(0.6) brightness(0.7) contrast(1.1);
  transition: filter var(--transition-base);
}

.contact-map:hover iframe {
  filter: grayscale(0.3) brightness(0.8) contrast(1.05);
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  padding: 60px 0 0;
  border-top: 1px solid rgba(200, 164, 94, 0.08);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: transparent;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-primary);
  display: block;
  line-height: 1.2;
}

.footer-brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(200, 164, 94, 0.06);
  border: 1px solid rgba(200, 164, 94, 0.12);
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

/* Footer links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: '›';
  color: var(--gold-primary);
  font-weight: 700;
}

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

/* Footer contact */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-contact-item a {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 500;
}

.footer-contact-item a:hover {
  color: var(--gold-primary);
}

/* Footer schedule */
.footer-schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(200, 164, 94, 0.04);
  border: 1px solid rgba(200, 164, 94, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.schedule-time {
  font-weight: 700;
  color: var(--gold-primary);
}

.footer-wa-btn {
  width: 100%;
}

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(200, 164, 94, 0.08);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   FLOATING BUTTONS
   ══════════════════════════════════════════════ */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elevated);
  transition: all var(--transition-base);
  position: relative;
}

.floating-btn svg {
  width: 24px;
  height: 24px;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.floating-btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  background: #25D366;
  opacity: 0.3;
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

.floating-btn-call {
  background: var(--gold-gradient);
  color: var(--bg-primary);
}

.floating-btn-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  background: var(--gold-primary);
  opacity: 0.25;
  animation: pulse-ring 2.5s infinite;
  z-index: -1;
}



/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ══════════════════════════════════════════════ */
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

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

@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

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

/* ══════════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    justify-self: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 350px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  html {
    scroll-padding-top: 70px;
  }

  /* Navbar mobile */
  .navbar .container {
    gap: 12px;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(6, 10, 20, 0.97);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 60px 40px;
    transition: right var(--transition-smooth);
    border-left: 1px solid rgba(200, 164, 94, 0.1);
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-link {
    font-size: 1.1rem;
  }

  .navbar-call-btn {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-brand img {
    width: 44px;
    height: 44px;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }

  /* Hero mobile */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-scroll {
    display: none;
  }

  /* Why cards */
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 28px 24px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid .service-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    aspect-ratio: 1 !important;
  }

  /* Contact */
  .contact-big-cta {
    padding: 28px 20px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Floating round buttons on mobile */
  .floating-buttons {
    bottom: 20px;
    right: 16px;
    gap: 12px;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
  }

  .floating-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── Overlay for mobile menu ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── Focus styles ── */
:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}
