/* 
 * Summercamp San Isidro Landing Page Design System
 * Aesthetic: Premium Outdoor, Clean Editorial, High Contrast
 */

/* Custom Fonts & Variables */
:root {
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Color Palette - Calibrated HSL */
  --color-alpine-dark: hsl(218, 57%, 14%);       /* Deep Alpine Blue */
  --color-alpine-mid:  hsl(218, 50%, 25%);
  --color-alpine-light: hsl(218, 40%, 96%);      /* Glacial White / Ice */
  --color-forest:      hsl(142, 45%, 32%);       /* Lush Forest Green */
  --color-forest-dark: hsl(142, 45%, 18%);
  --color-accent:      #55a44e;                  /* Brand Active Green */
  --color-accent-hover: #45883f;
  
  --color-text-main:   hsl(218, 30%, 20%);
  --color-text-muted:  hsl(218, 15%, 45%);
  --color-border:      hsl(218, 20%, 90%);
  
  /* Layout & Spacing */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-subtle: 0 4px 20px -2px rgba(15, 30, 54, 0.06);
  --shadow-md: 0 8px 30px -4px rgba(15, 30, 54, 0.1);
  --shadow-lg: 0 20px 40px -10px rgba(15, 30, 54, 0.15);
}

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

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

body {
  font-family: var(--font-body);
  background-color: #ffffff;
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Containers & Grid */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 600px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-alpine-dark);
  line-height: 1.15;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

p {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(85, 164, 78, 0.3);
}

.btn-accent:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
  transition: var(--transition-smooth);
  z-index: 1000;
}

.navbar.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  height: 42px;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .nav-logo {
    max-width: 210px;
    height: auto;
  }
}

.brand-net {
  color: var(--color-alpine-dark);
  font-size: 1.25rem;
}

.brand-net .dot {
  color: var(--color-accent);
}

.brand-x {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.brand-partner {
  color: var(--color-forest);
  font-size: 1.15rem;
  font-weight: 500;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 32px;
}

.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.navbar-scrolled .nav-menu a {
  color: var(--color-text-main);
}

.nav-menu a:hover {
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

/* Mobile Toggle Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.navbar-scrolled .nav-toggle {
  color: var(--color-text-main);
}

/* Mobile Menu overlay */
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 32px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.nav-mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.nav-mobile-menu a {
  text-decoration: none;
  color: var(--color-text-main);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  transition: var(--transition-smooth);
}

.nav-mobile-menu a:hover {
  color: var(--color-accent);
}

.nav-mobile-menu a.mobile-cta {
  color: #ffffff;
}

.nav-mobile-menu .mobile-cta {
  width: 100%;
  text-align: center;
  margin-top: 12px;
  padding: 12px 24px;
}

/* Language Switcher */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hide CTA button on mobile navbar */
@media (max-width: 767px) {
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.lang-switcher a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.navbar-scrolled .lang-switcher a {
  color: rgba(15, 30, 54, 0.5);
}

.lang-switcher a:hover {
  color: var(--color-accent) !important;
}

.lang-switcher a.lang-active {
  color: #ffffff;
}

.navbar-scrolled .lang-switcher a.lang-active {
  color: var(--color-text-main);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.3);
}

.navbar-scrolled .lang-sep {
  color: rgba(15, 30, 54, 0.2);
}

.mobile-lang-switcher {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}

.mobile-lang-switcher a {
  text-decoration: none;
  color: rgba(15, 30, 54, 0.5);
}

.mobile-lang-switcher a.lang-active {
  color: var(--color-text-main);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding-top: 100px; /* Cap top padding */
  padding-bottom: 40px; /* Cap bottom padding for breathing room */
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero {
    padding-bottom: 60px;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.05);
  animation: subtleZoom 20s infinite alternate ease-in-out;
}

@keyframes subtleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  background-color: var(--color-accent);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 2.75rem;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
  color: var(--color-accent);
  font-size: 0.8em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

/* Differentiating Values */
.values-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.value-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--color-forest);
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 12px;
}

/* Program Step-by-Step */
.program-section {
  background-color: var(--color-alpine-light);
  padding: 100px 0;
}

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

.section-header h2 {
  margin-bottom: 16px;
}

/* Day Tabs */
.day-tabs {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.day-tabs::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.day-tab {
  background: none;
  border: 1px solid var(--color-border);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.day-tab span {
  font-size: 0.8rem;
  text-transform: uppercase;
  display: block;
  opacity: 0.6;
}

.day-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.day-tab.active {
  background-color: var(--color-alpine-dark);
  color: #ffffff;
  border-color: var(--color-alpine-dark);
}

/* Day Content */
.day-content-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.day-content {
  display: none;
}

.day-content.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

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

.day-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .day-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.day-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .day-info {
    padding: 48px;
  }
}

.day-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: rgba(46, 111, 64, 0.1);
  color: var(--color-forest);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.day-info h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.day-description {
  margin-bottom: 24px;
}

.day-features {
  list-style: none;
  margin-bottom: 32px;
}

.day-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.day-features i {
  color: var(--color-forest);
  font-size: 1.2rem;
  margin-top: 3px;
}

.day-meta {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-main);
}

.meta-item i {
  font-size: 1.1rem;
  color: var(--color-accent);
}

.day-visual {
  min-height: 300px;
  position: relative;
}

.day-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Explore Territory Section */
.explore-section {
  padding: 100px 0;
}

.explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .explore-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.explore-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.explore-list {
  list-style: none;
}

.explore-list li {
  margin-bottom: 28px;
}

.explore-list h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.explore-list i {
  color: var(--color-accent);
}

.explore-gallery {
  display: grid;
  gap: 16px;
}

.gallery-item-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
}

.gallery-item-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-item-small {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
}

.gallery-item-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Included / Excluded Board */
.comparison-section {
  padding: 80px 0;
}

.comparison-card {
  background-color: var(--color-alpine-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--color-border);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.comparison-column h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.column-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.column-header i {
  font-size: 1.8rem;
}

.included .column-header i { color: var(--color-forest); }
.excluded .column-header i { color: var(--color-accent); }

.comparison-column ul {
  list-style: none;
}

.comparison-column li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  font-weight: 500;
}

.comparison-column li i {
  font-size: 1.2rem;
  margin-top: 4px;
}

.included li i { color: var(--color-forest); }
.excluded li i { color: var(--color-accent); }

/* Pricing Section */
.pricing-section {
  background-color: var(--color-alpine-dark);
  color: #ffffff;
  padding: 100px 0;
}

.pricing-section .section-header h2 {
  color: #ffffff;
}

.pricing-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-card {
  background-color: var(--color-alpine-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  width: 100%;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 48px;
  }
}

.pricing-card.recommended {
  border-color: var(--color-accent);
  box-shadow: 0 10px 40px rgba(85, 164, 78, 0.15);
}

.card-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: #ffffff;
  padding: 6px 20px; /* increased horizontal padding */
  min-width: 200px; /* ample width for longer text */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap; /* prevent line break */
}

/* Smaller screens: slightly reduce font size to keep badge on one line */
@media (max-width: 480px) {
  .card-badge {
    font-size: 0.7rem;
    padding: 4px 12px;
    min-width: 140px;
  }
}

/* Ensure badge never wraps on any screen */
.card-badge {
  min-width: 180px; /* ample width for longer text */
}

.pricing-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.pricing-header h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.pricing-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.pricing-price {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-price .from {
  font-size: 1.15rem;
  opacity: 0.7;
}

.pricing-price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
}

.pricing-price .period {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.pricing-features i {
  color: var(--color-accent);
  font-size: 1.1rem;
}

.pricing-card.recommended .pricing-features i {
  color: #ffffff;
}

.hover-scale:hover {
  transform: scale(1.02);
}

/* Footer & Banner */
.footer {
  background-color: hsl(218, 60%, 8%);
  color: #ffffff;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.limit-banner {
  background-color: rgba(249, 115, 22, 0.15); /* Naranjita con transparencia */
  color: #fb923c; /* Naranja legible */
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
  font-family: var(--font-display);
  font-weight: 700;
}

.limit-banner i {
  font-size: 1.5rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.footer-grid h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-grid a {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

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

.footer-socials a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

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

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

/* Scroll Animation */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* New Elements Styling */
.hero-dates {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.date-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 500;
}

.date-item i {
  color: var(--color-accent);
  font-size: 1.1rem;
}

.program-notes {
  margin-top: 32px;
  padding: 16px 24px;
  background-color: rgba(15, 30, 54, 0.03);
  border-left: 4px solid var(--color-forest);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.program-notes p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.program-notes i {
  color: var(--color-forest);
  font-size: 1.2rem;
}

/* Card Operator Styling */
.card-operator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-top: auto;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.pricing-card.recommended .card-operator {
  color: rgba(255, 255, 255, 0.7);
  border-top-color: rgba(255, 255, 255, 0.25);
}

.card-operator i {
  color: var(--color-accent);
  font-size: 1rem;
}

.pricing-card.recommended .card-operator i {
  color: #ffffff;
}

/* Pricing Turn Tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-tab {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-tab i {
  font-size: 1.1rem;
  opacity: 0.7;
}

.pricing-tab:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.pricing-tab.active {
  background-color: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 15px rgba(85, 164, 78, 0.25);
}

.pricing-tab.active i {
  opacity: 1;
}

/* Pricing Card Dates Tag */
.pricing-dates-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
  align-self: flex-start;
}

.pricing-card.recommended .pricing-dates-tag {
  background-color: rgba(85, 164, 78, 0.1);
  border-color: rgba(85, 164, 78, 0.15);
  color: #ffffff;
}

.pricing-dates-tag i {
  color: var(--color-accent);
  font-size: 1rem;
}

.pricing-card.recommended .pricing-dates-tag i {
  color: #ffffff;
}



