:root {
  /* Brightlant 2026 Light Theme Tokens */
  --bg-color: #f4f6fb;
  --bg-color-alt: #ffffff;
  
  /* Typography */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-lighter: #94a3b8;
  
  /* Brand Colors - Deep Vibrant Red */
  --brand-primary: #e11d48;
  --brand-primary-hover: #be123c;
  --brand-accent: #fb7185;
  --brand-light: #fff1f2;
  
  /* Glassmorphism & UI Colors */
  --border-color: rgba(15, 23, 42, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 1);
  --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 1);
  
  /* Elevated Effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px -15px rgba(225, 29, 72, 0.08);
  --shadow-xl: 0 30px 60px -20px rgba(0, 0, 0, 0.08);
  --glass-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
  border: 3px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-main) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-brand {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-brand {
  color: var(--brand-primary);
}

.text-white {
  color: #ffffff !important;
}

.text-center {
  text-align: center !important;
}

/* Social Media Brand Colors */
.text-facebook { color: #1877F2 !important; }
.text-youtube { color: #FF0000 !important; }
.text-linkedin { color: #0A66C2 !important; }
.text-twitter { color: #1DA1F2 !important; }
.text-instagram { 
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

a.text-muted:hover {
  color: var(--brand-primary);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.mt-auto { margin-top: auto; }
.mt-4 { margin-top: 1rem; }
.ml-1 { margin-left: 0.25rem; }

/* ===== Reusable Components ===== */

/* Icon box - feature/service icon containers */
.icon-box {
  width: 64px;
  height: 64px;
  background: var(--brand-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* Checklist item - service feature list items */
.check-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
}

.check-item-text {
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Review avatar circle */
.review-avatar {
  width: 50px;
  height: 50px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 1.2rem;
}

/* Star rating row */
.star-rating {
  color: #FBBC05;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Section headings */
.section-title { font-size: 2.75rem; margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.section-subtitle-last { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.card-title { margin-bottom: 1rem; font-size: 1.25rem; }

/* Footer column heading */
.footer-heading { font-size: 1.1rem; margin-bottom: 1.5rem; }

/* Footer logo */
.footer-logo { height: 50px; margin-bottom: 1.5rem; object-fit: contain; object-position: left; }

/* Noscript banner */
.noscript-banner { padding: 1rem; text-align: center; background: #fee2e2; color: #991b1b; z-index: 9999; position: relative; }

/* Form input */
.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--brand-primary); }

/* Image stack overlay card */
.img-stack-card {
  position: absolute !important;
  bottom: 0;
  right: 0;
  z-index: 3;
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  max-width: 220px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 1280px;
  padding: 0.75rem 1.5rem;
  z-index: 50;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  width: 100%;
  max-width: 100%;
  top: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--brand-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background-color: var(--brand-primary);
  border-radius: 50%;
  transition: var(--transition-bounce);
}

.nav-link:hover::after {
  transform: translateX(-50%) scale(1);
}

.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 0.75rem;
  box-shadow: var(--shadow-xl);
  list-style: none;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 10px;
  transition: var(--transition-fast);
}

.nav-dropdown-item:hover {
  background: var(--brand-light);
  color: var(--brand-primary);
  transform: translateX(4px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: none;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(225, 29, 72, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px -5px rgba(225, 29, 72, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-outline {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--bg-color);
  border-color: rgba(0,0,0,0.1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

/* Advanced Glass Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,1), rgba(255,255,255,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(225, 29, 72, 0.12), 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  border-color: rgba(225, 29, 72, 0.2);
}

/* =========================================
   HUGE IMAGES & NEW PREMIUM ANIMATIONS
   ========================================= */

/* Taller Aspect Ratios for Huge Display */
.ratio-services {
  aspect-ratio: 1 / 1; /* PERFECT SQUARE for massively clean look */
}

.ratio-mission {
  aspect-ratio: 4 / 3; /* Wide and tall for mission/vision */
}

/* Base Image Wrapper */
.card-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  width: 100%;
  height: auto !important; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.06); /* Slight internal shadow */
}

/* The actual image with base transition */
.card-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; 
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

/* Magic Animation 1: Smooth Zoom + Tilt */
.glass-card:hover .card-img-wrapper img {
  transform: scale(1.1) rotate(1.5deg);
  filter: brightness(1.05);
}

/* Magic Animation 2: Glass Shine Overlay on Hover */
.card-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.7s ease;
  z-index: 2;
  pointer-events: none;
}
.glass-card:hover .card-img-wrapper::after {
  left: 200%;
}

/* Magic Animation 3: Explore Button Arrow Movement */
.explore-btn {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.explore-btn i {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.glass-card:hover .explore-btn {
  color: var(--brand-primary-hover);
  letter-spacing: 0.5px;
}
.glass-card:hover .explore-btn i {
  transform: translateX(6px);
}

/* Equal Height Flex Box Utilities */
.h-full { height: 100%; }
.flex-1 { flex: 1; }

/* ========================================= */

/* Footer */
.footer {
  background: #ffffff;
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent), transparent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-lighter);
  font-size: 0.9rem;
}

/* Footer Social Icons Visibility Fix */
.footer .btn-icon {
  border: 1.5px solid var(--brand-accent);
  background: var(--brand-light);
}

.footer .btn-icon:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}
.footer .btn-icon:hover i {
  color: white !important;
  background: none !important;
  -webkit-text-fill-color: white !important;
}

/* Mesh Gradients */
.mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #f8fafc;
  background-image: 
    radial-gradient(at 80% 0%, hsla(347,85%,88%,0.4) 0px, transparent 50%),
    radial-gradient(at 0% 50%, hsla(347,85%,95%,1) 0px, transparent 50%),
    radial-gradient(at 80% 100%, hsla(347,85%,92%,0.6) 0px, transparent 50%),
    radial-gradient(at 0% 0%, hsla(210,100%,98%,1) 0px, transparent 50%);
  filter: blur(60px);
  opacity: 0.8;
  animation: meshFlow 15s ease-in-out infinite alternate;
}

@keyframes meshFlow {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(2%, -2%); }
  100% { transform: scale(1) translate(-2%, 2%); }
}

/* Hero Section specific */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}

/* Video Background Carousel */
.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background: #000;
}

.video-bg-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.video-bg-container video.active {
  opacity: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-text-white {
  color: #ffffff !important;
}

.hero-text-white .hero-subtitle {
  color: #e2e8f0 !important;
}

.hero-text-white .text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  justify-content: center;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--brand-light);
  color: var(--brand-primary);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(225, 29, 72, 0.1);
}

/* Image Grid Masonry/Asymmetry */
.img-stack {
  position: relative;
  height: 500px;
}

.img-stack img {
  position: absolute;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  transition: var(--transition-smooth);
}

.img-stack img:nth-of-type(1) {
  width: 70%;
  height: 70%;
  object-fit: cover;
  top: 0;
  right: 0;
  z-index: 1;
}

.img-stack img:nth-of-type(2) {
  width: 60%;
  height: 60%;
  object-fit: cover;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/* Fallback for service pages with only a single image */
.img-stack:has(img:only-of-type) {
  height: auto !important;
}
.img-stack img:only-of-type {
  width: 100% !important;
  height: auto !important;
  position: relative !important;
  display: block;
  z-index: 1;
}

.img-stack:hover img:nth-of-type(1) { transform: translate(-10px, 10px); }
.img-stack:hover img:nth-of-type(2) { transform: translate(10px, -10px); }
.img-stack:hover img:only-of-type { transform: scale(1.02); }

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-float {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: var(--transition-bounce);
  white-space: nowrap;
  animation: ctaPulse 2s ease-in-out infinite;
}

.cta-float:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(225, 29, 72, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
}

.cta-float i {
  font-size: 1rem;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(225, 29, 72, 0.35); }
  50% { box-shadow: 0 8px 32px rgba(225, 29, 72, 0.55), 0 0 0 8px rgba(225, 29, 72, 0.08); }
}

/* WhatsApp Float */
.whatsapp-float {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), inset 0 2px 0 rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5), inset 0 2px 0 rgba(255,255,255,0.2);
}

/* Client Marquee Slider */
.clients-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem 0;
  display: flex;
  align-items: center;
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color-alt), transparent);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color-alt), transparent);
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
  gap: 5rem;
  padding-right: 5rem;
  align-items: center;
}

.marquee-content img {
  height: 130px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.marquee-content img:hover {
  transform: scale(1.1);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* Client Name Tags */
.client-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.client-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -5px rgba(225, 29, 72, 0.15);
  border-color: rgba(225, 29, 72, 0.25);
}

/* iOS Safari specific fix for background-attachment: fixed */
@supports (-webkit-touch-callout: none) {
  .page-hero, .hero-section, .section {
    background-attachment: scroll !important;
  }
}

/* Mobile Responsiveness */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 1024px) {
  .navbar {
    width: calc(100% - 2rem);
  }
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 1.25rem;
  }
  
  .navbar {
    padding: 0.5rem 1rem;
    border-radius: 16px;
    width: calc(100% - 2rem);
    max-width: calc(100vw - 2rem);
    box-sizing: border-box;
  }
  
  .navbar.scrolled {
    width: 100%;
    max-width: 100vw;
    border-radius: 0;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
    gap: 1.25rem;
    box-sizing: border-box;
    max-height: 70vh;
    overflow-y: auto;
  }
  
  .nav-links.active { display: flex; }
  
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    min-width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
  }
  
  .nav-dropdown-wrapper:hover .nav-dropdown {
    transform: none;
  }
  
  .nav-dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    width: auto;
    margin: 0;
    justify-content: flex-start;
  }
  
  .nav-dropdown.active { display: flex; }
  
  /* Remove hover dot on mobile to prevent layout shifting */
  .nav-link::after { display: none !important; }
  
  .grid-cols-2, .grid-cols-3, .grid-cols-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .mobile-grid-1 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .mobile-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
  
  .section { padding: 4rem 0; }
  .page-hero { 
    padding-top: 7rem; 
    min-height: 45vh; 
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .hero-section { padding-top: 7rem; min-height: 80vh; }
  
  h2 { font-size: 2rem !important; margin-bottom: 1rem !important; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem) !important; }
  .hero-subtitle { font-size: 1.05rem !important; margin-bottom: 1.5rem !important; }
  
  .glass-card {
    padding: 1.5rem !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(225, 29, 72, 0.03);
    border: 1px solid rgba(255,255,255,0.9);
  }
  
  .glass-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .btn-primary:active {
    transform: scale(0.95);
    background: var(--brand-primary-hover);
    transition: transform 0.1s ease;
  }
  
  .img-stack { 
    height: 350px !important; 
    margin-top: 2rem; 
  }
  .img-stack img:nth-of-type(1) { width: 75%; height: 75%; }
  .img-stack img:nth-of-type(2) { width: 65%; height: 65%; }
  .img-stack .glass-card { right: -2% !important; bottom: 0 !important; padding: 1rem !important; transform: scale(0.9); transform-origin: bottom right; }
  .img-stack .img-stack-card { bottom: 0 !important; right: 0 !important; padding: 0.75rem !important; max-width: 160px !important; transform: scale(0.85); transform-origin: bottom right; }
  
  .btn:not(.btn-icon) { 
    width: 100%; 
    justify-content: center;
  }
  
  .footer { padding: 4rem 0 2rem; }
  .footer .grid-cols-4 { gap: 2.5rem; }
  
  .marquee-content { gap: 2.5rem; padding-left: 2.5rem; }
  .marquee-content img { height: 110px; }
  
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .cta-float {
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  /* Specific fix for Section Headers stacking perfectly on mobile */
  .section-header-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.25rem;
  }
}

/* VIP Carousel */
.vip-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.vip-carousel-track-wrapper {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.vip-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.vip-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.vip-slide img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.vip-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--brand-primary);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.vip-nav-btn:hover {
  background: var(--brand-accent);
  transform: translateY(-50%) scale(1.1);
}

.vip-nav-btn.prev-btn {
  left: -25px;
}

.vip-nav-btn.next-btn {
  right: -25px;
}

@media (max-width: 768px) {
  .vip-slide img {
    height: 400px;
  }
  .vip-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .vip-nav-btn.prev-btn { left: 10px; }
  .vip-nav-btn.next-btn { right: 10px; }
}