/* ===== ANKARA KEDİ ORGANİZASYON - GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Raleway:wght@300;400;500;600;700&family=Amiri:wght@400;700&display=swap');

:root {
  --burgundy: #6B1527;
  --burgundy-dark: #4A0E1B;
  --burgundy-light: #8B2040;
  --gold: #C9A84C;
  --gold-light: #E8D08F;
  --gold-dark: #A68A3E;
  --navy: #1A1F3A;
  --navy-light: #2A3055;
  --cream: #FAF6F0;
  --cream-dark: #EDE6D8;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-medium: #555;
  --shadow-soft: 0 4px 30px rgba(107,21,39,0.08);
  --shadow-medium: 0 8px 40px rgba(107,21,39,0.12);
  --shadow-strong: 0 16px 60px rgba(107,21,39,0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 30px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  animation: pageLoad 0.8s ease both;
}

@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== DECORATIVE ===== */
.ottoman-pattern {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 50% 20%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 50% 80%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.6rem 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(26,31,58,0.97);
  backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.navbar.solid { background: rgba(26,31,58,0.97); padding: 0.6rem 0; }

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

/* Nav Left - Logo */
.nav-left {
  flex-shrink: 0;
}

/* Nav Right - topstrip + links stacked */
.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Top strip */
.nav-topstrip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 0.35rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  justify-content: space-between;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

.nav-topstrip-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-topstrip-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.nav-topstrip-social a:hover {
  color: var(--gold);
}

.nav-topstrip-cta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-topstrip-cta:hover {
  color: var(--gold-light);
}

.navbar.scrolled .nav-topstrip {
  /* display: none; */
}

.navbar.solid .nav-topstrip {
  /* display: none; */
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 106px; height: 93px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Amiri', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--burgundy-dark);
  border: 2px solid var(--gold-light);
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); line-height: 1.1;
  height: 53px;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center;
  gap: 1.5rem; list-style: none;
}
.nav-links a {
  color: var(--white);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px); left: -1rem;
  background: rgba(26,31,58,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  min-width: 240px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7) !important;
  transition: all 0.2s;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
  color: var(--gold) !important;
  background: rgba(201,168,76,0.08);
  padding-left: 1.5rem;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--burgundy-dark) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px;
}
.hamburger span {
  width: 28px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 10rem 2rem 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy-dark) 50%, var(--navy-light) 100%);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero .breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a {
  color: var(--gold); font-size: 0.82rem; font-weight: 500;
}
.page-hero .breadcrumb span {
  color: rgba(255,255,255,0.4); font-size: 0.82rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; font-weight: 900;
  color: var(--white); line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px; margin: 0 auto;
  line-height: 1.7;
}

/* ===== SECTION COMMON ===== */
.section { position: relative; padding: 6rem 2rem; }
.section-dark { background: var(--navy); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.container { max-width: 1280px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before, .section-tag::after {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.section-dark .section-tag { color: var(--gold); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900;
  color: var(--navy); line-height: 1.15;
}
.section-title em { color: var(--burgundy); font-style: italic; }
.section-dark .section-title { color: var(--white); }
.section-dark .section-title em { color: var(--gold); }

.section-subtitle {
  font-size: 1rem; color: var(--text-medium);
  max-width: 600px; margin: 1rem auto 0;
  line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.55); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--gold); color: var(--burgundy-dark);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s; border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn-burgundy {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--burgundy); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  transition: all 0.3s; border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif;
}
.btn-burgundy:hover {
  background: var(--burgundy-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(107,21,39,0.3);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: var(--white);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: #25D366; color: var(--white);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  transition: all 0.3s;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  position: relative; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
  border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.service-card-image {
  position: relative; height: 240px; overflow: hidden;
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.service-card:hover .service-card-image img { transform: scale(1.08); }

.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,31,58,0.7) 0%, transparent 60%);
}

.service-card-number {
  position: absolute; top: 1rem; right: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem; font-weight: 700;
  color: var(--gold);
  background: rgba(26,31,58,0.6);
  backdrop-filter: blur(10px);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.2);
}

.service-card-body { padding: 1.5rem; }

.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.65rem;
  transition: color 0.3s;
}
.service-card:hover .service-card-title { color: var(--burgundy); }

.service-card-desc {
  font-size: 0.85rem; color: var(--text-medium);
  line-height: 1.65; margin-bottom: 1.15rem;
}

.service-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: gap 0.3s;
}
.service-card:hover .service-card-link { gap: 0.85rem; }

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,31,58,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white); font-size: 0.82rem; font-weight: 600;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s;
}
.feature-item:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.15);
}
.feature-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(201,168,76,0.15);
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.65rem;
}
.feature-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy);
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Slide background image */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg img {
  transform: scale(1);
}

.hero-slide-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,31,58,0.92) 0%, rgba(74,14,27,0.85) 50%, rgba(42,48,85,0.90) 100%);
}

.hero-slide-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes heroGlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.15) translate(30px, -20px); }
}

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

/* Slide inner layout */
.hero-slide-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  height: 100vh;
}

/* Text animations per slide */
.hero-slide .hero-slide-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}

.hero-slide.active .hero-slide-text {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide .hero-slide-visual {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.hero-slide.active .hero-slide-visual {
  opacity: 1;
  transform: translateY(0);
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.hero-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

/* Hero headings */
.hero-slide h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-slide h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Image grid in slide */
.hero-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.hero-img-tall {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.hero-img-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 2rem;
}

.hero-img-square {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

.hero-img-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider controls */
.hero-slider-controls {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.hero-slider-arrow:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}

.hero-slider-arrow:hover svg {
  stroke: var(--gold);
}

.hero-slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hero-slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 32px;
  border-radius: 6px;
}

/* Stats bar */
.hero-stats-bar {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 0.8rem 2.5rem;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.1);
}

/* Hero slider responsive */
@media (max-width: 1024px) {
  .hero-slide-visual { display: none; }
  .hero-slide-inner { grid-template-columns: 1fr; }
  .hero-slide h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .hero-slider { min-height: auto; }
  .hero-slider-track { height: auto; min-height: 100vh; }
  .hero-slide-inner {
    padding: 7rem 1.5rem 10rem;
    height: auto;
    min-height: 100vh;
  }
  .hero-slide h1 { font-size: 2.2rem; }
  .hero-desc { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-slider-controls { bottom: 8rem; }
  .hero-stats-bar {
    gap: 1rem;
    padding: 0.7rem 1.5rem;
  }
  .hero-stat-num { font-size: 1.1rem; }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 1s ease 1.2s both;
}

.scroll-indicator span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.5; height: 25px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.4s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 1.25rem; }
.testimonial-stars span { color: var(--gold); font-size: 0.95rem; }
.testimonial-text {
  font-size: 0.92rem; color: rgba(255,255,255,0.75);
  line-height: 1.75; margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; color: var(--gold); font-size: 1rem;
  border: 1.5px solid rgba(201,168,76,0.25);
}
.testimonial-name { font-weight: 600; color: var(--white); font-size: 0.88rem; }
.testimonial-role { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-info { color: var(--white); }
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem;
}
.contact-info h2 em { color: var(--gold); font-style: italic; }
.contact-info > p {
  color: rgba(255,255,255,0.6); line-height: 1.7;
  margin-bottom: 2.5rem; font-size: 0.95rem;
}

.contact-detail {
  display: flex; align-items: center;
  gap: 1rem; margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(201,168,76,0.15);
  flex-shrink: 0;
}
.contact-detail-text h4 {
  font-weight: 600; font-size: 0.88rem;
  color: var(--white); margin-bottom: 2px;
}
.contact-detail-text span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.contact-detail-text a { color: var(--gold); font-size: 0.82rem; }

.contact-form-wrapper {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem; backdrop-filter: blur(10px);
}
.contact-form-wrapper h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem;
}
.contact-form-wrapper > p {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.15rem;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.3s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(201,168,76,0.4); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-form-submit {
  width: 100%;
  background: var(--gold); color: var(--burgundy-dark);
  padding: 0.9rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.92rem;
  border: none; cursor: pointer;
  transition: all 0.3s;
  font-family: 'Raleway', sans-serif;
}
.btn-form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

/* ===== CTA BAND ===== */
.cta-band {
  position: relative; padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
  text-align: center; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900;
  color: var(--white); margin-bottom: 1rem;
}
.cta-band h2 em { color: var(--gold); font-style: italic; }
.cta-band p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem; margin-bottom: 2rem;
  max-width: 550px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.cta-band .buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #0f1225; padding: 4rem 2rem 2rem; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  color: rgba(255,255,255,0.45); font-size: 0.85rem;
  line-height: 1.7; margin-top: 1rem; max-width: 300px;
}
.footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem; transition: color 0.3s;
}
.footer ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--gold); }

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.2);
  color: var(--gold);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: wpBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }
@keyframes wpBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.23,1,0.32,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail { padding: 5rem 2rem; }
.service-detail-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem; align-items: start;
}
.service-detail-images { display: flex; flex-direction: column; gap: 1rem; }
.service-detail-main-img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/10;
}
.service-detail-main-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-detail-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.service-detail-thumb {
  border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.3s;
}
.service-detail-thumb:hover, .service-detail-thumb.active { border-color: var(--gold); }
.service-detail-thumb img { width: 100%; height: 100%; object-fit: cover; }

.service-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--navy); margin-bottom: 1rem;
}
.service-detail-content h2 em { color: var(--burgundy); font-style: italic; }
.service-detail-content p {
  font-size: 0.95rem; color: var(--text-medium);
  line-height: 1.8; margin-bottom: 1.5rem;
}
.service-detail-content .includes {
  margin: 2rem 0; padding: 2rem;
  background: var(--cream); border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
}
.service-detail-content .includes h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1rem;
}
.service-detail-content .includes li {
  padding: 0.4rem 0; font-size: 0.88rem;
  color: var(--text-medium); list-style: none;
  padding-left: 1.5rem; position: relative;
}
.service-detail-content .includes li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}

/* ===== VIDEO GALLERY ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; aspect-ratio: 16/9;
  background: var(--navy); cursor: pointer;
}
.video-item img { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.video-item:hover .video-play-btn {
  background: var(--gold);
  transform: translate(-50%,-50%) scale(1.1);
}
.video-play-btn::after {
  content: ''; display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--burgundy-dark);
  margin-left: 3px;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}
.blog-card-image {
  position: relative; height: 220px; overflow: hidden;
}
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-image .blog-card-cat {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(26,31,58,0.75);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.2);
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.72rem; color: var(--text-medium);
  margin-bottom: 0.85rem;
}
.blog-card-meta span { display: flex; align-items: center; gap: 0.3rem; }
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); line-height: 1.35;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card:hover .blog-card-title { color: var(--burgundy); }
.blog-card-excerpt {
  font-size: 0.85rem; color: var(--text-medium);
  line-height: 1.65; margin-bottom: 1.25rem;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: gap 0.3s;
}
.blog-card:hover .blog-card-link { gap: 0.85rem; }

/* Blog Detail */
.blog-detail-wrapper {
  max-width: 820px; margin: 0 auto;
}
.blog-detail-meta {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.blog-detail-meta span {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: var(--text-medium);
}
.blog-detail-meta .blog-detail-cat {
  background: var(--cream); color: var(--burgundy);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px;
  border: 1px solid rgba(107,21,39,0.12);
}
.blog-detail-hero-img {
  width: 100%; border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 3rem;
  aspect-ratio: 16/8;
}
.blog-detail-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.blog-detail-content {
  font-size: 1.02rem; color: var(--text-dark);
  line-height: 1.9;
}
.blog-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--navy); margin: 2.5rem 0 1rem;
}
.blog-detail-content h2 em { color: var(--burgundy); font-style: italic; }
.blog-detail-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy); margin: 2rem 0 0.75rem;
}
.blog-detail-content p { margin-bottom: 1.25rem; }
.blog-detail-content ul, .blog-detail-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.blog-detail-content li {
  margin-bottom: 0.5rem; color: var(--text-medium);
  line-height: 1.75;
}
.blog-detail-content blockquote {
  margin: 2rem 0; padding: 1.5rem 2rem;
  background: var(--cream); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic; color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; line-height: 1.7;
}
.blog-detail-content img {
  border-radius: var(--radius-md); margin: 2rem 0;
}
.blog-detail-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.blog-detail-tags a {
  background: var(--cream); color: var(--text-medium);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.blog-detail-tags a:hover {
  background: var(--burgundy); color: var(--white);
  border-color: var(--burgundy);
}
.blog-detail-share {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.5rem;
}
.blog-detail-share span {
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
}
.blog-detail-share a {
  width: 40px; height: 40px;
  background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-medium); font-size: 0.9rem;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.06);
}
.blog-detail-share a:hover {
  background: var(--burgundy); color: var(--white);
  border-color: var(--burgundy);
}

/* Blog sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem; align-items: start;
}
.blog-sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 2rem;
}
.blog-sidebar-widget h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}
.blog-sidebar-post {
  display: flex; gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.blog-sidebar-post:last-child { border-bottom: none; }
.blog-sidebar-post:hover { padding-left: 0.3rem; }
.blog-sidebar-post-img {
  width: 70px; height: 55px; flex-shrink: 0;
  border-radius: var(--radius-sm); overflow: hidden;
}
.blog-sidebar-post-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.blog-sidebar-post-title {
  font-size: 0.82rem; font-weight: 600;
  color: var(--navy); line-height: 1.35;
  transition: color 0.3s;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-sidebar-post:hover .blog-sidebar-post-title { color: var(--burgundy); }
.blog-sidebar-post-date {
  font-size: 0.68rem; color: var(--text-medium); margin-top: 0.25rem;
}
.blog-sidebar-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.blog-sidebar-tags a {
  background: var(--cream); color: var(--text-medium);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.35rem 0.85rem; border-radius: 50px;
  transition: all 0.3s;
}
.blog-sidebar-tags a:hover {
  background: var(--burgundy); color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-topstrip { display: none; }
  .nav-right { display: contents; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex !important; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(26,31,58,0.98);
    padding: 2rem; gap: 1.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .page-hero { padding: 8rem 1.5rem 3rem; }
  .page-hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .video-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .cta-band h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
}
