@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-light: #fff7ed;
  
  --dark-bg: #0f172a;
  --dark-surface: #1e293b;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  --text-white: #ffffff;
  
  --border-light: rgba(226, 232, 240, 0.8);
  --border-glass: rgba(255, 255, 255, 0.4);
  --border-glass-dark: rgba(15, 23, 42, 0.08);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.03);
  --shadow-premium: 0 20px 40px -15px rgba(37, 99, 235, 0.08);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
  
  /* Layout & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  --navbar-height: 110px;
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-full);
  border: 2px solid var(--light-bg);
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Helper Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.text-gradient-blue {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-soft {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Glassmorphism Styles */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass), var(--shadow-sm);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glass), var(--shadow-premium);
  border-color: rgba(37, 99, 235, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.btn:disabled,
.btn.loading {
  opacity: 0.7;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Spinner animation inside button */
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: btn-spin 0.6s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--text-white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* Top Mini bar */
.top-bar {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info i {
  color: var(--accent);
}

.top-bar-socials {
  display: flex;
  gap: 16px;
}

.top-bar-socials a:hover {
  color: var(--accent);
}

/* Sticky Glass Navbar */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.navbar {
  height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  height: 95px;
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.brand-container {
  display: inline-flex;
  align-items: center; /* Perfect vertical centering alignment */
  justify-content: center;
  gap: 15px; /* Spacing of 12–15px between logo and text */
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  line-height: 1;
  margin: 0 !important;
  padding: 0 !important;
}

.brand-container img,
.footer-brand img {
  width: 130px !important; /* Scale up canvas size to 130px to make circle visually equal to text */
  height: 130px !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: transparent !important; /* Zero backgrounds or circles */
  border: none !important; /* Zero outlines or borders */
  box-shadow: none !important; /* Zero container shadow layers */
  padding: 0 !important; /* Zero empty spacing padding */
  margin-top: -25px !important; /* Negate canvas transparent top space */
  margin-bottom: -25px !important; /* Negate canvas transparent bottom space */
  margin-right: -20px !important; /* Negate right padding to pull text to 12-15px visual spacing */
  margin-left: -20px !important; /* Negate left padding for flush outer alignment */
  border-radius: 0 !important;
  display: block; /* Eradicates vertical baseline align shifts */
  transition: var(--transition-smooth);
}

.navbar.scrolled .brand-container img {
  width: 100px !important; /* Proportional scale transition on scroll */
  height: 100px !important;
  margin-top: -15px !important;
  margin-bottom: -15px !important;
  margin-right: -15px !important;
  margin-left: -15px !important;
}

.mobile-nav .brand-container img {
  width: 100px !important;
  height: 100px !important;
  margin-top: -15px !important;
  margin-bottom: -15px !important;
  margin-right: -15px !important;
  margin-left: -15px !important;
}

.brand-name {
  font-size: 3rem; /* 3rem font size matching visual text height */
  line-height: 1;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
}

.brand-name span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-fast);
  border-radius: var(--radius-full);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Mobile Side Drawer Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--card-bg);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  right: 0;
}

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

.mobile-nav-close {
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-muted);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.mobile-nav-links a {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 6px 0;
}

.mobile-nav-links a.active {
  color: var(--primary);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Hero Carousel Section */
.hero-carousel {
  position: relative;
  height: 650px;
  width: 100%;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.carousel-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax effect */
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  display: flex;
  align-items: center;
  transform: scale(1.02);
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}

.slide-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

.slide-content {
  max-width: 750px;
  color: var(--text-white);
  animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.slide-content .hero-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slide-content .hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
}

.slide-content .hero-subheading {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 650px;
}

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

/* Carousel Control Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: var(--transition-smooth);
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.prev-btn {
  left: 40px;
}

.next-btn {
  right: 40px;
}

/* Carousel Indicator Dots */
.carousel-dots-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 30;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.carousel-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 32px;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  height: 100%;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 28px;
  transition: var(--transition-fast);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.service-card:hover .service-card-icon {
  background: var(--primary);
  color: var(--text-white);
  transform: rotateY(180deg);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
}

.service-card-icon.orange-accent {
  background: var(--accent-light);
  color: var(--accent);
  border-color: rgba(249, 115, 22, 0.15);
}

.service-card:hover .service-card-icon.orange-accent {
  background: var(--accent);
  color: var(--text-white);
  box-shadow: 0 8px 16px rgba(249, 115, 22, 0.25);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 28px;
}

.service-card-action {
  margin-top: auto;
}

/* About Section */
/* Enhanced About Us Section with Parallax Background Overlay */
.about-company-section {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax effect */
  color: var(--text-white);
}

.about-grid-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

/* Glassmorphism content cards */
.glass-about-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 50px;
  transition: var(--transition-smooth);
}

.glass-about-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.about-company-left h2 {
  color: var(--text-white);
  font-size: 2.75rem;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.about-desc-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-subtitle {
  color: var(--text-white);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-subtitle::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
}

.why-item i {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Statistics Grid */
.about-company-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 40px 20px;
  text-align: center;
  border-radius: var(--radius-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.15), 0 0 20px rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.3);
}

.stat-card h3 {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Process Section */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 40px;
}

.process-timeline::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary) 30%, var(--accent) 70%);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: var(--card-bg);
  border: 4px solid var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 24px auto;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-smooth);
}

.process-step:nth-child(even) .process-icon {
  border-color: var(--accent-light);
  color: var(--accent);
}

.process-step:hover .process-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(37, 99, 235, 0.1);
}

.process-step:nth-child(even):hover .process-icon {
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(249, 115, 22, 0.15);
}

.process-number {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--dark-bg);
  color: var(--text-white);
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0 12px;
}

/* RO Booking Section & Forms */
.booking-section {
  position: relative;
  background-color: var(--light-bg);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}

.booking-info {
  background: var(--dark-bg);
  color: var(--text-white);
  padding: 50px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.booking-info::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
}

.booking-info h3 {
  color: var(--text-white);
  font-size: 2rem;
  margin-bottom: 20px;
}

.booking-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.booking-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.booking-perk-item i {
  color: var(--accent);
  font-size: 1.25rem;
}

.form-card {
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background-color: var(--card-bg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  background-color: var(--light-bg);
  transition: var(--transition-fast);
  width: 100%;
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--card-bg);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Form Visibility Fix: Force high-contrast text and placeholder colors */
input.form-control,
textarea.form-control,
select.form-control {
  color: #000000 !important;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
  color: #666666 !important;
  opacity: 1 !important;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
  color: #000000 !important;
}

input.form-control:-webkit-autofill,
textarea.form-control:-webkit-autofill,
select.form-control:-webkit-autofill {
  -webkit-text-fill-color: #000000 !important;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Success and Alert Panels */
.submit-success-panel {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: fadeInUp 0.4s ease forwards;
}

.success-icon-anim {
  width: 70px;
  height: 70px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin-bottom: 24px;
  box-shadow: 0 6px 15px rgba(249, 115, 22, 0.15);
}

.submit-success-panel h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.submit-success-panel p {
  color: var(--text-muted);
}

/* Career Page / Section Styles */
.career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.career-perks-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.career-perk-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.career-perk-card i {
  font-size: 1.75rem;
  color: var(--primary);
}

.career-perk-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.career-perk-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Resume Drag & Drop */
.file-upload-box {
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  background: var(--light-bg);
  transition: var(--transition-fast);
  position: relative;
}

.file-upload-box:hover, .file-upload-box.dragover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.file-upload-box i {
  font-size: 2.25rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.file-upload-box.selected i {
  color: var(--accent);
}

.file-upload-box input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-info h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.file-upload-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Document Page / Section */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.doc-card {
  padding: 30px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.doc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.doc-icon {
  width: 50px;
  height: 50px;
  background: #ffebe0;
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.doc-meta {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.doc-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.doc-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 24px;
}

/* Contact Section & Embedded Google Map */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-details h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-info-details p, .contact-info-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-info-details a:hover {
  color: var(--primary);
}

.map-card {
  margin-top: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer Section */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer .brand-container {
  color: var(--text-white);
}

.footer-brand p {
  font-size: 0.925rem;
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--accent);
  transform: translateY(-3px);
  color: var(--text-white);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.footer-title {
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.925rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

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

.footer-newsletter p {
  font-size: 0.9rem;
}

.newsletter-form {
  position: relative;
  display: flex;
}

.newsletter-form .form-control {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  padding: 12px 16px;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.newsletter-btn {
  background: var(--accent);
  color: var(--text-white);
  padding: 0 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background: var(--accent-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
}

/* Floating Action Panels and Widgets */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.float-whatsapp {
  background-color: #25d366;
}

.float-call {
  background-color: #2563eb;
}

.float-top {
  background-color: var(--dark-bg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.float-top.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Interactive WhatsApp Drawer Panel */
.whatsapp-chat-drawer {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 10px 40px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.whatsapp-chat-drawer.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.wa-header {
  background: #075e54;
  color: var(--text-white);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.wa-header-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.wa-header-avatar::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #25d366;
  border: 2px solid #075e54;
  border-radius: var(--radius-full);
}

.wa-header-info h4 {
  color: var(--text-white);
  font-size: 1rem;
}

.wa-header-info p {
  font-size: 0.75rem;
  opacity: 0.85;
}

.wa-body {
  padding: 24px;
  background: #efeae2;
  flex-grow: 1;
  max-height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wa-bubble {
  background: var(--text-white);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) var(--radius-sm);
  font-size: 0.875rem;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  position: relative;
}

.wa-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent var(--text-white) transparent transparent;
}

.wa-bubble-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
}

.wa-footer {
  padding: 16px;
  background: var(--light-bg);
  display: flex;
  gap: 10px;
}

.wa-input {
  flex-grow: 1;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: 0.9rem;
}

.wa-send-btn {
  background: #128c7e;
  color: var(--text-white);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.wa-send-btn:hover {
  background: #075e54;
}

/* Quote/Consultation Popup Modal */
.quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  padding: 20px;
}

.quote-modal.active {
  opacity: 1;
  pointer-events: all;
}

.quote-modal-card {
  width: 100%;
  max-width: 550px;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.quote-modal.active .quote-modal-card {
  transform: scale(1);
}

.quote-modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--text-white);
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-modal-header h3 {
  color: var(--text-white);
  font-size: 1.35rem;
}

.quote-modal-close {
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.quote-modal-close:hover {
  opacity: 1;
}

.quote-modal-body {
  padding: 30px;
}

/* Animations and Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  .section-header h2 { font-size: 2.25rem; }
  
  .slide-content .hero-title {
    font-size: 2.75rem;
  }
  
  .about-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-visual, .booking-info, .career-perks-list {
    order: -1;
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline::after {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }
  
  .top-bar {
    display: none;
  }
  
  .nav-links, .navbar-cta .btn {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  /* Brand Navigation Responsiveness */
  .brand-name {
    font-size: 1.85rem !important;
  }
  
  .brand-container img {
    width: 80px !important;
    height: 80px !important;
    margin-top: -10px !important;
    margin-bottom: -10px !important;
    margin-right: -12px !important;
    margin-left: -12px !important;
  }
  
  .navbar.scrolled .brand-container img {
    width: 70px !important;
    height: 70px !important;
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }
  
  /* Mobile Sidebar Drawer Fixes */
  .mobile-nav .brand-name {
    font-size: 1.8rem !important;
  }
  
  .mobile-nav .brand-container {
    gap: 8px !important;
  }
  
  .mobile-nav .brand-container img {
    width: 80px !important;
    height: 80px !important;
    margin: 0 -8px 0 -12px !important;
  }
  
  h1 { font-size: 2.25rem; }
  .section-header h2 { font-size: 1.75rem; }
  
  /* Carousel Mobile Flow Fixes */
  .hero-carousel {
    height: auto !important;
    min-height: 540px !important;
  }
  
  .carousel-slide {
    position: relative !important;
    height: auto !important;
    min-height: 540px !important;
    padding: 100px 0 !important;
    background-attachment: scroll !important; /* Fixes zoomed/blurry background rendering bug on mobile browsers */
  }
  
  .slide-content .hero-title {
    font-size: 2.15rem !important;
  }
  
  .carousel-arrow {
    display: none;
  }
  
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  /* Layout Grids Stacking */
  .about-grid-wrapper {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  .booking-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  
  .process-timeline::after {
    display: none !important; /* Hide horizontal timeline line on tablet/mobile */
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .glass-about-card {
    padding: 32px !important;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  
  .hero-carousel, .carousel-slide {
    min-height: 480px !important;
  }
  
  .carousel-slide {
    padding: 70px 0 !important;
  }
  
  .slide-content .hero-title {
    font-size: 1.75rem !important;
  }
  
  .about-company-right {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .glass-about-card {
    padding: 24px !important;
  }
  .why-choose-grid {
    grid-template-columns: 1fr !important;
  }
  .process-timeline {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .floating-widgets {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-chat-drawer {
    right: 20px;
    width: calc(100vw - 40px);
  }
  .form-card {
    padding: 24px;
  }
  .stat-card {
    padding: 24px 16px !important;
  }
  .brand-name {
    font-size: 1.55rem !important;
  }
  .brand-container img {
    width: 65px !important;
    height: 65px !important;
  }
  .mobile-nav .brand-name {
    font-size: 1.45rem !important;
  }
  .mobile-nav .brand-container img {
    width: 65px !important;
    height: 65px !important;
  }
}

/* --- ONGOING PROJECTS AND LEGAL UPLOADER STYLES --- */

/* Pulsing Status Dot Beacon */
.pulsing-green {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Category Filter Triggers */
.filter-btn {
  border-color: rgba(37, 99, 235, 0.15);
  background: var(--card-bg);
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Projects Cards & Progress bars */
.project-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: var(--shadow-glass), var(--shadow-premium);
}

.project-progress {
  margin: 18px 0;
}

.progress-bar-fill {
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fill-blue {
  background: linear-gradient(90deg, var(--primary) 0%, #1d4ed8 100%);
}

.fill-orange {
  background: linear-gradient(90deg, var(--accent) 0%, #ea580c 100%);
}

/* Statutory Documents Hub Column Layout */
@media (max-width: 1024px) {
  .documents-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* Dropzone styling for statutory legal documents */
#doc-upload-dropzone.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}

#doc-upload-dropzone.selected i {
  color: var(--primary);
  transform: scale(1.1);
}

/* SPA Dynamic Page View Router */
section.section-padding,
section.hero-carousel,
section.about-company-section {
  opacity: 1;
  transition: opacity 0.35s ease-in-out;
}

section.faded-out {
  display: none !important;
  opacity: 0 !important;
}

/* Split Carousel Layout for Mildwave Custom Banners */
.slide-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.banner-preview-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
  border: 4px solid #ffffff;
  background: #ffffff;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.banner-preview-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.22);
}

.banner-preview-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Light Theme Carousel Slide support */
.carousel-slide.slide-light-theme {
  background-color: #f0f9ff;
  background-attachment: scroll; /* Disable parallax on light gradient to save processing */
}

/* Align navigation dots and arrows when light theme is active */
.carousel-slide.slide-light-theme ~ .carousel-dots-container .carousel-dot {
  background: rgba(15, 23, 42, 0.2);
  border-color: rgba(15, 23, 42, 0.1);
}

.carousel-slide.slide-light-theme ~ .carousel-dots-container .carousel-dot.active {
  background: var(--accent);
}

/* Responsive grid layouts for split carousel slides */
@media (max-width: 991px) {
  .slide-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center;
    padding: 40px 0;
  }
  
  .slide-content {
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .slide-content .hero-title {
    font-size: 2.25rem !important;
  }
  
  .slide-content .hero-subheading {
    font-size: 1rem !important;
    margin-bottom: 24px !important;
  }
  
  .slide-content .hero-actions {
    justify-content: center;
  }
  
  .slide-graphic-wrapper {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  
  .banner-preview-card {
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  }
}

@media (max-width: 576px) {
  .slide-graphic-wrapper {
    display: none; /* Hide graphic on extremely small mobile screens to keep actions highly visible */
  }
  .slide-content .hero-title {
    font-size: 1.85rem !important;
  }
}

/* Dynamic control adapters for light backgrounds */
.hero-carousel.light-slide-active .carousel-arrow {
  color: var(--text-dark);
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.15);
}

.hero-carousel.light-slide-active .carousel-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
}

.hero-carousel.light-slide-active .carousel-dots-container .carousel-dot {
  background: rgba(15, 23, 42, 0.25);
  border-color: rgba(15, 23, 42, 0.12);
}

.hero-carousel.light-slide-active .carousel-dots-container .carousel-dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
}

