/* ==========================================================================
   LUXURY CAR RENTAL - PREMIUM DESIGN SYSTEM (AutoRent Replica & Enhancement)
   ========================================================================== */

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

:root {
  /* Palette Colori Esclusiva: Deep Obsidian & Royal Emerald Gold */
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: rgba(26, 35, 51, 0.7);
  --bg-glass: rgba(17, 24, 39, 0.85);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(16, 185, 129, 0.5);

  /* Colori Accento Differenziati dal Template Originale (Invece di arancione standard) */
  --accent-primary: #10b981; /* Smeraldo Lusso / Emerald Glow */
  --accent-primary-hover: #059669;
  --accent-gold: #f59e0b;    /* Oro Reale / Royal Gold */
  --accent-gold-hover: #d97706;
  --accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 50%, #34d399 100%);
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

  /* Testi */
  --text-main: #ffffff;
  --text-muted: #9ca3af;
  --text-dark: #0f172a;

  /* Ombre & Bagliori */
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  --glow-emerald: 0 0 25px rgba(16, 185, 129, 0.3);
  --glow-gold: 0 0 25px rgba(245, 158, 11, 0.3);

  /* Transizioni e Raggi */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 40%);
  background-attachment: fixed;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ==========================================================================
   UTILITY CLASSES & COMPONENTS
   ========================================================================== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  background: linear-gradient(135deg, #fef3c7 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-main);
  box-shadow: var(--glow-emerald);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.5);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-weight: 700;
  box-shadow: var(--glow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(10, 14, 23, 0.9);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-glass);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--glow-emerald);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   HERO WITH FULL BACKGROUND WRAPPER
   ========================================================================== */
.hero-bg-wrapper {
  position: relative;
  background-image: 
    linear-gradient(90deg, rgba(10, 14, 23, 0.90) 0%, rgba(10, 14, 23, 0.65) 45%, rgba(10, 14, 23, 0.05) 100%),
    url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-glass);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-text {
  background: transparent;
  padding: 0;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-text h1 {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.15rem;
  color: #e2e8f0;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--accent-primary);
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-car-img {
  width: 110%;
  max-width: 650px;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,0.8));
  animation: floatCar 6s ease-in-out infinite;
  z-index: 2;
}

.hero-glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  z-index: 1;
}

@keyframes floatCar {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

/* ==========================================================================
   SEARCH & FILTER BAR (Floating)
   ========================================================================== */
.search-section {
  position: relative;
  z-index: 10;
  margin-top: -50px;
}

.search-box {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(24px);
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 20px;
  align-items: center;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 14px;
  color: var(--accent-primary);
  font-size: 1.1rem;
}

.form-control {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.08);
}

.form-control option {
  background: var(--bg-secondary);
  color: var(--text-main);
}

/* ==========================================================================
   FLEET / CATALOG SECTION
   ========================================================================== */
.fleet-section {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

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

/* Category Filter Pills */
.filter-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.pill-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  font-weight: 500;
  transition: var(--transition-fast);
}

.pill-btn:hover, .pill-btn.active {
  background: var(--accent-primary);
  color: #ffffff;
  border-color: var(--accent-primary);
  box-shadow: var(--glow-emerald);
}

/* Fleet Grid */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.car-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.car-image-container {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}

.car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.car-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 14, 23, 0.8);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.car-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 14, 23, 0.8);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fbbf24;
}

.car-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.car-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.car-type {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.car-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.spec-item i {
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.spec-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.car-price {
  display: flex;
  flex-direction: column;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   WHY CHOOSE US / FEATURES
   ========================================================================== */
.features-section {
  padding: 100px 0;
  background: rgba(17, 24, 39, 0.4);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-box {
  padding: 36px 28px;
  text-align: center;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px auto;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-primary);
  transition: var(--transition-smooth);
}

.feature-box:hover .feature-icon {
  background: var(--accent-primary);
  color: #ffffff;
  transform: rotateY(360deg);
  box-shadow: var(--glow-emerald);
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   BOOKING MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  width: 90%;
  max-width: 650px;
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.close-modal:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #06090f;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col p {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text-main);
}

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

.footer-links a {
  color: var(--text-muted);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    margin: 0 auto;
  }
  .hero-text p {
    margin: 0 auto 36px auto;
  }
  .hero-btns, .hero-stats {
    justify-content: center;
  }
  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero-text h1 {
    font-size: 2.6rem;
  }
  .search-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   LANGUAGE SWITCHER DROPDOWN & MODAL
   ========================================================================== */
.lang-dropdown-menu {
  position: absolute;
  top: 120%;
  right: 0;
  width: 200px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-fast);
  z-index: 2500;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  border: 1px solid var(--border-glass);
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(20px);
}

.lang-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: transparent;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.lang-dropdown-menu button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-primary);
}

.lang-grid-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  text-align: left;
  cursor: pointer;
}

.lang-grid-item:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.lang-flag {
  font-size: 1.4rem;
}

/* ==========================================================================
   CONCIERGE BOT WINDOW (Mock Assistant)
   ========================================================================== */
.concierge-bot-window {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 350px;
  max-width: calc(100vw - 48px);
  background: rgba(10, 14, 23, 0.98);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.concierge-bot-window.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.bot-header {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--glow-emerald);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
}

.btn-close-bot {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  padding: 4px;
  cursor: pointer;
}

.bot-body {
  padding: 16px;
  max-height: 360px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bot-msg {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: 16px;
  border-top-left-radius: 4px;
  color: var(--text-main);
  font-size: 0.9rem;
}

.bot-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.bot-card-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: rgba(10, 14, 23, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  transition: var(--transition-fast);
}

.bot-card-link:hover {
  border-color: var(--accent-primary);
  transform: translateX(4px);
}

.bot-card-link strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.bot-card-link span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.bot-footer {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-glass);
  display: flex;
  gap: 10px;
}

#botInputText {
  flex: 1;
  background: rgba(10, 14, 23, 0.8);
  border: 1px solid var(--border-glass);
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

#botInputText:focus {
  border-color: var(--accent-primary);
}

/* ==========================================================================
   RESPONSIVE MOBILE NAVIGATION (iPhone & Smartphone)
   ========================================================================== */
.mobile-menu-btn {
  display: none;
}

.mobile-floating-phone {
  display: none;
}

@media (max-width: 991px) {
  .mobile-menu-btn {
    display: inline-flex;
    padding: 10px 14px;
  }

  .nav-phone-btn {
    display: none !important;
  }

  .mobile-floating-phone {
    display: flex !important;
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: var(--accent-gradient) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.6) !important;
    z-index: 99999 !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    cursor: pointer !important;
    transition: transform 0.2s ease !important;
  }
  .mobile-floating-phone i {
    font-size: 1.6rem !important;
  }

  .nav-area-btn {
    padding: 10px 14px !important;
  }
  .nav-area-btn #navAreaText {
    display: none !important;
  }

  .nav-actions {
    gap: 10px !important;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-glass);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    display: none;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 1.15rem;
    width: 100%;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero, .hero-content {
    display: contents !important;
  }

  .hero-subtitle {
    display: none !important;
  }

  .hero-text {
    order: 1 !important;
    padding-top: 120px !important;
    padding-bottom: 20px !important;
  }

  .search-section {
    order: 2 !important;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
  }

  .hero-visual {
    order: 3 !important;
    margin-bottom: 40px !important;
  }

  .hero-bg-wrapper {
    display: flex !important;
    flex-direction: column !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 130% 520px !important;
    background-repeat: no-repeat !important;
    background-color: #0a0e17 !important;
    background-image: 
      linear-gradient(180deg, rgba(10, 14, 23, 0.15) 0%, rgba(10, 14, 23, 0.20) 280px, rgba(10, 14, 23, 0.85) 420px, #0a0e17 520px),
      url('hero-bg.jpg') !important;
  }
}

/* ==========================================================================
   PARTNERS PAGE STYLES (Leadership Grid & Collaboration Plan)
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.team-avatar-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 4px;
  background: var(--accent-gradient);
  margin-bottom: 20px;
  box-shadow: var(--glow-emerald);
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-primary);
}

.team-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.team-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.team-socials {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.team-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #fff;
  transition: var(--transition-fast);
}

.team-social-btn:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--glow-emerald);
}

.team-social-btn.linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  box-shadow: 0 0 20px rgba(10, 102, 194, 0.4);
}

/* Plan Cards */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

.plan-card {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.plan-card.featured {
  border: 1px solid var(--accent-gold);
  background: rgba(245, 158, 11, 0.06);
  box-shadow: var(--glow-gold);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--gold-gradient);
  color: #000;
}

/* ==========================================================================
   VIP SERVICES SECTION
   ========================================================================== */
.vip-services-section {
  padding: 100px 0;
  background: radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
  border-top: 1px solid var(--border-glass);
}

.vip-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.vip-service-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.vip-service-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.15);
}

.vip-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.15);
  transition: var(--transition-fast);
}

.vip-service-card:hover .vip-service-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--gold-gradient);
  color: #000;
}

.vip-service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.vip-service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}


