/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --primary-color: #2A0A3B;
  /* Royal Purple */
  --primary-light: #4c1a66;
  --primary-dark: #1a0226;
  --gold-color: #D4AF37;
  --gold-gradient: linear-gradient(135deg, #F2C94C 0%, #D4AF37 50%, #926F34 100%);
  --gold-text-gradient: linear-gradient(to right, #F2C94C, #D4AF37, #F2C94C);
  --gold-hover: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
  --white: #ffffff;
  --light-grey: #f4f6f9;
  --dark-text: #1a1a1a;
  --grey-text: #666666;
  --border-color: #e5e5e5;

  /* Dynamic Shadows */
  --shadow-sm: 0 4px 6px rgba(42, 10, 59, 0.05);
  --shadow-md: 0 10px 30px rgba(42, 10, 59, 0.08);
  --shadow-lg: 0 20px 50px rgba(42, 10, 59, 0.12);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);

  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(1.85rem, 8vw, 3.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.5rem, 6vw, 2.75rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 5vw, 2.1rem);
}

h4 {
  font-size: clamp(1.1rem, 4vw, 1.65rem);
}

.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine 3s linear infinite;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold-color);
}

.text-primary {
  color: var(--primary-color);
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.badge {
  background: var(--white);
  color: var(--primary-color);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.badge:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Animation Utilities */
/* Animation Utilities - Enhanced */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Animation Variations */
.animate-fade-up {
  /* Default behavior (vertical fade) inheritance */
  transform: translateY(30px);
}

.animate-zoom-in {
  transform: scale(0.85);
}

.animate-zoom-in.active {
  transform: scale(1);
}

.animate-slide-left {
  transform: translateX(-50px);
}

.animate-slide-left.active {
  transform: translateX(0);
}

.animate-slide-right {
  transform: translateX(50px);
}

.animate-slide-right.active {
  transform: translateX(0);
}

.animate-rotate-in {
  transform: rotate(-10deg) scale(0.9);
  opacity: 0;
}

.animate-rotate-in.active {
  transform: rotate(0) scale(1);
  opacity: 1;
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.pulse-animation {
  animation: pulse-gold 2s infinite;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  border: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--primary-color);
  box-shadow: var(--shadow-gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary-color);
  transition: var(--transition);
  z-index: -1;
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-primary:hover {
  color: var(--white) !important;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn:hover::after {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--gold-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--gold-color);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
}

/* Call Button for Locations */
.btn-call-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  width: 100%;
  margin-top: 1rem;
}

.btn-call-location:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--primary-color);
  filter: brightness(1.1);
}

.btn-call-location i {
  font-size: 1.1rem;
}

/* Cards */
/* Cards - Premium Style (Like Home Page Boxes) */
.card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(42, 10, 59, 1) 0%, rgba(28, 5, 41, 1) 100%);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(42, 10, 59, 0.15);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #3d1454 0%, #2a0a3b 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(42, 10, 59, 0.1);
  border-color: var(--gold-color);
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.card:hover::after {
  transform: scaleX(1);
}

.card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.card:hover .icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-color);
}

.card .icon-wrapper i {
  line-height: 1;
  display: block;
  font-size: 2rem;
  color: var(--gold-color);
  transition: var(--transition);
}

.card:hover .icon-wrapper i {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Card Typography */
.card h4 {
  color: var(--white);
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.card:hover h4 {
  color: var(--gold-color);
  transition: color 0.3s;
}

.card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

/* Header & Nav */
header {
  background: linear-gradient(135deg, rgba(42, 10, 59, 0.98) 0%, rgba(28, 5, 41, 0.98) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

header.sticky {
  padding: 0;
}

.top-bar {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(70px, 10vh, 90px);
  transition: var(--transition);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.logo-img {
  max-height: 60px;
  width: auto;
  display: block;
  margin-left: -8px;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 500;
  color: var(--white);
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link {
  font-size: clamp(0.95rem, 2vw, 1rem);
}

.mobile-only-icon {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--white);
}

/* Centered Navigation Layout */
.nav-container {
  position: relative;
  /* Keeps children context for absolute centering */
  justify-content: space-between;
}

nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.desktop-btn {
  display: inline-block;
}

.mobile-only-link {
  display: none;
}

/* Responsive Navigation adjustments */
@media (max-width: 992px) {
  nav {
    position: static;
    transform: none;
  }

  .nav-container {
    justify-content: space-between;
    /* Ensure space-between for Logo - Hamburger */
  }

  /* Since nav is hidden on mobile by default (via .nav-menu display/transform logic usually), 
     we rely on existing mobile menu styles. 
     But we must hide the desktop button. */

  .desktop-btn {
    display: none;
  }

  .mobile-only-link {
    display: block;
  }
}

/* Hero Section */
.hero {
  margin-top: 0;
  /* Accounting for top bar + header */
  padding: 80px 0 60px;
  background: linear-gradient(135deg, rgba(42, 10, 59, 1) 0%, rgba(28, 5, 41, 1) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(42, 10, 59, 0) 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(42, 10, 59, 0) 70%);
  bottom: 0;
  left: -50px;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: clamp(1rem, 3vw, 1.35rem);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 650px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Live Rate Card (Hero) */
.rate-card-hero {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  color: var(--white);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  margin-top: 3rem;
  max-width: 500px;
  width: 100%;
}

.rate-card-hero h3 {
  color: #F2C94C;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rate-row:last-child {
  border-bottom: none;
}

.rate-row span:first-child {
  font-size: 1.1rem;
  font-weight: 500;
}

.rate-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #F2C94C;
  text-shadow: 0 0 20px rgba(242, 201, 76, 0.3);
}

/* Trust Badges */
/* Trust Bar Section */
.trust-bar {
  background: var(--primary-dark);
  position: relative;
  z-index: 100;
  margin-top: -50px;
  /* Overlap effect */
  padding: 10px;
}

.trust-badge-section {
  padding: 20px 0;
  background: transparent;
  position: relative;
  z-index: 10;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 1.2rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  transition: var(--transition);
}

.badge-item h4 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.badge-item p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.badge-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.badge-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: var(--gold-gradient);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}

.badge-icon i {
  line-height: 1;
  display: block;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

/* =========================================
   New About Page Styles
   ========================================= */

/* Utilities specifically for new layouts */
.bg-beige {
  background-color: #FAFAF5;
}

.bg-light {
  background-color: var(--light-grey);
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-uppercase {
  text-transform: uppercase;
}

.max-w-600 {
  max-width: 600px;
}

/* Legacy Section */
.legacy-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.legacy-text {
  flex: 1;
}

.legacy-img {
  flex: 1;
  position: relative;
}

.legacy-img img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  border: 8px solid var(--white);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Softer shadow */
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 8vw, 3rem);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  padding: 0.2rem 0.5rem;
  /* Added padding to prevent gradient clipping */
  display: inline-block;
}

.stat-card p {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Feature Split (Spot Cash / Commitment) */
.feature-split {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.feature-split.reverse {
  flex-direction: row-reverse;
}

.feature-img-wrapper {
  flex: 1;
  position: relative;
}

/* Decorative elements for images */
.feature-img-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 5px solid var(--gold-color);
  border-left: 5px solid var(--gold-color);
  z-index: 0;
  opacity: 0.5;
}

.feature-split.reverse .feature-img-wrapper::before {
  left: auto;
  right: -20px;
  border-left: none;
  border-right: 5px solid var(--gold-color);
}

.feature-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.feature-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
}

.custom-list {
  list-style: none;
  margin-top: 1.5rem;
}

.custom-list li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.custom-list i {
  color: var(--gold-color);
}

/* Iconic Features Grid */
.icons-grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.icon-feature {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid #eee;
}

.icon-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-color);
}

.icon-feature i {
  font-size: 3rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.icon-feature h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {

  .legacy-content,
  .feature-split {
    flex-direction: column;
    gap: 3rem;
  }

  .feature-split.reverse {
    flex-direction: column;
  }

  .legacy-img,
  .feature-img-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .feature-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .feature-text {
    text-align: center;
  }

  .custom-list li {
    justify-content: center;
  }
}

.process-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(42, 10, 59, 1) 0%, rgba(28, 5, 41, 1) 100%);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(42, 10, 59, 0.15);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #3d1454 0%, #2a0a3b 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(42, 10, 59, 0.1);
  border-color: var(--gold-color);
}

.process-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.process-card:hover .process-icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-color);
}

.process-icon-wrapper i {
  line-height: 1;
  display: block;
  font-size: 2rem;
  color: var(--gold-color);
  transition: var(--transition);
}

.process-card:hover .process-icon-wrapper i {
  color: var(--primary-color);
  transform: scale(1.1);
}

.process-card h4 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.process-card p {
  color: rgba(255, 255, 255, 0.8);
}

.process-card:hover h4 {
  color: var(--gold-color);
  transition: color 0.3s;
}

.process-card:hover p {
  color: var(--white);
}

/* Reasons Section */
.reasons-section {
  position: relative;
  overflow: hidden;
}

.reasons-section .section-divider {
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  margin: 10px auto 3rem;
  border-radius: 2px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.reason-card {
  background: linear-gradient(135deg, rgba(42, 10, 59, 1) 0%, rgba(28, 5, 41, 1) 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(42, 10, 59, 0.15);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.reason-card:hover::before {
  transform: scaleX(1);
}

.reason-card:hover {
  transform: translateY(-12px);
  background: linear-gradient(135deg, #3d1454 0%, #2a0a3b 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(42, 10, 59, 0.1);
  border-color: var(--gold-color);
  border-width: 1px;
}

.reason-icon-wrapper {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.reason-card:hover .reason-icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--gold-color);
  border-width: 2px;
}

.reason-emoji {
  width: 60px;
  height: 60px;
  transition: var(--transition);
}

.reason-card:hover .reason-emoji {
  transform: scale(1.15);
}

.reason-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.reason-card:hover h4 {
  color: var(--gold-color);
}

.reason-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Reasons Section */
@media (max-width: 992px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reason-card {
    padding: 2rem 1.5rem;
  }

  .reason-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .reason-emoji {
    width: 50px;
    height: 50px;
  }

  .reason-card h4 {
    font-size: 1.2rem;
  }

  .reason-card p {
    font-size: 0.95rem;
  }
}

/* FAQ Section - Premium Design */

.faq-container {
  max-width: 900px;
  margin: 4rem auto 0;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
  margin-bottom: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(42, 10, 59, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid transparent;
  position: relative;
  backdrop-filter: blur(10px);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold-gradient);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: top;
}

.faq-item:hover::before {
  transform: scaleY(1);
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 40px rgba(42, 10, 59, 0.12);
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  position: relative;
  transition: all 0.3s ease;
}

.faq-question span {
  flex: 1;
  padding-right: 1.5rem;
  line-height: 1.5;
}

.faq-question i {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: var(--gold-color);
  font-size: 1.2rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2.5rem;
  opacity: 0;
  color: var(--grey-text);
  line-height: 1.8;
}

.faq-answer p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

/* Active State */
.faq-item.active {
  box-shadow: 0 20px 50px rgba(42, 10, 59, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 248, 245, 1) 100%);
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-item.active .faq-question {
  color: var(--primary-color);
  padding-bottom: 1.5rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  background: var(--gold-gradient);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 0;
  padding-bottom: 2rem;
  opacity: 1;
}

/* FAQ Section Header Enhancement */
#faq .text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#faq h2 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
}

#faq h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-question {
    padding: 1.5rem 1.5rem;
    font-size: 1.05rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
  }

  .faq-question i {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 120px;
  /* Increased bottom padding for floating bar */
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer h3 {
  color: var(--gold-color);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--gold-color);
  transform: translateX(10px);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  color: var(--gold-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

/* Page Header - Premium */
.page-header {
  margin-top: 0;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, rgba(42, 10, 59, 1) 0%, rgba(28, 5, 41, 1) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(42, 10, 59, 0) 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.page-header::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(42, 10, 59, 0) 70%);
  bottom: 0;
  left: -50px;
  z-index: 0;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.breadcrumb span {
  color: var(--gold-color);
  font-weight: 700;
}

.breadcrumb i {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Forms */
/* Forms */
.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  /* Prevents zoom on iOS */
  transition: var(--transition);
  background: #f9f9f9;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Testimonials Section - Premium Design */
.testimonials-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.testimonial-header {
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.subtitle {
  color: var(--grey-text);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 3rem 0;
  z-index: 1;
}

.quote-icon-bg {
  position: absolute;
  top: 0;
  left: -20px;
  font-size: 120px;
  color: rgba(42, 10, 59, 0.04);
  z-index: -1;
  font-family: serif;
}

.testimonial-track-container {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 50px -12px rgba(42, 10, 59, 0.1);
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 4rem 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-stars {
  color: var(--gold-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  display: flex;
  gap: 5px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  line-height: 1.7;
  color: var(--primary-color);
  margin-bottom: 2.5rem;
  font-weight: 500;
  position: relative;
}

.testimonial-author-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info {
  text-align: center;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonial-location {
  color: var(--gold-color);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 30px rgba(42, 10, 59, 0.2);
}

.prev-btn {
  left: -30px;
}

.next-btn {
  right: -30px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(42, 10, 59, 0.1);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 30px;
  border-radius: 10px;
  background: var(--gold-gradient);
}

@media (max-width: 991px) {
  .testimonial-container {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .testimonial-slide {
    padding: 3rem 2rem;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
  }

  .prev-btn {
    left: -20px;
  }

  .next-btn {
    right: -20px;
  }

  .testimonial-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 576px) {
  .testimonial-container {
    max-width: 100%;
    padding: 2rem 15px;
  }

  .testimonial-slide {
    padding: 2.5rem 1.5rem;
  }

  .slider-btn {
    display: none;
  }
}

/* Rate Cards */
.rate-summary-card {
  width: 100%;
  max-width: 600px;
  text-align: center;
  border: 2px solid var(--gold-color);
  margin: 0 auto;
}

.rate-item-box {
  background: var(--light-grey);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.rate-item-box:hover {
  transform: scale(1.02);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.rate-value {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
}

.calculation-list {
  width: 100%;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 1rem;
}

.calc-row.total {
  border-bottom: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  padding-top: 20px;
}

@media (max-width: 480px) {
  .rate-item-box {
    padding: 1rem;
  }

  .calc-row {
    font-size: 0.9rem;
  }
}


/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.comparison-table th {
  background: var(--primary-dark);
  color: var(--white);
  padding: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th.vmg-col {
  background: var(--gold-gradient);
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* Removed transform scale to fix alignment */
}

.comparison-table td {
  padding: 1.5rem;
  font-size: 1rem;
  color: var(--dark-text);
  border-bottom: 1px solid var(--light-grey);
  vertical-align: middle;
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.vmg-check {
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(212, 175, 55, 0.05);
  /* Subtle gold tint for VMG column cells */
}

.vmg-check i {
  color: #25D366;
  /* Green checkmark or Gold? */
  color: var(--gold-color);
  margin-right: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero {
    padding: 60px 0;
  }

  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  /* ========================================
     PREMIUM MOBILE HEADER DESIGN
     ======================================== */

  /* Enhanced Mobile Header */
  header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(42, 10, 59, 0.08),
      0 2px 10px rgba(212, 175, 55, 0.05);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 50%,
        transparent 100%) 1;
    transition: all 0.4s ease;
  }

  header.menu-open {
    background: rgba(26, 2, 38, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5),
      0 2px 10px rgba(212, 175, 55, 0.2);
  }

  /* Premium Navigation Container */
  .nav-container {
    height: 70px;
    position: relative;
  }

  /* Animated Logo */
  .logo {
    position: relative;
    z-index: 1003;
  }

  .logo-img {
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .logo:active .logo-img {
    transform: scale(0.95);
  }

  header.menu-open .logo-img {
    filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.6)) brightness(1.1);
  }

  /* Premium Hamburger Menu Button */
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 15px rgba(42, 10, 59, 0.1),
      0 2px 8px rgba(212, 175, 55, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  /* Hamburger Icon Lines */
  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2.5px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--gold-color) 100%);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .hamburger::before {
    transform: translateY(-6px);
  }

  .hamburger::after {
    transform: translateY(6px);
  }

  /* Middle line using span */
  .hamburger span {
    position: absolute;
    width: 24px;
    height: 2.5px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--gold-color) 100%);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  /* Hover State */
  .hamburger:hover {
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.08) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(42, 10, 59, 0.15),
      0 3px 12px rgba(212, 175, 55, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .hamburger:hover::before {
    transform: translateY(-7px);
  }

  .hamburger:hover::after {
    transform: translateY(7px);
  }

  /* Active State (Menu Open) */
  .hamburger.active {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--primary-light) 100%);
    border-color: var(--gold-color);
    box-shadow: 0 8px 25px rgba(42, 10, 59, 0.3),
      0 4px 15px rgba(212, 175, 55, 0.4),
      0 0 0 4px rgba(212, 175, 55, 0.1);
    position: fixed;
    right: 20px;
    top: 12px;
    transform: rotate(90deg);
  }

  .hamburger.active::before {
    background: linear-gradient(90deg,
        var(--gold-color) 0%,
        #FFD700 100%);
    transform: translateY(0) rotate(45deg);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
  }

  .hamburger.active::after {
    background: linear-gradient(90deg,
        var(--gold-color) 0%,
        #FFD700 100%);
    transform: translateY(0) rotate(-45deg);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
  }

  /* Active Press Effect */
  .hamburger:active {
    transform: scale(0.92);
  }

  .hamburger.active:active {
    transform: rotate(90deg) scale(0.92);
  }

  /* Premium Mobile Menu Sidebar */
  nav {
    display: contents;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(180deg,
        #1a0226 0%,
        #2A0A3B 50%,
        #1a0226 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 80px 0 60px;
    transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1),
      box-shadow 0.6s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    z-index: 1001;
    overflow-y: auto;
    border-left: 3px solid;
    border-image: linear-gradient(180deg,
        transparent 0%,
        var(--gold-color) 30%,
        var(--gold-color) 70%,
        transparent 100%) 1;
  }

  /* Decorative gradient overlay */
  .nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top left,
        rgba(212, 175, 55, 0.15) 0%,
        transparent 70%);
    pointer-events: none;
  }

  /* Decorative bottom gradient */
  .nav-menu::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: radial-gradient(ellipse at bottom right,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%);
    pointer-events: none;
  }

  .mobile-only-icon {
    display: inline-block;
    color: var(--gold-color);
    margin-right: 12px;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
  }

  .nav-menu.active {
    right: 0;
    box-shadow: -25px 0 80px rgba(0, 0, 0, 0.7),
      0 0 100px rgba(212, 175, 55, 0.1);
  }

  .nav-menu li {
    width: 100%;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
  }

  .nav-menu li:last-child {
    border-bottom: none;
    padding-top: 20px;
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Enhanced Stagger Animation */
  .nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-menu.active li:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-menu.active li:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-menu.active li:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-menu.active li:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-menu.active li:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-menu.active li:nth-child(7) {
    transition-delay: 0.4s;
  }

  /* Premium Nav Links */
  .nav-link {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
  }

  /* Hover shimmer effect */
  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.1) 50%,
        transparent 100%);
    transition: left 0.5s ease;
  }

  .nav-link:hover::before {
    left: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-color);
    padding-left: 35px;
    border-left-color: var(--gold-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }

  .nav-link.active {
    font-weight: 700;
    border-left-color: var(--gold-color);
    padding-left: 35px;
    background: linear-gradient(90deg,
        rgba(212, 175, 55, 0.18) 0%,
        rgba(212, 175, 55, 0.05) 50%,
        transparent 100%);
    color: var(--gold-color);
    box-shadow: inset 4px 0 12px rgba(212, 175, 55, 0.2);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  }

  .nav-menu .btn-primary {
    width: calc(100% - 60px) !important;
    margin: 10px 30px !important;
    display: block !important;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3),
      0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .nav-menu .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4),
      0 6px 15px rgba(0, 0, 0, 0.3);
  }

  /* Hero adjustments */
  .hero {
    margin-top: 0;
    text-align: center;
    padding-top: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-btns {
    justify-content: center;
  }

  /* Comparison table scroll on mobile */
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    /* Bleed to edges */
    padding: 0 20px;
    padding-bottom: 1rem;
    /* Space for scrollbar */
    scroll-behavior: smooth;
  }

  .comparison-table {
    min-width: 500px;
    width: 100%;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
  }

  .comparison-table td:first-child,
  .comparison-table th:first-child {
    text-align: left;
    padding-left: 1rem;
    width: 120px;
  }

  .comparison-table th.vmg-col {
    font-size: 0.95rem;
  }

  /* Custom Scrollbar for better visibility */
  .comparison-table-wrapper::-webkit-scrollbar {
    height: 6px;
  }

  .comparison-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--gold-color);
    border-radius: 10px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
  }

  .testimonial-container {
    padding: 0;
  }

  .testimonial-slide {
    padding: 2rem 1rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .page-header {
    margin-top: 0;
    padding: 100px 0 80px;
  }

  .page-header h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .breadcrumb {
    text-align: center;
    justify-content: center;
    display: flex;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .badge-item {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    min-width: 100%;
    gap: 1rem;
  }

  .section-padding {
    padding: 40px 0;
  }

  /* Layout utility fixes */
  .grid-mobile-1 {
    grid-template-columns: 1fr !important;
  }

  .flex-mobile-column {
    flex-direction: column !important;
  }

  .card {
    padding: 2rem 1.5rem;
    width: auto !important;
    /* Reset forced width */
  }

  /* specific components */
  .trust-badges,
  .footer-cols {
    flex-direction: column !important;
    gap: 2rem;
  }

  /* menu overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-container {
    height: 80px;
  }

  .logo-img {
    max-height: 45px;
  }

  .hamburger {
    font-size: 2rem;
    line-height: 1;
    margin-top: -5px;
  }

  /* FAB for Mobile */
  .mobile-fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
  }

  .fab-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
  }

  .fab-whatsapp {
    background-color: #25D366;
  }

  .fab-phone {
    background: var(--gold-gradient);
    color: var(--primary-color);
    animation: phone-ring 3s infinite;
  }

  @keyframes phone-ring {
    0% {
      transform: scale(1);
    }

    5% {
      transform: rotate(-10deg) scale(1.1);
    }

    10% {
      transform: rotate(10deg) scale(1.1);
    }

    15% {
      transform: rotate(-10deg) scale(1.1);
    }

    20% {
      transform: rotate(10deg) scale(1.1);
    }

    25% {
      transform: rotate(0) scale(1.1);
    }

    100% {
      transform: scale(1);
    }
  }

  .fab-btn:active {
    transform: scale(0.9) !important;
    animation: none;
  }
}

/* Premium Call Icon Global Style */
.call-icon-styled {
  color: var(--gold-color);
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
  transition: var(--transition);
}

.contact-item:hover .call-icon-styled {
  transform: scale(1.2) rotate(-10deg);
  color: var(--primary-light);
}

@media (min-width: 769px) {
  .mobile-fab-container {
    display: none;
  }
}

/* New Hero Split Layout */
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "content image"
    "btns image"
    "badges badges";
  align-items: center;
  gap: 2rem;
}

.hero-content {
  grid-area: content;
  text-align: left;
  max-width: 650px;
  z-index: 2;
}

.hero-btns {
  grid-area: btns;
  justify-content: flex-start;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image-container {
  grid-area: image;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  min-height: 400px;
  align-items: flex-end;
}

.trust-badge-section {
  grid-area: badges;
  width: 100%;
  padding-top: 30px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 90%;
  margin-bottom: 2.5rem;
}

.hero-model-img {
  max-width: 120%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  margin-bottom: 0;
  transform: translateX(50px);
}

/* Background Pattern Overlay for Hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  opacity: 0.5;
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "image"
      "btns";
    text-align: center;
    padding-top: 20px;
    gap: 1rem;
  }

  .hero-content {
    order: 1;
    text-align: center;
    max-width: 100%;
    margin-bottom: 0;
  }

  .hero-content h1 {
    text-align: center;
    font-size: 2.5rem;
  }

  .hero-content p {
    text-align: center;
    margin: 0 auto 0.5rem;
    font-size: 1rem;
  }

  .hero-btns {
    order: 2;
    justify-content: center;
    margin-top: 1rem;
  }

  .trust-badge-section {
    order: 3;
    padding: 20px 0;
  }

  .hero-image-container {
    order: 4;
    justify-content: center;
    min-height: auto;
    align-items: center;
    margin-top: 2rem;
  }

  .badge-item h4 {
    font-size: 1.1rem;
    color: var(--white);
  }

  .badge-item p {
    font-size: 0.85rem !important;
  }

  .process-card h4 {
    font-size: 1.1rem;
  }

  .process-card p {
    font-size: 0.9rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }

  .footer-intro {
    font-size: 0.85rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .hero-model-img {
    max-width: 90%;
    transform: translateX(-20px);
    margin: 0 auto;
  }
}

/* =========================================
   New Footer Design
   ========================================= */
.new-footer {
  background-color: #1a0b2e;
  /* Darker shade of primary purple/navy */
  background-image: linear-gradient(to bottom, #1a0b2e, #0f041c);
  color: #e0e0e0;
  padding: 80px 0 120px;
  /* Increased bottom padding for floating bar visibility */
  font-size: 0.95rem;
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 3rem;
}

/* Left Content */
.footer-left-content {
  flex: 1 1 400px;
  max-width: 500px;
}

.logo-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  text-decoration: none;
}


.footer-logo-img {
  max-width: 220px;
  height: auto;
  display: block;
  margin-left: -15px;
}

.footer-intro {
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

/* Disclaimer Box */
.footer-disclaimer-box {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border-left: 3px solid var(--gold-color);
}

.disclaimer-icon i {
  font-size: 1.5rem;
  color: #777;
  margin-top: 5px;
}

.disclaimer-text h5 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.disclaimer-text p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #888;
  margin: 0;
}

/* Right Content */
.footer-right-content {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-cols {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col-menu,
.footer-col-social {
  flex: 1;
  min-width: 140px;
}

.footer-col-menu h4,
.footer-col-social h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-menu h4::after,
.footer-col-social h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-color);
}

.new-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-footer ul li {
  margin-bottom: 12px;
}

.new-footer ul li a {
  color: #a0a0a0;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
}

.new-footer ul li a:hover {
  color: var(--gold-color);
  transform: translateX(5px);
}

/* Contact Info */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ccc;
  font-size: 1rem;
}

.contact-item i {
  color: var(--gold-color);
  width: 20px;
  text-align: center;
}

/* Separator & Bottom */
.footer-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 25px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: #666;
  font-size: 0.85rem;
  align-items: center;
}

.footer-bottom-row a {
  color: #888;
  transition: 0.3s;
  text-decoration: none;
}

.footer-bottom-row a:hover {
  color: var(--gold-color);
}

.footer-legal-links {
  display: flex;
  gap: 10px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .footer-top-row {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-left-content,
  .footer-right-content {
    max-width: 100%;
    flex: auto;
  }

  .footer-cols {
    gap: 2rem;
  }

  .logo-footer {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-cols {
    flex-direction: column;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* Global Mobile Fixes */
html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative;
}

/* Documents Section Styles */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.document-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(42, 10, 59, 1) 0%, rgba(28, 5, 41, 1) 100%);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(42, 10, 59, 0.15);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.document-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.document-card:hover::after {
  transform: scaleX(1);
}

.document-card:hover {
  transform: translateY(-12px);
  background: linear-gradient(135deg, #3d1454 0%, #2a0a3b 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(42, 10, 59, 0.1);
  border-color: var(--gold-color);
}

.document-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.document-card:hover .document-icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-color);
}

.document-icon-wrapper i {
  line-height: 1;
  display: block;
  font-size: 2rem;
  color: var(--gold-color);
  transition: var(--transition);
}

.document-card:hover .document-icon-wrapper i {
  color: var(--primary-color);
  transform: scale(1.1);
}

.document-card h4 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.document-card:hover h4 {
  color: var(--gold-color);
  transition: color 0.3s;
}

.document-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Responsive Design for Documents Section */
@media (max-width: 1024px) {
  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .documents-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .document-card {
    padding: 1.8rem 1.5rem;
  }

  .document-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .document-icon-wrapper i {
    font-size: 1.75rem;
  }

  .document-card h4 {
    font-size: 1.15rem;
  }

  .document-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .document-card {
    padding: 1.5rem 1rem;
  }

  .document-icon-wrapper {
    width: 65px;
    height: 65px;
  }

  .document-icon-wrapper i {
    font-size: 1.6rem;
  }
}

/* Contact Page Premium Styles */
.contact-section-new {
  position: relative;
  background: #fdfdfd;
  overflow: hidden;
  padding: 60px 0 !important;
}

.contact-section-new::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail-card {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(42, 10, 59, 0.05);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.contact-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: bottom;
}

.contact-detail-card:hover {
  transform: translateX(12px) translateY(-8px);
  box-shadow: 0 25px 50px rgba(42, 10, 59, 0.1);
  border-color: rgba(212, 175, 55, 0.2);
}


.contact-detail-card:hover::before {
  transform: scaleY(1);
}

.contact-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-color);
  transition: var(--transition);
  flex-shrink: 0;
}

.contact-detail-card:hover .contact-icon-box {
  background: var(--gold-gradient);
  color: var(--primary-color);
  transform: rotate(-10deg);
}

.contact-info-text h4 {
  margin-bottom: 5px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.contact-info-text p {
  font-size: 1.1rem;
  color: var(--grey-text);
  font-weight: 500;
}

/* Glassmorphism Form */
.contact-form-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem 3rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 40px 100px -20px rgba(42, 10, 59, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.05);
  position: relative;
  z-index: 2;
}

.contact-form-glass::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background: var(--gold-gradient);
  opacity: 0.1;
  filter: blur(40px);
  z-index: -1;
  border-radius: 50%;
}


.form-title-wrapper {
  margin-bottom: 2rem;
}

.form-title-wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.form-title-wrapper .underline {
  width: 60px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.modern-form .form-group {
  margin-bottom: 1.2rem;
  position: relative;
}

.modern-form label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-form .form-control {
  background: #fdfdfd;
  border: 1.5px solid #eee;
  padding: 1.3rem 1.6rem;
  border-radius: 18px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--primary-color);
  width: 100%;
  font-family: var(--font-body);
}

.modern-form .form-control::placeholder {
  color: #aaa;
  font-weight: 400;
}


.modern-form .form-control:focus {
  background: var(--white);
  border-color: var(--gold-color);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.12),
    0 0 0 5px rgba(212, 175, 55, 0.05);
  outline: none;
  transform: translateY(-2px);
}


.modern-form textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.form-message {
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  display: none;
  font-size: 0.95rem;
}

.form-message.show {
  display: block;
}

.form-message.success {
  background: rgba(37, 211, 102, 0.08);
  color: #097a2a;
  border: 1px solid rgba(37, 211, 102, 0.12);
}

.form-message.error {
  background: rgba(255, 90, 90, 0.06);
  color: #b30a0a;
  border: 1px solid rgba(255, 90, 90, 0.1);
}

.form-message-inline {
  margin-bottom: 0.6rem;
}

.bar-input-small {
  padding: 0.85rem 1rem;
  width: 220px;
  /* compact width */
}

@media (max-width: 600px) {
  .bar-input-small {
    width: 140px;
  }
}

.submit-btn-premium {
  width: 100%;
  padding: 1.3rem;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold-gradient);
  color: var(--primary-color);
  border: none;
  border-radius: 20px;
  font-weight: 800;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.submit-btn-premium:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.45);
  filter: brightness(1.1);
}

.submit-btn-premium:active {
  transform: translateY(-2px) scale(0.98);
}


/* Map Section */
.map-wrapper-premium {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--white);
  padding: 15px;
}

.map-wrapper-premium iframe {
  border-radius: 20px;
  filter: grayscale(0.2);
  transition: var(--transition);
}

.map-wrapper-premium:hover iframe {
  filter: grayscale(0);
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-glass {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-detail-card {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .contact-icon-box {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-form-glass {
    padding: 2.5rem 1.5rem;
  }

  .form-title-wrapper h3 {
    font-size: 1.8rem;
  }
}

/* =========================================
   Mobile FAB (Floating Action Buttons) - PREMIUM DESIGN
   ========================================= */

/* Keyframe Animations */
@keyframes fab-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes fab-glow {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0);
  }
}

@keyframes fab-ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes fab-slide-in {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Container */
.mobile-fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  animation: fab-slide-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base FAB Button */
.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Ripple Effect */
.fab-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}

.fab-btn:active::before {
  animation: fab-ripple 0.6s ease-out;
}

/* Glassmorphism Overlay */
.fab-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fab-btn:hover::after {
  opacity: 1;
}

/* WhatsApp Button */
.fab-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite, fab-pulse 2s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(18, 140, 126, 0.25);
}

.fab-whatsapp:hover {
  animation: fab-glow 1.5s ease-in-out infinite, fab-pulse 2s ease-in-out infinite;
  transform: translateY(-5px) scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5), 0 6px 18px rgba(18, 140, 126, 0.35);
}

/* Phone Button */
.fab-phone {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #926F34 100%);
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35), 0 4px 12px rgba(146, 111, 52, 0.25);
}

.fab-phone:hover {
  transform: translateY(-5px) scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.55), 0 6px 18px rgba(146, 111, 52, 0.4);
  background-position: 100% 50%;
}

/* Scroll to Top Button */
.fab-scroll-top {
  background: linear-gradient(135deg, #2A0A3B 0%, #4c1a66 50%, #6b2d8f 100%);
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
  opacity: 0;
  visibility: hidden;
  transform: scale(0) rotate(-180deg);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(42, 10, 59, 0.35), 0 4px 12px rgba(76, 26, 102, 0.25);
}

.fab-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1) rotate(0deg);
}

.fab-scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 35px rgba(42, 10, 59, 0.55), 0 6px 18px rgba(76, 26, 102, 0.4);
  background-position: 100% 50%;
}

/* Icon Animations */
.fab-btn i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.fab-btn:hover i {
  transform: scale(1.15);
}

.fab-scroll-top:hover i {
  animation: bounce-up 0.6s ease infinite;
}

@keyframes bounce-up {

  0%,
  100% {
    transform: translateY(0) scale(1.15);
  }

  50% {
    transform: translateY(-4px) scale(1.15);
  }
}

/* Active State */
.fab-btn:active {
  transform: translateY(-2px) scale(0.95);
}

/* Mobile Responsive - Tablet */
@media (max-width: 768px) {
  .mobile-fab-container {
    bottom: 20px;
    right: 20px;
    gap: 14px;
  }

  .fab-btn {
    width: 46px;
    height: 46px;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16), 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  /* Center text alignment for intro section on mobile for better readability */
  /* Justify text alignment for intro section and content paragraphs on mobile */
  .intro-section p,
  .text-center p:not(.testimonial-text) {
    text-align: justify;
    text-align-last: left;
  }
}

/* Mobile Responsive - Phone */
@media (max-width: 480px) {
  .mobile-fab-container {
    bottom: 16px;
    right: 16px;
    gap: 12px;
  }

  .fab-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .fab-btn:hover {
    transform: translateY(-3px) scale(1.08);
  }

  /* Center text alignment for intro section on mobile for better readability */
  /* Justify text alignment for intro section and content paragraphs on mobile */
  .intro-section p,
  .text-center p:not(.testimonial-text) {
    text-align: justify;
    text-align-last: left;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .mobile-fab-container {
    bottom: 14px;
    right: 14px;
    gap: 10px;
  }

  .fab-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* =========================================
   FAQ Section Styles
   ========================================= */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  transition: background 0.3s ease;
  font-family: var(--font-heading);
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.03);
}

.faq-question span {
  flex: 1;
  padding-right: 15px;
}

.faq-question i {
  color: var(--gold-color);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  font-size: 1rem;
  background: rgba(212, 175, 55, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  background: var(--gold-gradient);
  color: var(--primary-color);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--grey-text);
  line-height: 1.7;
  font-size: 0.95rem;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  animation: slideDown 0.3s ease-out;
}

.faq-item.active .faq-answer {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }
}

/* Technology Section - Premium Redesign */
.tech-section {
  position: relative;
  background: radial-gradient(circle at center, #2a0a3b 0%, #0d0212 100%);
  padding: 80px 0;
  overflow: hidden;
  color: var(--white);
}

/* Subtle pattern overlay */
.tech-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}

.tech-section .container {
  position: relative;
  z-index: 2;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.tech-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.tech-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(145deg, rgba(42, 10, 59, 0.8), rgba(20, 5, 30, 0.9));
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Gold line on hover */
.tech-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: center;
}

.tech-card:hover::after {
  transform: scaleX(1);
}

.tech-icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
}

.tech-icon-box::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.3);
  animation: spin-slow 10s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.tech-card:hover .tech-icon-box::before {
  opacity: 1;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.tech-icon-box i {
  font-size: 2.5rem;
  color: var(--gold-color);
  transition: all 0.5s ease;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
}

.tech-card:hover .tech-icon-box {
  transform: scale(1.1);
  border-color: var(--gold-color);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
  background: rgba(42, 10, 59, 1);
}

.tech-card:hover .tech-icon-box i {
  color: #fff;
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.tech-card h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.tech-card:hover h4 {
  color: var(--gold-color);
}

.tech-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

/* Minimal Process Section (Sell Gold Page) */
.process-minimal-section {
  background: linear-gradient(180deg, #F9F9F9 0%, #FFFFFF 100%);
  padding: 100px 0;
}

.process-minimal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
  width: 100%;
}

.process-step-minimal {
  text-align: center;
  transition: var(--transition);
  padding: 1rem;
  position: relative;
}

.process-step-minimal:hover {
  transform: translateY(-8px);
}

.icon-circle-minimal {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
}

.icon-circle-minimal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  transform: scale(0.8);
}

.process-step-minimal:hover .icon-circle-minimal {
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  transform: scale(1.05);
  border-color: rgba(212, 175, 55, 0.3);
}

.process-step-minimal:hover .icon-circle-minimal::after {
  opacity: 1;
  transform: scale(1.2);
}

.icon-circle-minimal i {
  font-size: 2.5rem;
  color: #cfaa32;
  /* Solid gold color fallback */
  background: -webkit-linear-gradient(45deg, #F2C94C, #c5a028);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
}

.process-step-minimal h4 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process-step-minimal p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.gold-btn-shiny {
  background: linear-gradient(135deg, #eec143 0%, #d49f1d 100%);
  box-shadow: 0 15px 30px rgba(212, 160, 29, 0.3);
  color: #2A0A3B;
  font-weight: 700;
  padding: 18px 45px;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gold-btn-shiny:hover {
  box-shadow: 0 20px 40px rgba(212, 160, 29, 0.4);
  background: var(--primary-color);
  transform: translateY(-4px);
  color: var(--white) !important;
}


/* New Utilities for Sell Gold Page */
/* Mobile Nav Menu Background Fix (Restored) */
@media (max-width: 992px) {
  .nav-menu {
    background: linear-gradient(135deg, rgba(42, 10, 59, 1) 0%, rgba(28, 5, 41, 1) 100%);
  }
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-3-col {
    grid-template-columns: 1fr;
  }
}

.flex-1 {
  flex: 1;
}

.gap-4 {
  gap: 4rem;
}

.dir-row-reverse {
  flex-direction: row-reverse;
}

.rounded-img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.text-lg {
  font-size: 1.25rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .text-center-mobile {
    text-align: center;
  }

  .gap-4 {
    gap: 2rem;
  }

  .flex-mobile-column.dir-row-reverse {
    flex-direction: column;
  }
}

/* Force Header Background on Mobile to Purple */
@media (max-width: 992px) {

  header,
  header.sticky {
    background: linear-gradient(135deg, rgba(42, 10, 59, 1) 0%, rgba(28, 5, 41, 1) 100%) !important;
  }
}

/* --- Premium Floating Bar --- */
.premium-floating-bar {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  width: 95%;
  max-width: 1250px;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 12px 20px 12px 25px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.premium-floating-bar.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.bar-content-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.bar-form {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: space-between;
}

.bar-input-group {
  position: relative;
  flex: 1;
  max-width: 280px;
}

.bar-input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #cfaa32;
  font-size: 1.1rem;
  pointer-events: none;
}

.bar-input {
  width: 100%;
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 16px 20px 16px 55px;
  color: var(--white);
  font-size: 1.1rem;
  outline: none;
  transition: var(--transition);
}

.bar-input::placeholder {
  color: #888;
}

.bar-input:focus {
  background: #333;
  border-color: var(--gold-color);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.btn-sell-gold-bar {
  background: #4c1a66;
  color: white;
  padding: 16px 45px;
  border-radius: 50px;
  border: none;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0, 91, 196, 0.4);
  text-transform: none;
  margin-left: 10px;
}

.btn-sell-gold-bar:hover {
  background: #004fb1;
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 91, 196, 0.6);
}

.bar-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 20px;
}

.bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 5px;
}

.bar-whatsapp {
  background: #25D366;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.bar-whatsapp:hover {
  transform: scale(1.1);
}

.bar-phone-box {
  background: #2a2a2a;
  color: white;
  padding: 11px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  white-space: nowrap;
}

.bar-phone-box i {
  color: #cfaa32;
  font-size: 1rem;
}

.bar-phone-box:hover {
  background: #333;
}

/* Mobile Specific (Hidden on Desktop) */
.mobile-bar-panel {
  display: none;
  margin-bottom: 20px;
}

.mobile-dots,
.mobile-toggle-btn {
  display: none;
}

@media (max-width: 992px) {
  .premium-floating-bar {
    width: 94%;
    border-radius: 15px;
    padding: 12px;
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
  }

  .premium-floating-bar.active {
    opacity: 1;
    visibility: visible;
  }

  .desktop-only {
    display: none !important;
  }

  .bar-content-wrapper {
    justify-content: space-between;
  }

  .bar-actions {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .mobile-dots {
    display: block;
    color: #444;
    font-size: 1.4rem;
  }

  .mobile-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
  }

  .bar-phone-box {
    padding: 11px 12px;
    flex: 1;
    justify-content: center;
    font-size: 0.9rem;
  }

  .bar-phone-box span {
    display: inline-block !important;
  }

  .mobile-bar-panel.show {
    display: block;
    animation: slideUp 0.3s ease-out;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-bar-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-bar-form .bar-input-group {
    max-width: 100%;
    width: 100%;
  }

  .mobile-form-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn-sell-gold-mobile {
    background: #4c1a66;
    color: white;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
  }
}

/* Adjust FABs position on mobile when bar is active */
@media (max-width: 992px) {
  .mobile-fab-container.bar-active {
    bottom: 95px;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* =========================================
   Contact Section Styles - Compact Version
   ========================================= */

.contact-section-new {
  padding: 60px 0;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Left Column - Contact Info */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.header-minimal h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.header-minimal p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-detail-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-detail-card:hover .contact-icon-box {
  background: var(--gold-gradient);
  transform: scale(1.05);
}

.contact-icon-box i {
  font-size: 1.3rem;
  color: var(--gold-color);
  transition: var(--transition);
}

.contact-detail-card:hover .contact-icon-box i {
  color: var(--white);
}

.contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.contact-info-text p {
  font-size: 0.95rem;
  color: var(--grey-text);
  margin: 0;
}

/* Right Column - Contact Form */
.contact-form-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-title-wrapper {
  margin-bottom: 1.5rem;
}

.form-title-wrapper h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.underline {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.form-title-wrapper p {
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.modern-form .form-group {
  margin-bottom: 1.25rem;
}

.modern-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.modern-form .form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--white);
}

.modern-form .form-control:focus {
  outline: none;
  border-color: var(--gold-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.modern-form textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.submit-btn-premium {
  width: 100%;
  background: var(--gold-gradient);
  color: var(--primary-color);
  padding: 0.95rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.submit-btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  background: var(--primary-color);
  color: var(--white);
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Map Section */
.map-wrapper-premium {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-wrapper-premium iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-section-new {
    padding: 50px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-glass {
    padding: 1.75rem;
  }

  .map-wrapper-premium iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-section-new {
    padding: 40px 0;
  }

  .header-minimal h2 {
    font-size: 1.75rem;
  }

  .contact-detail-card {
    padding: 1rem;
  }

  .contact-icon-box {
    width: 45px;
    height: 45px;
  }

  .contact-icon-box i {
    font-size: 1.1rem;
  }

  .contact-form-glass {
    padding: 1.5rem;
  }

  .form-title-wrapper h3 {
    font-size: 1.5rem;
  }

  .modern-form .form-control {
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
  }

  .submit-btn-premium {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
  }

  .map-wrapper-premium iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-section-new {
    padding: 30px 0;
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .header-minimal h2 {
    font-size: 1.5rem;
  }

  .header-minimal p {
    font-size: 0.9rem;
  }

  .contact-detail-card {
    padding: 0.9rem;
    gap: 0.85rem;
  }

  .contact-icon-box {
    width: 42px;
    height: 42px;
  }

  .contact-info-text h4 {
    font-size: 1rem;
  }

  .contact-info-text p {
    font-size: 0.85rem;
  }

  .contact-form-glass {
    padding: 1.25rem;
  }

  .form-title-wrapper h3 {
    font-size: 1.35rem;
  }

  .modern-form .form-group {
    margin-bottom: 1rem;
  }

  .modern-form textarea.form-control {
    min-height: 90px;
  }

  .map-wrapper-premium {
    margin-top: 2rem;
  }

  .map-wrapper-premium iframe {
    height: 250px;
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  transform: translateX(-30px);
}

.animate-slide-left.animated {
  transform: translateX(0);
}

.animate-slide-right {
  transform: translateX(30px);
}

.animate-slide-right.animated {
  transform: translateX(0);
}

.animate-fade-up {
  transform: translateY(30px);
}

.animate-fade-up.animated {
  transform: translateY(0);
}

/* Justify Hero Text on Mobile */
@media (max-width: 768px) {
  .hero-content p {
    text-align: justify;
  }
}