/* ═══════════════════════════════════════════════
   ÖZEN TOURISM — PREMIUM DESIGN SYSTEM
   ═══════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --primary: #2c2c3a;
  --primary-deep: #FAF6F1;
  --primary-mid: #3a3a50;
  --accent-gold: #D42B2B;
  --accent-gold-light: #FF6B6B;
  --accent-warm: #A01C1C;
  --accent-gradient: linear-gradient(135deg, #D42B2B, #FF6B6B);
  --glass: rgba(255, 255, 255, 0.85);
  --glass-strong: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-border-hover: rgba(212, 43, 43, 0.35);
  --text-primary: #1a1a2e;
  --text-secondary: #555566;
  --text-dim: #888899;
  --white: #ffffff;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(212, 43, 43, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1200px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition: 0.4s var(--ease);
  --transition-fast: 0.25s var(--ease);
}

/* ── Smooth Scroll ── */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

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

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--primary-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* Ambient animated background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 20%, rgba(212, 43, 43, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 85% 80%, rgba(212, 43, 43, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 50% 50%, rgba(0, 0, 0, 0.015) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* ── Layout ── */
.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

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

/* ── Typography ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 43, 43, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(212, 43, 43, 0.5);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(212, 43, 43, 0.08);
  transform: translateY(-3px);
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 8px 0;
  transition: var(--transition);
  background: #FAF6F1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header.scrolled {
  background: rgba(250, 246, 241, 0.97);
  backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 4px 0;
}

.header.scrolled .logo img {
  max-height: 48px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
}

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

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 16px;
  border-radius: 999px;
  position: relative;
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--accent-gold);
  background: rgba(212, 43, 43, 0.08);
}

.nav-links a.active {
  color: var(--accent-gold);
  background: rgba(212, 43, 43, 0.12);
}

/* ── Nav Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  margin-left: 5px;
  transition: var(--transition-fast);
  display: inline-block;
}

.nav-dropdown:hover>a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 190px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px !important;
  border-radius: 0 !important;
  font-size: 0.88rem !important;
  white-space: nowrap;
  color: var(--text-secondary) !important;
  transition: var(--transition-fast);
}

.dropdown-menu a:hover {
  background: rgba(212, 43, 43, 0.1) !important;
  color: var(--accent-gold) !important;
}

.dropdown-menu a i {
  width: 18px;
  text-align: center;
  color: var(--accent-gold);
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  position: relative;
}

.swiper {
  height: 100vh;
}

.swiper-slide {
  position: relative;
}

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.70) 0%,
      rgba(0, 0, 0, 0.50) 40%,
      rgba(0, 0, 0, 0.35) 100%);
}

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

.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  font-family: "Playfair Display", serif;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.4;
  width: 10px;
  height: 10px;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--accent-gold);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(212, 43, 43, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
}

/* ── Cards Grid ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 200px 1fr;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.015), transparent);
  transition: 0.6s;
}

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

.card-media {
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-media img {
  transform: scale(1.08);
}

.card-body {
  padding: 24px 26px 28px;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-strong), var(--shadow-glow);
}

.card .card-more {
  margin-top: 14px;
  max-height: 0;
  opacity: 0;
  transition: 0.5s var(--ease);
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.card:hover .card-more {
  max-height: 140px;
  opacity: 1;
}

.card i {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: inline-block;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

/* ── Stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-box {
  background: var(--glass);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-gradient);
  transition: var(--transition);
  border-radius: 3px;
}

.stat-box:hover::after {
  width: 60%;
}

.stat-box:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

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

/* ── Split Layout ── */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}

/* ── Panel / Glass Card ── */
.panel {
  background: var(--glass);
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.panel:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-strong);
}

/* ── Services ── */
.service-list {
  display: grid;
  gap: 32px;
}

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
  gap: 0;
  background: var(--glass);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.service-item:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong), var(--shadow-glow);
}

.service-item h3 {
  margin-top: 0;
}

.service-media {
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-item:hover .service-media img {
  transform: scale(1.06);
}

.service-content {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(212, 43, 43, 0.08), rgba(212, 43, 43, 0.04));
  color: var(--accent-gold);
  border: 1px solid rgba(212, 43, 43, 0.15);
  margin-bottom: 14px;
}

/* ── Grid ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* ── Blog Cards ── */
.blog-card {
  background: var(--glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-strong), var(--shadow-glow);
}

.blog-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: 0.6s var(--ease);
}

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

.blog-body {
  padding: 22px 24px 28px;
}

.blog-body h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-body h3 {
  color: var(--accent-gold);
}

.blog-meta {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-weight: 500;
}

/* ── Blog Detail ── */
.blog-detail {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: flex-start;
}

.blog-article {
  background: var(--glass);
  border-radius: var(--radius-xl);
  padding: 32px 32px 36px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
}

.blog-detail-cover {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.blog-detail-meta {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-article h2 {
  margin: 0 0 16px;
  font-size: 1.6rem;
}

.blog-article h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.blog-article p {
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.8;
}

.blog-article ul {
  padding-left: 22px;
  color: var(--text-secondary);
}

.blog-article ul li {
  margin-bottom: 8px;
}

.blog-quote {
  margin: 24px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--accent-gold);
  background: linear-gradient(135deg, rgba(212, 43, 43, 0.06), rgba(255, 255, 255, 0.02));
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-style: italic;
  font-size: 1.05rem;
}

.blog-detail-bottom {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-sidebar {
  background: var(--glass);
  border-radius: var(--radius-xl);
  padding: 26px 26px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
  position: sticky;
  top: 120px;
}

.blog-sidebar h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.sidebar-link {
  display: block;
  padding: 10px 14px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  margin-bottom: 4px;
}

.sidebar-link:hover {
  color: var(--accent-gold);
  background: rgba(212, 43, 43, 0.06);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.contact-card {
  background: var(--glass);
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--glass-border-hover);
}

form {
  display: grid;
  gap: 18px;
}

input,
textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.02);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(212, 43, 43, 0.1);
  background: rgba(0, 0, 0, 0.03);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.map-embed {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--glass);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  font-size: 5rem;
  font-family: "Playfair Display", serif;
  position: absolute;
  top: 12px;
  right: 24px;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
}

.testimonial-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
}

.testimonial-info h4 {
  margin: 0;
  font-size: 0.95rem;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 50%, rgba(212, 43, 43, 0.08) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  border: 1px solid rgba(212, 43, 43, 0.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 43, 43, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.cta-section p {
  color: #555566;
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Feature List ── */
.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-list li i {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── Timeline ── */
.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  background: var(--glass);
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent-gold);
  transition: var(--transition);
  border-top: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.timeline-item:hover {
  border-left-color: var(--accent-warm);
  transform: translateX(6px);
  background: var(--glass-strong);
}

.timeline-item h3 {
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

/* ── Details Box ── */
.details {
  background: var(--glass);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  border: 1px solid var(--glass-border);
}

.details strong {
  color: var(--accent-gold);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.details ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--text-secondary);
}

.details ul li {
  margin-bottom: 4px;
}

/* ── Cert Grid ── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.cert-card {
  background: var(--glass);
  border-radius: var(--radius-lg);
  padding: 26px;
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.cert-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.cert-card i {
  font-size: 2rem;
  margin-bottom: 14px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cert-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

/* ── Footer ── */
.footer {
  padding: 56px 0 28px;
  background: linear-gradient(180deg, #2c2c3a 0%, #1a1a2e 100%);
  color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: var(--accent-gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}

.footer h4 {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #ffffff;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.8;
}

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

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

.footer-brand img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.15));
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Social Links ── */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #ffffff !important;
  transform: translateY(-3px);
}

/* ── Floating Buttons ── */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  transition: var(--transition);
  animation: float-pulse 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

@keyframes float-pulse {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.instagram-fixed {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1000;
}

.instagram-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 6px 24px rgba(238, 42, 123, 0.35);
  transition: var(--transition);
}

.instagram-fixed a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(238, 42, 123, 0.5);
}

/* ── Page Hero (kept minimal for blog-detay) ── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #f5f0eb 0%, #fff5f5 50%, rgba(212, 43, 43, 0.06) 100%);
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #FAF6F1);
}

.page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Playfair Display", serif;
}

/* ── Insta Grid (for future use) ── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.insta-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.insta-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: var(--transition);
  color: var(--text-primary);
  font-weight: 600;
}

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

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

/* ── Process Steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  counter-reset: step;
}

.process-step {
  background: var(--glass);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-size: 3rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.process-step:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* ── Numbers Highlight ── */
.numbers-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 60px 0;
}

.number-item {
  background: var(--glass);
  padding: 36px 20px;
  text-align: center;
  transition: var(--transition);
}

.number-item:hover {
  background: var(--glass-strong);
}

.number-item .number {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.2;
  margin-bottom: 8px;
}

.number-item .label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ═══ Responsive ═══ */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: #FAF6F1;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    padding: 80px 24px 30px;
    gap: 4px;
    transition: var(--transition);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .nav-links a {
    font-size: 0.95rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: block;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(212, 43, 43, 0.06);
    color: var(--accent-gold);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown>a {
    display: block;
    width: 100%;
  }

  .nav-dropdown>a::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 16px;
    min-width: auto;
  }

  .dropdown-menu a {
    font-size: 0.9rem !important;
    padding: 10px 16px !important;
    border-bottom: none !important;
    color: var(--text-secondary) !important;
  }

  .dropdown-menu a::before {
    content: "└ ";
    color: var(--accent-gold);
    font-weight: 400;
  }

  .dropdown-menu a:hover {
    color: var(--accent-gold) !important;
  }

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

  .blog-detail {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img {
    max-height: 48px;
  }

  .header.scrolled .logo img {
    max-height: 40px;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 70px 0;
  }

  .cta-section {
    padding: 40px 24px;
  }

  .numbers-strip {
    grid-template-columns: 1fr;
  }
}

/* ── Language Switcher ── */
/* Hide Google Translate default bar */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

body>.skiptranslate:first-of-type {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
}

body {
  top: 0 !important;
}

#google_translate_element {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: 12px;
}

.lang-btn {
  padding: 6px 12px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition-fast);
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.lang-btn.active {
  background: var(--accent-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(212, 43, 43, 0.25);
}

@media (max-width: 900px) {
  .lang-switcher {
    position: fixed;
    top: 20px;
    right: 70px;
    z-index: 1003;
    margin-left: 0;
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 0.72rem;
  }
}

/* ── RTL Support (Arabic) ── */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .section-label::before {
  content: none;
}

[dir="rtl"] .section-label::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 1px;
}

[dir="rtl"] .feature-list li {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .timeline-item {
  border-left: none;
  border-right: 3px solid var(--accent-gold);
}

[dir="rtl"] .timeline-item:hover {
  border-right-color: var(--accent-warm);
  transform: translateX(-6px);
}

[dir="rtl"] .details ul {
  padding-left: 0;
  padding-right: 18px;
}

[dir="rtl"] .blog-quote {
  border-left: none;
  border-right: 3px solid var(--accent-gold);
}

[dir="rtl"] .blog-article ul {
  padding-left: 0;
  padding-right: 22px;
}

[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
  text-align: right;
}

[dir="rtl"] .hero-actions {
  justify-content: flex-end;
}

[dir="rtl"] .floating-whatsapp {
  right: auto;
  left: 24px;
}

[dir="rtl"] .instagram-fixed {
  left: auto;
  right: 24px;
}

[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

[dir="rtl"] .testimonial-card::before {
  right: auto;
  left: 24px;
}

[dir="rtl"] .process-step::before {
  right: auto;
  left: 20px;
}

@media (max-width: 900px) {
  [dir="rtl"] .nav-links {
    flex-direction: column;
    right: auto;
    left: -100%;
  }

  [dir="rtl"] .nav-links.open {
    left: 0;
    right: auto;
  }

  [dir="rtl"] .dropdown-menu {
    margin: 0 16px 0 0;
  }

  [dir="rtl"] .lang-switcher {
    right: auto;
    left: 70px;
  }
}