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

:root {
  --grad-primary: linear-gradient(135deg, #FF5A5F 0%, #FF8A50 100%);
  --grad-blue: linear-gradient(135deg, #4FB5E1 0%, #2980b9 100%);
  --primary: #FF5A5F;
  --dark: #2c3e50;
  --gold: #FFD200;
  
  --gold-dark: #e6bd00;
  --gold-light: #ffea80;
  --charcoal: #2c3e50;
  --text: #333333;
  --text-light: #666666;
  --light-gray: #fdfdfd;
  --white: #ffffff;
  --dark-bg: #1a252f;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--charcoal);
  color: #ccc;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0 30px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
  transition: color 0.2s;
}

.top-info:hover {
  color: #ffb800;
}

.top-info svg {
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 8px;
}

.social-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

.social-icon:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.top-cta {
  background: var(--grad-primary);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 2px;
  transition: background 0.2s;
  text-transform: uppercase;
}

.top-cta:hover {
  background: var(--grad-primary); box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-mark svg {
  display: block;
}

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

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.2;
  color: var(--charcoal);
  font-weight: 700;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  height: 80px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffb800;
}

.caret {
  font-size: 10px;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--gold);
  z-index: 100;
}

.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.dropdown li a:hover {
  background: #faf7ed;
  color: #ffb800;
  padding-left: 26px;
}

.has-dropdown:hover .dropdown {
  display: block;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  position: relative;
  height: calc(100vh - 122px);
  min-height: 520px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text {
  color: var(--white);
}

.hero-text h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.hero-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.hero-image-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card img {
  width: 100%;
  max-width: 380px;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 8px 8px 0 var(--gold), 12px 12px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.9);
}

/* Hero Nav Buttons */
.hero-nav {
  position: absolute;
  bottom: 50px;
  left: 60px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-prev,
.hero-next {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  background: transparent;
  color: #ffb800;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--gold);
  color: var(--white);
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.dot.active {
  background: var(--gold);
  border-color: var(--charcoal);
  transform: scale(1.2);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 240px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.service-body {
  overflow-x: hidden;
  background: var(--grad-primary);
  padding: 28px 24px;
  color: var(--charcoal);
}

.service-body h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.service-body p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.service-link {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: letter-spacing 0.2s;
}

.service-link:hover {
  letter-spacing: 2px;
}

/* ============================================
   ABOUT & TRUST SECTIONS
   ============================================ */
.about-section,
.trust-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.about-container,
.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrap,
.trust-image-wrap {
  position: relative;
}

.about-frame {
  position: relative;
  display: inline-block;
}

.about-frame img {
  width: 100%;
  max-width: 520px;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

/* L-shaped gold border */
.about-frame::before {
  content: '';
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 80px;
  height: 80px;
  border-bottom: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  z-index: 2;
}

.about-frame::after {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--gold);
  border-left: 4px solid var(--gold);
  z-index: 2;
}

.right-frame img {
  max-width: 520px;
}

.right-frame::before {
  right: auto;
  left: -18px;
  border-right: none;
  border-left: 4px solid var(--gold);
}

.right-frame::after {
  left: auto;
  right: -18px;
  border-left: none;
  border-right: 4px solid var(--gold);
}

.dark-frame::before,
.dark-frame::after {
  border-color: var(--gold-light);
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 16px;
}

.about-text h2,
.trust-text h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 20px;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}

.gold-divider.centered {
  margin: 0 auto 30px;
}

.about-text p,
.trust-text p {
  font-size: 14px;
  line-height: 1.9;
  color: white;
  text-align: justify;
  margin-bottom: 16px;
}

.btn-gold {
  display: inline-block;
  background: var(--grad-primary);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  margin-top: 16px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--grad-primary); box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4); transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn-gold.large {
  padding: 16px 40px;
  font-size: 13px;
}

.btn-gold.mt-20 {
  margin-top: 20px;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #ffb800;
  border: 2px solid var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  margin-top: 16px;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   SPECIALIST SECTION
   ============================================ */
.specialist-section {
  padding: 80px 0 60px;
  background: var(--white);
}

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

.section-header h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 12px;
}

.specialist-grid {
  padding-top: 20px;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  padding: 80px 0;
  background: var(--white);
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.video-wrap {
  position: relative;
}

.video-thumb {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s;
}

.video-thumb:hover img {
  transform: scale(1.03);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.2s;
}

.play-btn:hover {
  background: rgba(0, 0, 0, 0.45);
}

.play-circle {
  width: 70px;
  height: 70px;
  background: rgba(255, 50, 50, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.yt-label {
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 4px;
}

.video-text p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  text-align: justify;
  margin-bottom: 20px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 70px 40px;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-item {
  background: var(--white);
  padding: 36px 20px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-6px);
}

.stat-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.wish-decoration {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.wish-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}

.wish-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 40px;
  color: var(--charcoal);
}

/* ============================================
   DARK OPTIONS SECTION
   ============================================ */
.options-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.options-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.options-text .section-eyebrow.gold {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.options-text p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--charcoal);
  text-align: justify;
  margin-bottom: 28px;
}

.options-list {
  margin-bottom: 28px;
}

.options-list li {
  font-size: 13px;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-slider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 calc(33.33% - 20px);
  background: var(--light-gray);
  padding: 36px 30px;
  border-radius: 4px;
  border-top: 4px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #ffb800;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
}

.testimonial-author span {
  font-size: 11px;
  color: var(--text-light);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.t-prev,
.t-next {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  background: transparent;
  color: #ffb800;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.t-prev:hover,
.t-next:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   NEWSLETTER / CONTACT
   ============================================ */
.newsletter-section {
  padding: 80px 40px;
  background: url('assets/options_buffet_1772305920276.png') center/cover no-repeat;
  position: relative;
  text-align: center;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 0, 0.82);
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.newsletter-content p {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.newsletter-form input,
.newsletter-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--charcoal);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder,
.newsletter-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus,
.newsletter-form textarea:focus {
  border-color: #ffb800;
}

.newsletter-form textarea {
  height: 100px;
  resize: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 40px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-logo-text {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffb800;
}

.footer-brand p {
  color: var(--charcoal);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: #ffb800;
  color: #ffb800;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-col li {
  font-size: 13px;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
  color: #ffb800;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 40px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #ffb800;
}

/* ============================================
   FLOATING DEVIS BUTTON
   ============================================ */
.floating-devis {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 72px;
  height: 72px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: float 3s ease-in-out infinite;
}

.floating-devis:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: none;
}

.floating-devis span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}

@keyframes float {

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

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

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.modal-content {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.stat-item,
.testimonial-card {
  animation: fadeInUp 0.6s ease both;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ============================================
   CONSTANT IMAGE ANIMATIONS
   ============================================ */
@keyframes floatSoft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseSoft {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.service-img img {
  animation: pulseSoft 4s ease-in-out infinite;
}

.about-frame img {
  animation: floatSoft 5s ease-in-out infinite;
}

.video-thumb img {
  animation: pulseSoft 5s ease-in-out infinite alternate;
}

/* Pause animations on hover */
.service-img:hover img,
.about-frame:hover img,
.video-thumb:hover img {
  animation-play-state: paused;
}


/* --- ALTERNATING LIST LAOUT --- */
.alternating-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.alt-row.reverse {
  direction: rtl; /* simple trick to swap columns, or we can use order */
}
.alt-row.reverse > * {
  direction: ltr;
}
.alt-image-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.alt-image-wrap img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.alt-text {
  padding: 20px;
}
.alt-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .alt-row {
    grid-template-columns: 1fr;
  }
  .alt-row.reverse {
    direction: ltr;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    display: none;
  }

  .about-container,
  .trust-container,
  .video-container,
  .options-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .trust-image-wrap {
    order: -1;
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }

  .top-bar {
    justify-content: flex-end;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    height: auto;
    padding: 14px 24px;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    background: #faf7ed;
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: 80vh;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-nav {
    left: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-frame img {
    max-width: 100%;
    height: 280px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    flex: 0 0 85%;
  }

  .floating-devis {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }

  .floating-devis span {
    font-size: 12px;
  }
}

/* ============================================
   INNER PAGES (packs.html, promos.html, etc.)
   ============================================ */
.inner-hero {
  height: 50vh;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
  /* Accounts for top-bar and navbar */
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.inner-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.inner-hero h1 {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .inner-hero {
    height: 40vh;
    margin-top: 80px;
  }
}


/* ============================================
   LOGO STYLES
   ============================================ */
.site-logo {
  height: 60px; /* strictly fit within the 80px navbar */
  max-height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.site-logo-footer {
  height: 80px;
  max-height: 80px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 768px) {
  .site-logo {
    height: 45px;
    max-height: 45px;
    max-width: 140px;
  }
}


/* --- Mobile Specific Fixes --- */
@media (max-width: 768px) {
  /* Fix container paddings for small screens */
  .services-section, .about-section, .trust-section, .specialist-section, .video-section, .options-section, .testimonials-section {
    padding: 50px 0;
  }
  
  .nav-container, .about-container, .trust-container, .video-container, .options-container, .newsletter-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .services-grid, .specialist-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Make typography smaller to fit phones */
  h1 { font-size: clamp(28px, 6vw, 40px) !important; }
  h2 { font-size: clamp(20px, 5vw, 26px) !important; }
  
  /* Fix inner hero to be more compact */
  .inner-hero { height: 35vh !important; margin-top: 80px !important; }

  /* Stack footer items nicely */
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .logo-text { display: none; } /* Hide text next to logo on mobile to save space */
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr; /* Stack stats on very small screens */
  }
  .newsletter-form input, .newsletter-form textarea {
     font-size: 14px; /* Ensure input text is readable avoiding iOS zoom */
  }
}
