/* ==========================================================================
   GARDEN TADİLAT - ULTRA-PREMIUM LIGHT MODE DESIGN SYSTEM
   Theme: Luxury Crisp Light / Warm Amber & Metallic Gold Accent
   Target Standard: Apple, Stripe, Linear, Vercel, Framer Light Mode
   ========================================================================== */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- DESIGN TOKENS & CSS VARIABLES (LIGHT THEME) --- */
:root {
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Color Palette (Light Mode) */
  --bg-dark: #F8FAFC;
  --bg-darker: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.75);
  
  --border-glass: rgba(15, 23, 42, 0.09);
  --border-glass-hover: rgba(217, 119, 6, 0.45);

  --accent-gold: #D97706;
  --accent-gold-light: #F59E0B;
  --accent-gold-glow: rgba(217, 119, 6, 0.2);
  --accent-emerald: #10B981;
  --accent-blue: #2563EB;

  --text-main: #0F172A;
  --text-muted: #475569;
  --text-dim: #94A3B8;

  /* Gradients (Light Palette) */
  --grad-primary: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #B45309 100%);
  --grad-gold-text: linear-gradient(135deg, #B45309 0%, #D97706 45%, #F59E0B 100%);
  --grad-card: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  --grad-dark-overlay: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.88) 100%);
  --grad-hero: radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.12) 0%, rgba(248, 250, 252, 0) 70%);

  /* Shadows (Light Theme Clean Elevation) */
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 8px 30px rgba(217, 119, 6, 0.28);

  /* Layout & Geometry */
  --max-width: 1280px;
  --header-height: 86px;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  /* Cubic Bezier Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out-expo);
  --transition-normal: 0.4s var(--ease-out-expo);
  --transition-slow: 0.7s var(--ease-out-expo);
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(37, 99, 235, 0.04) 0%, transparent 45%);
  background-attachment: fixed;
}

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

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* --- TYPOGRAPHY & GRADIENTS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.gradient-text {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.08);
}

.section-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 720px;
  margin-bottom: 50px;
  line-height: 1.75;
}

/* --- CONTAINERS & SECTIONS --- */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-sm {
  padding: 70px 0;
}

/* --- BUTTON SYSTEM WITH SHIMMER SWEEP --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--grad-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background: #FFFFFF;
  transform: translateY(-4px);
  color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

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

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.btn-phone {
  background: #2563EB;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.28);
}

.btn-phone:hover {
  background: #1D4ED8;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.45);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* --- HEADER & NAVIGATION (LIGHT MODE) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(217, 119, 6, 0.2);
  height: 76px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-main);
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: scale(1.06);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--text-main);
  font-weight: 900;
}

.logo-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 700;
}

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

.nav-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 10px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* MOBILE DRAWER NAV (LIGHT MODE) */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: #FFFFFF;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  padding: 100px 34px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
  border-left: 1px solid var(--border-glass);
  box-shadow: -15px 0 40px rgba(15, 23, 42, 0.15);
}

.mobile-nav.active { right: 0; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.mobile-nav-links a.active, .mobile-nav-links a:hover {
  color: var(--accent-gold);
  padding-left: 12px;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb span.separator {
  color: var(--text-dim);
}

.breadcrumb span.current {
  color: var(--accent-gold);
  font-weight: 700;
}

/* --- MULTI-LAYER HERO SECTION (LIGHT MODE) --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-text-block {
  max-width: 760px;
}

.hero-title {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.8vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--text-main);
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats-strip {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--border-glass);
}

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

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-glass);
}

.hero-card-stack img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.hero-card-stack:hover img {
  transform: scale(1.06);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: floatBadge 4s infinite ease-in-out;
}

.badge-top { top: 40px; left: -30px; }
.badge-bottom { bottom: 40px; right: -30px; animation-delay: -2s; }

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

.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.2rem;
}

.badge-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-main);
}

.badge-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- GLASS CARDS & FEAT GRID (LIGHT MODE) --- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background var(--transition-normal);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md), 0 15px 35px rgba(217, 119, 6, 0.08);
}

.glass-card:hover::before {
  background: var(--grad-primary);
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-image {
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 26px;
  position: relative;
}

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

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.service-card-title {
  font-size: 1.4rem;
  margin-bottom: 14px;
  transition: color var(--transition-fast);
}

.service-card:hover .service-card-title {
  color: var(--accent-gold);
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 28px;
  flex-grow: 1;
  line-height: 1.65;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.service-card-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link svg {
  transform: translateX(6px);
}

/* --- STATS SECTION --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-card {
  padding: 44px 24px;
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--accent-gold);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-title {
  font-size: 1.15rem;
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --- PROCESS TIMELINE --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
  position: relative;
}

.process-card {
  position: relative;
  z-index: 1;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(217, 119, 6, 0.18);
  line-height: 1;
  margin-bottom: -24px;
  position: relative;
  z-index: 0;
}

.process-title {
  font-size: 1.3rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.process-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  position: relative;
  z-index: 1;
}

/* --- PINTEREST-STYLE MASONRY GALLERY & LIGHTBOX --- */
.gallery-grid {
  column-count: 3;
  column-gap: 28px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border-glass);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-dark-overlay);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

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

.gallery-title {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.gallery-tag {
  font-size: 0.82rem;
  color: var(--accent-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* LIGHTBOX POPUP */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 92%;
  max-height: 88vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  margin-top: 18px;
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 1.2rem;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
  transform: scale(1.08);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 34px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 34px; top: 50%; transform: translateY(-50%); }

/* --- ACCORDION (FAQ LIGHT MODE) --- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}

.accordion-item {
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item.active {
  border-color: var(--accent-gold);
}

.accordion-header {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
  user-select: none;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.accordion-content {
  padding: 0 32px 28px 32px;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: -6px;
  padding-top: 20px;
}

/* --- CONTACT CARDS & MAP --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 70px;
}

.contact-card {
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.map-placeholder-box {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  position: relative;
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
}

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

/* --- CTA BANNER (LIGHT MODE) --- */
.cta-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--radius-lg);
  padding: 70px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(217, 119, 6, 0.1);
}

.cta-banner h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-bottom: 18px;
}

.cta-banner p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 40px;
}

.cta-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* --- STICKY ACTIONS --- */
.sticky-actions {
  position: fixed;
  bottom: 34px;
  right: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 990;
}

.sticky-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
}

.sticky-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.sticky-btn:hover {
  transform: scale(1.12);
}

.sticky-whatsapp {
  background: #25D366;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
}

.sticky-phone {
  background: #2563EB;
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.45);
}

.sticky-btn-tooltip {
  position: absolute;
  right: 76px;
  background: #0F172A;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.sticky-btn:hover .sticky-btn-tooltip {
  opacity: 1;
}

/* --- FOOTER (LIGHT MODE) --- */
.footer {
  background: #F1F5F9;
  border-top: 1px solid var(--border-glass);
  padding: 90px 0 34px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 54px;
  margin-bottom: 70px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 24px 0;
  line-height: 1.75;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 26px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent-gold);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.98rem;
}

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

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.footer-contact-item svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 34px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 18px;
}

/* --- REVEAL ANIMATIONS (SCROLL 60FPS) --- */
.reveal, .reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal.active, .reveal-up.active, .reveal-scale.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-right {
  opacity: 0;
  transform: translateX(45px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* --- RESPONSIVE QUERIES --- */
@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text-block { margin: 0 auto; }
  .hero-cta-group, .hero-stats-strip { justify-content: center; }

  .hero-visual {
    max-width: 620px;
    margin: 0 auto;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { column-count: 2; }
}

@media (max-width: 768px) {
  .nav-menu, .header-actions .btn-primary { display: none; }
  .mobile-toggle { display: flex; }

  .section { padding: 70px 0; }

  .hero-stats-strip { gap: 24px; }
  .hero-stat-number { font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { column-count: 1; }

  .lightbox-prev, .lightbox-next { display: none; }
  .sticky-actions { bottom: 20px; right: 20px; }
  .floating-badge { display: none; }
}
