/* ==========================================================================
   MAROC CHAUFFEUR CONNECT - LUXURY THEME
   Style Sheet pour Transport Privé & VTC de Prestige
   ========================================================================== */

:root {
  --primary-gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA820A;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F9E79F 50%, #B78727 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --bg-deep: #080A0D;
  --bg-surface: #0F1318;
  --bg-card: rgba(20, 25, 33, 0.75);
  --bg-glass: rgba(15, 19, 24, 0.85);
  
  --border-glass: rgba(212, 175, 55, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.08);

  --text-pure: #FFFFFF;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;

  --font-serif: 'Playfair Display', 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-arabic: 'Tajawal', 'Amiri', sans-serif;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-lux: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-pure);
}

body {
  font-family: var(--font-sans);
  line-height: 1.65;
  background-color: var(--bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #232932;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold);
}

/* Typography & Utilities */
h1, h2, h3, .brand-title {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-pure);
}

.text-gold {
  color: var(--primary-gold);
}

.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.arabic-tag {
  font-family: var(--font-arabic);
  font-size: 1.1em;
  direction: rtl;
  display: inline-block;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primary-gold);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0d0f12;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.55);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-pure);
  border: 1px solid var(--border-subtle);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  color: var(--primary-gold);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
}

/* Topbar & Navbar */
.topbar {
  background: #050709;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  padding: 0.45rem 0;
  color: var(--text-muted);
}
.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.topbar-link {
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-smooth);
}
.topbar-link:hover {
  color: var(--primary-gold);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo {
  height: 54px;
  width: auto;
  border-radius: 8px;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
  transition: var(--transition-smooth);
}

.brand-wrapper:hover .brand-logo {
  transform: scale(1.04);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background: radial-gradient(circle at 75% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(15, 25, 45, 0.4) 0%, transparent 70%),
              var(--bg-deep);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(8, 10, 13, 0.94) 25%, rgba(8, 10, 13, 0.6) 70%, rgba(8, 10, 13, 0.88) 100%),
                    url('../images/hero-fleet.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  filter: contrast(115%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 40px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-glass);
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  color: var(--primary-gold);
}

.hero-title {
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-guarantees {
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.8rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guarantee-item i {
  font-size: 1.35rem;
  color: var(--primary-gold);
}

.guarantee-item div span {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
}

.guarantee-item div small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Quick Booking Card */
.booking-card-glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: var(--shadow-lux);
  position: relative;
}

.booking-card-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gold-gradient);
  box-shadow: 0 0 15px var(--primary-gold);
}

.booking-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.booking-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.booking-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: rgba(10, 14, 20, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-size: 0.92rem;
  font-family: var(--font-sans);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.vehicle-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.vehicle-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--text-muted);
}

.vehicle-btn.active, .vehicle-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--primary-gold);
  color: #ffffff;
}

.price-estimate-box {
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed var(--border-glass);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}

.price-val {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-gold);
}

/* About & Presentation Section */
.section-about {
  padding: 7rem 0;
  background: linear-gradient(to bottom, var(--bg-deep), var(--bg-surface));
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-media-stack {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-lux);
  border: 1px solid var(--border-glass);
  display: block;
}

.about-floating-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.about-stat-number {
  font-size: 2.2rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.4rem;
  transition: var(--transition-smooth);
}

.feature-box:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--border-glass);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.feature-box h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.feature-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Services & Rates Section */
.section-services {
  padding: 7rem 0;
  background: var(--bg-surface);
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.rate-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.rate-card:hover {
  border-color: var(--border-glass);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lux);
}

.rate-card.featured {
  border-color: var(--primary-gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(20, 25, 33, 0.85) 100%);
}

.rate-card.featured::after {
  content: 'POPULAIRE';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--primary-gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 35px;
  transform: rotate(45deg);
}

.rate-route {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.rate-route i {
  color: var(--primary-gold);
  font-size: 0.95rem;
}

.rate-price {
  font-size: 2rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1.2rem;
}

.rate-features {
  list-style: none;
  margin-bottom: 1.8rem;
}

.rate-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.rate-features li i {
  color: var(--primary-gold);
  font-size: 0.8rem;
}

/* Photo Gallery & Lightbox */
.section-gallery {
  padding: 7rem 0;
  background: var(--bg-deep);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 2.5rem 0 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gold-gradient);
  color: #0d0f12;
  border-color: transparent;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 290px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 10, 13, 0.92) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
}

.gallery-sub {
  font-size: 0.8rem;
  color: var(--gold-light);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 5, 8, 0.95);
  backdrop-filter: blur(20px);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-glass);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 2.2rem;
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--primary-gold);
}

/* Testimonials & Reviews Section */
.section-testimonials {
  padding: 7rem 0;
  background: linear-gradient(to bottom, var(--bg-deep), var(--bg-surface));
}

.rating-header-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem auto 3.5rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-glass);
  padding: 1.2rem 2.2rem;
  border-radius: 50px;
  width: fit-content;
}

.rating-stars {
  color: #FFB800;
  font-size: 1.25rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.2rem;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-glass);
  transform: translateY(-4px);
}

.quote-mark {
  font-size: 3rem;
  font-family: var(--font-serif);
  color: rgba(212, 175, 55, 0.2);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 25px;
}

.testimonial-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}


.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Old replaced */
.old-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1C232E, #2D3748);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-gold);
  border: 1px solid var(--border-glass);
}

.author-info h5 {
  font-size: 1rem;
  color: #ffffff;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Contact & VIP Booking */
.section-contact {
  padding: 7rem 0;
  background: var(--bg-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-item-box {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.4rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-box h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-item-box p, .contact-item-box a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-item-box a:hover {
  color: var(--primary-gold);
}

/* Footer */
.footer {
  background: #040507;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--primary-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* Floating WhatsApp Quick Action Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(8, 10, 13, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 1.5rem;
    transition: var(--transition-smooth);
  }

  .nav-menu.open {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-guarantees {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Featured Story Testimonial */
.featured-story-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-lux);
  align-items: center;
  position: relative;
}

.featured-story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
}

.story-media {
  height: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-story-card:hover .story-media img {
  transform: scale(1.05);
}

.story-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(8, 10, 13, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  padding: 0.35rem 0.9rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.story-content {
  padding: 2.5rem 2.5rem 2.5rem 0;
}

.story-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: #F3F4F6;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
}

.story-author-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 850px) {
  .featured-story-card {
    grid-template-columns: 1fr;
  }
  .story-media {
    min-height: 320px;
  }
  .story-content {
    padding: 1.8rem;
  }
}
