/* ==========================================================================
   SRI VANYA EXPORTS - ULTRA LUXURY CORPORATE DESIGN SYSTEM
   Theme: Navy Blue (#0A2342) | Gold (#D4AF37) | White (#FFFFFF) | Light Gray (#F8FAFC)
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary-navy: #0A2342;
  --primary-navy-dark: #051427;
  --primary-navy-light: #16365C;
  --secondary-gold: #D4AF37;
  --secondary-gold-light: #F4E0A5;
  --secondary-gold-dark: #AA820A;
  --accent-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-card-light: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  
  /* Dark Mode Variables */
  --bg-dark: #060D17;
  --bg-card-dark: #0D1B2E;
  --text-light-mode: #0F172A;
  --text-dark-mode: #F1F5F9;

  /* Glassmorphism & Shadows */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-bg-dark: rgba(13, 27, 46, 0.85);
  --glass-border: rgba(212, 175, 55, 0.25);
  --shadow-sm: 0 4px 6px -1px rgba(10, 35, 66, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(10, 35, 66, 0.1);
  --shadow-lg: 0 20px 40px -15px rgba(10, 35, 66, 0.2);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Transitions & Radii */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
}

/* Dark Mode Active Overrides */
body.dark-theme {
  --bg-light: var(--bg-dark);
  --bg-card-light: var(--bg-card-dark);
  --text-dark: #F1F5F9;
  --text-muted: #94A3B8;
  --border-light: rgba(255, 255, 255, 0.1);
  --glass-bg: var(--glass-bg-dark);
  background-color: var(--bg-dark);
  color: var(--text-dark-mode);
}

/* Baseline Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background-color: var(--secondary-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--secondary-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

body.hovered .custom-cursor {
  width: 24px;
  height: 24px;
  background-color: rgba(212, 175, 55, 0.8);
}

body.hovered .custom-cursor-follower {
  width: 56px;
  height: 56px;
  border-color: var(--primary-navy);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-gold) 0%, #FFF5C0 50%, var(--secondary-gold) 100%);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-white);
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.loader-logo span {
  color: var(--secondary-gold);
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--secondary-gold);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

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

/* Top Utility Bar */
.top-bar {
  background: var(--primary-navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition-fast);
}

.top-bar a:hover {
  color: var(--secondary-gold);
}

/* Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 4px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-navy), #10335D);
  border: 2px solid var(--secondary-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-gold);
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(10, 35, 66, 0.2);
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

body.dark-theme .brand-title {
  color: var(--accent-white);
}

.brand-title span {
  color: var(--secondary-gold);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 600;
}

/* Nav Menu Items */
.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 10px 16px !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--transition-fast);
  position: relative;
}

body.dark-theme .navbar-nav .nav-link {
  color: var(--text-dark-mode);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-gold);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--secondary-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Mega Menu */
.has-mega-menu {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-card-light);
  border-top: 2px solid var(--secondary-gold);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-normal);
  z-index: 1100;
}

body.dark-theme .mega-menu {
  background: var(--bg-card-dark);
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

body.dark-theme .mega-menu-item {
  color: var(--text-dark-mode);
}

.mega-menu-item:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(5px);
  color: var(--secondary-gold);
}

.mega-menu-item i {
  font-size: 1.2rem;
  color: var(--secondary-gold);
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #AA820A 100%);
  color: var(--primary-navy-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
  color: var(--primary-navy-dark);
}

.btn-outline-navy {
  background: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 26px;
  border-radius: var(--radius-pill);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

body.dark-theme .btn-outline-navy {
  color: var(--secondary-gold);
  border-color: var(--secondary-gold);
}

.btn-outline-navy:hover {
  background: var(--primary-navy);
  color: var(--accent-white);
  border-color: var(--primary-navy);
  transform: translateY(-3px);
}

body.dark-theme .btn-outline-navy:hover {
  background: var(--secondary-gold);
  color: var(--primary-navy);
  border-color: var(--secondary-gold);
}

/* Section Titles */
.section-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 8px;
  position: relative;
  padding-left: 30px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--secondary-gold);
  transform: translateY(-50%);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

body.dark-theme .section-title {
  color: var(--accent-white);
}

.section-title span {
  background: linear-gradient(135deg, var(--secondary-gold) 0%, #AA820A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 60%, #0F325E 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--accent-white);
  padding: 80px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--secondary-gold);
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 600px;
}

/* Hero Visual Box */
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.hero-badge-floating {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--secondary-gold);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  color: var(--primary-navy);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite;
}

body.dark-theme .hero-badge-floating {
  background: var(--glass-bg-dark);
  color: var(--accent-white);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Page Header Sub-banner */
.page-banner {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  color: var(--accent-white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--secondary-gold);
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-banner-title span {
  color: var(--secondary-gold);
}

.page-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-breadcrumb a {
  color: var(--secondary-gold);
  text-decoration: none;
}

/* Stats Section */
.stats-card {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

body.dark-theme .stats-card {
  background: var(--bg-card-dark);
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-navy), var(--secondary-gold));
}

.stats-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.stats-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stats-label {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--text-dark);
}

body.dark-theme .stats-label {
  color: var(--text-dark-mode);
}

/* Product Cards */
.product-card {
  background: var(--bg-card-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.dark-theme .product-card {
  background: var(--bg-card-dark);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-gold);
}

.product-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-navy);
  color: var(--secondary-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--secondary-gold);
}

.product-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

body.dark-theme .product-title {
  color: var(--accent-white);
}

.product-meta {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.product-meta li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-light);
}

.product-meta li strong {
  color: var(--text-dark);
}

body.dark-theme .product-meta li strong {
  color: var(--text-dark-mode);
}

.product-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.product-actions .btn {
  flex: 1;
  font-size: 0.82rem;
  padding: 10px 10px;
}

/* Feature & Strength Box */
.feature-box {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 35px 28px;
  transition: var(--transition-normal);
  height: 100%;
}

body.dark-theme .feature-box {
  background: var(--bg-card-dark);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-gold);
}

.feature-icon-wrapper {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-navy), #16365C);
  border: 2px solid var(--secondary-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-gold);
  font-size: 1.8rem;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Timelines (Export & Import) */
.timeline-track {
  position: relative;
  padding: 20px 0;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-navy) 0%, var(--secondary-gold) 100%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline-track::before {
    left: 20px;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-content {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

body.dark-theme .timeline-content {
  background: var(--bg-card-dark);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-gold);
}

.timeline-step-badge {
  width: 45px;
  height: 45px;
  background: var(--secondary-gold);
  color: var(--primary-navy-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--bg-light);
}

body.dark-theme .timeline-step-badge {
  box-shadow: 0 0 0 6px var(--bg-dark);
}

/* Certificate Cards */
.cert-card {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
}

body.dark-theme .cert-card {
  background: var(--bg-card-dark);
}

.cert-card:hover {
  border-color: var(--secondary-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.cert-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--secondary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px auto;
}

.badge-coming-soon {
  background: #E2E8F0;
  color: #64748B;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gallery Masonry & Lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 35, 66, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--accent-white);
}

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

/* Blog Cards */
.blog-card {
  background: var(--bg-card-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
}

body.dark-theme .blog-card {
  background: var(--bg-card-dark);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-gold);
}

.blog-img {
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Modals */
.modal-content {
  background: var(--bg-card-light);
  border: 1px solid var(--secondary-gold);
  border-radius: var(--radius-md);
  color: var(--text-dark);
}

body.dark-theme .modal-content {
  background: var(--bg-card-dark);
  color: var(--text-dark-mode);
}

.modal-header {
  border-bottom: 1px solid var(--border-light);
}

.modal-header .btn-close {
  filter: invert(0.5);
}

body.dark-theme .modal-header .btn-close {
  filter: invert(1);
}

/* Floating Actions */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.15);
  color: white;
}

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

.float-call {
  background-color: var(--primary-navy);
}

.float-top {
  background-color: var(--secondary-gold);
  color: var(--primary-navy-dark);
  opacity: 0;
  visibility: hidden;
}

.float-top.show {
  opacity: 1;
  visibility: visible;
}

/* Footer */
.main-footer {
  background: var(--primary-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 20px 0;
  border-top: 3px solid var(--secondary-gold);
  position: relative;
}

.footer-title {
  font-family: var(--font-heading);
  color: var(--accent-white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary-gold);
  padding-left: 6px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-white);
  text-decoration: none;
  transition: var(--transition-bounce);
}

.social-icon:hover {
  background: var(--secondary-gold);
  color: var(--primary-navy-dark);
  transform: translateY(-3px);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 10000;
}

/* Cookie Consent Bar */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  background: var(--primary-navy-dark);
  border: 1px solid var(--secondary-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  color: var(--accent-white);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding: 15px 0;
  }
}
