/* ================================================================
   SAKARYA VIP TRAVEL — MAIN STYLESHEET
   Dark/Orange Premium Corporate Theme
================================================================ */

/* ----------------------------------------------------------------
   1. CSS VARIABLES
---------------------------------------------------------------- */
:root {
  --bg:           #090909;
  --bg-card:      #0f0f0f;
  --bg-elevated:  #141414;
  --bg-section:   #0b0b0b;

  --primary:      #F8B54A;
  --primary-dark: #d4901a;
  --primary-glow: rgba(248, 181, 74, 0.18);
  --primary-rgb:  248, 181, 74;

  --text:         #f0f0f0;
  --text-muted:   #888;
  --text-soft:    #bbb;

  --border:       rgba(248, 181, 74, 0.14);
  --border-light: rgba(255, 255, 255, 0.06);

  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow:         0 8px 40px rgba(0,0,0,0.55);
  --shadow-primary: 0 8px 32px rgba(248, 181, 74, 0.22);

  --transition:      0.3s ease;
  --transition-fast: 0.15s ease;

  --header-h:     82px;

  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', var(--font);

  --container:     1250px;
  --container-pad: clamp(16px, 5vw, 40px);
}

/* ----------------------------------------------------------------
   2. RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--primary); }

ul { list-style: none; }

img { max-width: 100%; height: auto; display: block; }

button { font-family: var(--font); cursor: pointer; border: none; background: none; }

input, textarea, select {
  font-family: var(--font);
  font-size: 1rem;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

::selection { background: var(--primary); color: #000; }

/* ----------------------------------------------------------------
   3. TYPOGRAPHY
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-soft); }

.text-primary { color: var(--primary); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }

/* ----------------------------------------------------------------
   4. LAYOUT — CONTAINER
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }

/* ----------------------------------------------------------------
   5. SECTION HEADER (used across all sections)
---------------------------------------------------------------- */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-head .badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-head h2 { margin-bottom: 16px; }

.section-head p {
  font-size: 1.05rem;
  color: var(--text-soft);
}

/* ----------------------------------------------------------------
   6. BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
}
.btn-primary:hover {
  background: #ffc25a;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1.5px solid var(--border-light);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  color: var(--primary);
  border-color: var(--border);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn i { font-size: 0.9em; }

/* ----------------------------------------------------------------
   7. HEADER
---------------------------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: rgba(9, 9, 9, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.03em;
}
.logo-sub {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav */
.nav { display: flex; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}

.nav-list > li > a:hover,
.nav-list > li.active > a {
  color: var(--primary);
  background: var(--primary-glow);
}

.nav-list > li > a i {
  font-size: 0.7em;
  transition: transform var(--transition-fast);
}

.nav-list > li:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow);
}

.nav-list > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--text-soft);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.dropdown li a:hover {
  background: var(--primary-glow);
  color: var(--primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  width: 100%;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   8. HERO — INDEX
---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--primary-rgb), 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 60%, rgba(var(--primary-rgb), 0.05) 0%, transparent 55%);
  z-index: 0;
}

/* Hero Image — Silüet */
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-image img {
  width: 97%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  opacity: 1;
  filter: grayscale(100%) contrast(1.1) brightness(0.4);
  mask-image: radial-gradient(
    ellipse 60% 60% at 65% 50%,
    black 0%,
    black 20%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 60% 60% at 65% 50%,
    black 0%,
    black 20%,
    transparent 70%
  );
}

/* Mobilde gizle */
@media (max-width: 768px) {
  .hero-image { display: none; }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248, 181, 74, 0.03) 1px, transparent 3px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 3px);
  background-size: 50px 50px;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; padding-top: var(--header-h); }

.hero-content {
  max-width: 750px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge i { font-size: 0.85em; }

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 26px;
  color: var(--text);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, #ffcf6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-soft);
  max-width: 560px;
  margin-top: 50px;
  margin-bottom: 50px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.hero-phone:hover { border-color: var(--border); color: var(--text); }
.hero-phone-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.hero-phone-label { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.1em; }
.hero-phone-number { font-weight: 700; font-size: 1rem; color: var(--text); }

/* Hero Stats Bar */
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroScroll 2s ease-in-out infinite;
}

.hero-scroll i { font-size: 1.1rem; color: var(--primary); }

@keyframes heroScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ----------------------------------------------------------------
   9. PAGE HERO (inner pages)
---------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 70px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(var(--primary-rgb), 0.07) 0%, transparent 70%);
  z-index: 0;
}

.page-hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 560px; margin: 0 auto; color: var(--text-soft); font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 0.7em; }
.breadcrumb span { color: var(--primary); }

/* ----------------------------------------------------------------
   10. ABOUT PREVIEW SECTION
---------------------------------------------------------------- */
.about-preview {
  background: var(--bg-section);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.4;
}

.about-cert {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: #000;
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-primary);
}
.about-cert-num { font-size: 2rem; font-weight: 900; line-height: 1; }
.about-cert-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px; }

.about-content .badge-small {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.about-content h2 { margin-bottom: 18px; }
.about-content > p { margin-bottom: 32px; }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.about-pillar:hover { border-color: var(--border); }

.about-pillar-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.about-pillar h4 { font-size: 0.875rem; margin-bottom: 2px; color: var(--text); }
.about-pillar p  { font-size: 0.78rem; color: var(--text-muted); }

/* ----------------------------------------------------------------
   11. STATS SECTION
---------------------------------------------------------------- */
.stats-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-light);
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span { color: var(--primary); }

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ----------------------------------------------------------------
   12. SERVICES SECTION / PAGE
---------------------------------------------------------------- */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--primary-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition-fast);
}
.service-link:hover { gap: 10px; color: var(--primary); }

/* Services detail page */
.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.service-detail-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-detail-icon-area {
  padding: 36px 32px 24px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-light);
}

.service-detail-body { padding: 28px 32px 32px; }

.service-features {
  list-style: none;
  margin-top: 16px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--primary); font-size: 0.75rem; flex-shrink: 0; }

/* ----------------------------------------------------------------
   13. WHY CHOOSE US
---------------------------------------------------------------- */
.why-section {
  background: var(--bg-section);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list { display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.why-item:hover {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.why-item-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-item-text h4 { font-size: 1rem; margin-bottom: 6px; }
.why-item-text p  { font-size: 0.875rem; color: var(--text-muted); }

.why-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card-big {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.why-card-big i   { font-size: 3rem; color: var(--primary); margin-bottom: 16px; }
.why-card-big h3  { margin-bottom: 10px; }
.why-card-big p   { font-size: 0.9rem; color: var(--text-muted); }

/* ----------------------------------------------------------------
   14. GALLERY SECTION / PAGE
---------------------------------------------------------------- */
.gallery-section { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
  color: var(--primary);
  font-size: 2rem;
  opacity: 0.3;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-placeholder { opacity: 0.5; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img               { transform: scale(1.05); }

.gallery-overlay i {
  color: var(--primary);
  font-size: 1.8rem;
  background: rgba(0,0,0,0.5);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.lightbox-close:hover { color: var(--primary); }

/* ----------------------------------------------------------------
   15. FORMS — RESERVATION & CONTACT
---------------------------------------------------------------- */
.form-section { background: var(--bg-section); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.form-info h2 { margin-bottom: 18px; }
.form-info > p { margin-bottom: 32px; }

.info-cards { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.info-card:hover { border-color: var(--border); }

.info-card-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.info-card h4 { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.info-card p  { font-size: 0.95rem; color: var(--text); font-weight: 600; }
.info-card a  { color: var(--text); font-weight: 600; font-size: 0.95rem; }
.info-card a:hover { color: var(--primary); }

/* Form Styles */
.vip-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-title {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group label .req { color: var(--primary); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-control::placeholder { color: var(--text-muted); }

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.form-control.error { border-color: #e74c3c; }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

select.form-control option { background: var(--bg-elevated); color: var(--text); }

.form-submit { margin-top: 10px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-note i { color: var(--primary); }

/* Form feedback */
.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.form-feedback.success { background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3); color: #2ecc71; }
.form-feedback.error   { background: rgba(231,76,60,0.1);  border: 1px solid rgba(231,76,60,0.3);  color: #e74c3c;  }

/* ----------------------------------------------------------------
   16. FAQ / SSS
---------------------------------------------------------------- */
.faq-section { background: var(--bg); }

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-elevated);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-heading);
}

.faq-question:hover { background: #1a1a1a; }
.faq-item.open .faq-question { background: var(--primary-glow); color: var(--primary); }

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.faq-item.open .faq-answer { max-height: 500px; }

/* ----------------------------------------------------------------
   17. CTA SECTION
---------------------------------------------------------------- */
.cta-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(var(--primary-rgb), 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section .badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cta-section h2 { margin-bottom: 18px; }
.cta-section p {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ----------------------------------------------------------------
   18. ABOUT PAGE — FULL
---------------------------------------------------------------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.87rem; color: var(--text-muted); }

/* ----------------------------------------------------------------
   19. CONTACT PAGE — MAP
---------------------------------------------------------------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin-top: 60px;
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
  filter: invert(90%) hue-rotate(180deg) brightness(0.8);
}

/* ----------------------------------------------------------------
   20. FOOTER
---------------------------------------------------------------- */
.footer {
  background: #050505;
  border-top: 1px solid var(--border-light);
}

.footer-top { padding: 80px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-about .logo { margin-bottom: 16px; display: inline-flex; }
.footer-about p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a::before {
  content: '';
  width: 5px;
  height: 1px;
  background: var(--primary);
  display: block;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-col ul li a:hover::before { opacity: 1; }

/* Footer contact list */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer-contact-list li i {
  color: var(--primary);
  margin-top: 3px;
  width: 14px;
  flex-shrink: 0;
}
.footer-contact-list li a { color: var(--text-muted); }
.footer-contact-list li a:hover { color: var(--primary); }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--primary); }

/* ----------------------------------------------------------------
   21. FLOATING BUTTONS
---------------------------------------------------------------- */
/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 800;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: #fff;
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  border: none;
}
.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover { background: #ffc25a; transform: translateY(-2px); }

/* ----------------------------------------------------------------
   22. DIVIDER
---------------------------------------------------------------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 0;
}

/* ----------------------------------------------------------------
   23. LOADING OVERLAY
---------------------------------------------------------------- */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}
.btn.loading .btn-text { display: none; }
.btn.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ----------------------------------------------------------------
   24. SCROLL REVEAL ANIMATION CLASSES
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ----------------------------------------------------------------
   25. RESPONSIVE — TABLET (≤1024px)
---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid, .why-grid, .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
}

/* ----------------------------------------------------------------
   26. RESPONSIVE — MOBILE (≤768px)
---------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .section    { padding: 70px 0; }
  .section-sm { padding: 50px 0; }

  /* Header mobile */
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all var(--transition);
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .nav-list > li { width: 100%; }
  .nav-list > li > a {
    padding: 14px 16px;
    font-size: 1rem;
    width: 100%;
    justify-content: space-between;
    border-radius: var(--radius);
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bg-card);
    border: none;
    border-left: 2px solid var(--border);
    border-radius: 0;
    margin-left: 16px;
    padding: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-list > li.dropdown-open .dropdown { max-height: 200px; }
  .hamburger { display: flex; }
  .header-actions .btn-primary { display: none; }

  /* Hero */
  .hero-content  { padding: 60px 0 40px; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-phone    { width: 100%; }
  .hero-stats    { gap: 24px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-scroll   { display: none; }

  /* Grids */
  .services-grid        { grid-template-columns: 1fr; }
  .stats-grid           { grid-template-columns: 1fr 1fr; }
  .gallery-grid         { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.wide    { grid-column: span 2; }
  .gallery-item.tall    { grid-row: span 1; }
  .about-pillars        { grid-template-columns: 1fr; }
  .form-grid            { grid-template-columns: 1fr; }
  .about-values-grid    { grid-template-columns: 1fr; }
  .about-cert           { bottom: -10px; right: -10px; }
  .vip-form             { padding: 24px; }
  .form-row             { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr; gap: 28px; }
  .footer-top           { padding: 50px 0 30px; }
  .footer-bottom .container { justify-content: center; text-align: center; }

  /* Misc */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ----------------------------------------------------------------
   27. RESPONSIVE — SMALL MOBILE (≤480px)
---------------------------------------------------------------- */
@media (max-width: 480px) {
  .gallery-grid     { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
  .stats-grid       { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { display: none; }
}

/* ----------------------------------------------------------------
   28. SCROLLBAR
---------------------------------------------------------------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-glow); }

.hero-scroll {
  cursor: pointer;
  transition: 0.3s;
}

.hero-scroll:hover {
  transform: translateY(5px);
  color: var(--primary);
}
