/* ========================================
   SAFOOD - Pricing Page
   Complete Responsive CSS
   ======================================== */

:root {
  --dark-brown: #2C2416;
  --gold: #B8954A;
  --light-gold: #D4B575;
  --cream: #FBF8F0;
  --beige: #F6EEDB;
  --text-dark: #2C2416;
  --text-medium: #6B5D4F;
  --text-light: #D4C7B5;
  --text-gray: #968778;
  --white: #FFFFFF;
  --border-light: #EAE3D5;
  --font-inter: 'Inter', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --max-width: 1512px;
  --container-padding: 104px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-inter);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  /*padding-bottom: 100px;*/
}
.text-center { text-align: center; }

/* ===== BADGE & SECTION HEADERS ===== */
.badge {
  display: inline-block;
  background: #FFF8E7;
  border: 1px solid rgba(184, 149, 74, 0.30);
  border-radius: 100px;
  padding: 9px 20px;
  color: #B8954A;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  margin-bottom: 24px;
}
.badge-light {
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: var(--white);
}
.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.35px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-dark { color: var(--text-dark); }
.title-gold { color: var(--gold); }
.title-white { color: var(--white); }
.title-light { color: rgba(255, 255, 255, 0.7); }
.section-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 768px;
  margin: 0 auto;
}
.section-subtitle-light {
  color: rgba(255, 255, 255, 0.7);
}
.section-header { margin-bottom: 80px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #B5911C 0%, #B7931A 50%, #9D7A26 100%);
  color: var(--white);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(184, 149, 74, 0.3);
}
.btn-white {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid #FAF5E8;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-white-outline {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid rgba(255, 255, 255, 0.30);
}
.btn-link {
  color: var(--white);
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-gold {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 100px;
  color: var(--gold);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-full { width: 100%; margin-bottom: 32px; }

/* ===== NAVIGATION ===== */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.01);
  padding: 20px 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.logo-gold { color: var(--gold); letter-spacing: 0.07px; }
.logo-white { color: var(--white); }
.logo-dark { color: var(--text-dark); }
.nav-menu {
  display: flex;
  gap: 32px;
}
.nav-menu a {
  color: var(--white);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-menu a.active,
.nav-menu a:hover {
  color: var(--gold);
  font-weight: 700;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.language-selector {
  color: var(--white);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  cursor: pointer;
}
.language-selector span{
    display: flex;
    align-items: center;
    gap: 5px; /* icon aur EN ke darmiyan space */
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}
/* change 1 - mobile menu ma actions hide karne ke liye */
.mobile-only-actions {
  display: none;
}
/* ===== HERO SECTION ===== */
.hero {
  min-height: 879px;
  position: relative;
  padding-top: 151px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../Assets/Image/Image (Desert landscape) (2).png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, #2C2416 0%, rgba(44, 36, 22, 0.80) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.60;
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 176px;
}
.hero-content {
  width: 100%;
  max-width: 932px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 31px;
}
.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 90px;
  letter-spacing: 0.12px;
  color: var(--white);
}
.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  color: var(--text-light);
  width: 100%;
  max-width: 498px;
}

/* ===== PRICING SECTION ===== */
.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}
.compare-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-montserrat);
}
.pricing {
  padding: 100px 0;
  background: var(--cream);
}
.pricing-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.business-toggle {
  display: flex;
  background: var(--white);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid var(--border-light);
}
.toggle-btn {
  padding: 12px 28px;
  background: transparent;
  border: none;
  border-radius: 12px;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.3s ease;
}
.toggle-btn.active {
  background: var(--gold);
  color: var(--white);
}
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  /* padding: 4px 12px; */
  padding: 0px 12px 0px 0px;
  border-radius: 30px;
  border: 2px solid var(--border-light);
}
html[dir="rtl"] .billing-toggle {
  padding: 4px 12px;
}
.billing-btn {
  background: transparent;
  border: none;
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;

}
.billing-btn.active {
  color: white;
  background-color: black;
  border-radius: 30px;
  padding: 14px 22px;
  font-weight: 600;
}

.save-badge {
  background: linear-gradient(135deg, #71C6D1 0%, #4EBA74 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}



/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.pricing-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 20px 40px rgba(184, 149, 74, 0.15);
  transform: scale(1.03);
  z-index: 1;
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.popular-badge {
  position: absolute;
  top: -14px;
  /* left: 50%; */
  left:37%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 20px;
}
.plan-name {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.plan-desc {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 24px;
  margin-bottom: 24px;
}
.currency-icon {
  margin-right: 5px;
}
.plan-price {
  display: flex;
  align-items: end;
  /* gap: 6px; */
  margin-bottom: 24px;
}
.price-amount {
  display: flex;
  align-items: center;
  font-size: 50px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
}
.price-currency {
  font-size: 16px;
  color: var(--text-medium);
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-medium);
  font-size: 16px;
}

.plan-price img{
  width: 24px;
  height: 24px;
  /* filter: invert(36%) sepia(43%) saturate(421%) hue-rotate(6deg); */
  /* background: var(--gold); */
  /* border-radius: 100px; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-features .check-icon {
  width: 24px;
  height: 24px;
  filter: invert(36%) sepia(43%) saturate(421%) hue-rotate(6deg);
  /* background: var(--gold); */
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.plan-features .check-icon img {
  width: 100%;
}
.plan-features .check-icon::after {
  /*content: '';*/
  width: 9.33px;
  height: 6.67px;
  border: 2px solid var(--white);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}
.plan-features .divider {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border-light);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 100px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  padding: 33px;
  background: #FDFBF6;
  border-radius: 24px;
  border: 1px solid #FAF5E8;
  display: flex;
  flex-direction: column;
  /* gap: 32px; */
  gap: 12px;
  /* align-items: center;
  text-align: center; */
}
.feature-image {
  width: 100%;
  /*height: 200px;*/
  /*background: var(--cream);*/
  border-radius: 20px;
  display: flex;
  padding-bottom: 20px;
  /* align-items: center;
  justify-content: center; */
}
.feature-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-compliance { background: linear-gradient(180deg, var(--light-gold) 0%, var(--gold) 100%); }
.icon-pos { background: linear-gradient(180deg, var(--gold) 0%, var(--light-gold) 100%); }
.icon-payment { background: linear-gradient(180deg, var(--light-gold) 0%, var(--gold) 100%); }
.icon-reports { background: linear-gradient(180deg, var(--gold) 0%, var(--light-gold) 100%); }
.icon-inventory { background: linear-gradient(180deg, var(--light-gold) 0%, var(--gold) 100%); }
.icon-support { background: linear-gradient(180deg, var(--gold) 0%, var(--light-gold) 100%); }
.icon-compliance::after,
.icon-pos::after,
.icon-payment::after,
.icon-reports::after,
.icon-inventory::after,
.icon-support::after {
  /*content: '';*/
  width: 24px;
  height: 24px;
  border: 2px solid var(--white);
  border-radius: 6px;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 28px;
}
.feature-card p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 26px;
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.3s ease;
}
/* .faq-question:hover {
  background: var(--beige);
} */
/* .faq-question.active {
  color: var(--gold);
} */
 /* ✅ jab active ho tab color show ho */
.faq-question.active {
  background: var(--beige);
  color: var(--gold);
}
.faq-toggle {
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
 .faq-toggle::after {
  /*content: '';*/  
  /* width: 10px;
  height: 6px;
  border: 2px solid var(--white);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  transition: transform 0.3s ease; */
} 
.faq-toggle img {
  transition: transform 0.3s ease;
}
.faq-question.active .faq-toggle img {
  transform: rotate(180deg);
}
.faq-question.active .faq-toggle::after {
  transform: rotate(135deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-answer.show {
  max-height: 200px;
  padding: 10px 24px 20px;
}
.faq-answer p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
}

/* ===== SUPPORT SECTION ===== */
.support {
  min-height: 800px;
  background: linear-gradient(135deg, var(--gold) 0%, #C4A563 50%, var(--light-gold) 100%);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.support::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, var(--dark-brown) 0%, rgba(44, 36, 22, 0.90) 30%, rgba(44, 36, 22, 0.60) 100%);
}
.support .container {
  position: relative;
  z-index: 1;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.support-card {
  padding: 33px;
  background: rgba(255,255,255,0.2);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}
.support-icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--light-gold) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-icon-box::after {
  /*content: '';*/
  width: 24px;
  height: 24px;
  border: 2px solid var(--white);
  border-radius: 6px;
}
.support-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.support-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 24px;
  min-height: 72px;
}
.support-badge {
  display: inline-flex;
  padding: 11px 21px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  align-self: flex-start;
  margin-top: auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
  min-height: 999px;
  background: linear-gradient(135deg, #B8954A 0%, #C4A563 50%, #D4B575 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #2C2416 0%, rgba(44, 36, 22, 0.90) 30%, rgba(44, 36, 22, 0.60) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 1176px;
  margin: 0 auto;
  padding: 130px 0;
}
.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 100px;
  padding: 11px 21px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 32px;
}
.cta-badge span {
    display: flex;
    align-items: center;
    gap: 5px; /* icon aur EN ke darmiyan space */
}
.cta-content h2 {
  font-size: 72px;
  font-weight: 700;
  line-height: 90px;
  color: var(--white);
  margin-bottom: 24px;
}
.cta-content > p {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.90);
  line-height: 39px;
  letter-spacing: 0.07px;
  margin-bottom: 70px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.cta-form {
  display: flex;
  gap: 16px;
  max-width: 672px;
  margin: 0 auto 60px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 8px;
}
.input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 24px;
}
.input-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-family: var(--font-inter);
  outline: none;
}
.input-wrapper input::placeholder { color: rgba(255, 255, 255, 0.60); }
.cta-form .btn-white {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.10), 0px 20px 25px -5px rgba(0, 0, 0, 0.10);
}
.cta-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  margin-bottom: 48px;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 16px;
}
.check-icon-white {
  width: 20px;
  height: 20px;
  border: 1.67px solid rgba(255, 255, 255, 0.90);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon-white::after {
  /*content: '';*/
  width: 5px;
  height: 3.33px;
  border: 1.67px solid rgba(255, 255, 255, 0.90);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 0;
  background: var(--cream);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand { width: 402.66px; }
.footer-brand p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 26px;
  margin: 16px 0 24px;
}
.social-links { display: flex; gap: 12px; }
.social-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #B8954A 0%, #D4B575 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-links { display: flex; gap: 60px; }
.footer-column h4 {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 16px;
}
.footer-column ul { display: flex; flex-direction: column; gap: 12px; }
.footer-column a,
.footer-column li {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 20px;
}
.footer-column a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(223.07, 212.32, 196.69, 0.40);
}
.footer-bottom p {
  color: var(--text-medium);
  font-size: 14px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  color: var(--text-medium);
  font-size: 14px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1400px) {
  :root { --container-padding: 60px; }
  .hero-container { gap: 100px; }
  .features-grid,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1199px) {
  :root { --container-padding: 40px; }
  .hero-title { font-size: 56px; line-height: 70px; }
  .hero-subtitle { font-size: 18px; width: 100%; }
  .section-title { font-size: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
  .footer-brand { width: 100%; }
  .footer-links { justify-content: space-between; }
}

@media (max-width: 767px) {
  :root { --container-padding: 24px; }
  
  /* Navigation Mobile */
  .nav-menu {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--dark-brown);
    flex-direction: column;
    padding: 40px;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .nav-menu.active { transform: translateX(0); }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
  /* change 2 - desktop nav-actions hide, mobile-only-actions show */
  .nav-actions {
    display: none !important;
  }
  
  .mobile-only-actions {
    display: none;
    padding: 20px 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
  }
  
  .nav-menu.active .mobile-only-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  /* change 3 - mobile language selector styling */
  .mobile-lang-selector {
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 16px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .mobile-lang-selector .lang-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    margin: 8px 0 0;
    min-width: 120px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  
  .mobile-lang-selector.active .lang-options {
    display: block;
  }
  
  .mobile-lang-selector .lang-options li {
    padding: 10px 16px;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
    text-align: center;
  }
  
  .mobile-lang-selector .lang-options li:hover {
    background: rgba(255,255,255,0.1);
  }
  
  .mobile-lang-selector .lang-options li.active {
    color: #d4af37;
  }
  
  /* change 4 - mobile button styling */
  .mobile-get-started {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  /* RTL support for mobile lang dropdown */
  html[dir="rtl"] .mobile-lang-selector .lang-options {
    left: 50%;
    right: auto;
  }
  
  /* Hero */
  .hero { padding-top: 120px; min-height: auto; padding-bottom: 120px; }
  .hero-container { flex-direction: column; gap: 60px; }
  .hero-content { width: 100%; }
  .hero-title { font-size: 40px; line-height: 50px; }
  .hero-subtitle { font-size: 16px; line-height: 26px; }
  
  /* Sections */
  .section-title { font-size: 32px; line-height: 40px; }
  .section-subtitle { font-size: 16px; }
  .pricing-controls { flex-direction: column; gap: 20px; }
  .business-toggle, .billing-toggle { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 16px; padding: 20px; }
  
  .cta-content h2 { font-size: 48px; line-height: 60px; }
  /*.cta-form { flex-direction: column; }*/
  .cta-features { flex-direction: column; gap: 16px; }
  
  .footer-links { flex-direction: column; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 479px) {
  .hero-title { font-size: 32px; line-height: 42px; }
  .section-title { font-size: 28px; }
  .cta-content h2 { font-size: 36px; line-height: 46px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .plan-price .price-amount { font-size: 36px; }
  .pricing-card { padding: 30px; }
}

/* ========================================
   ADVANCED ANIMATIONS - PRICING PAGE
   ======================================== */

/* ===== KEYFRAME ANIMATIONS ===== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px currentColor;
  }
  50% {
    box-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
  }
}

@keyframes morph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

@keyframes rubberBand {
  0% {
    transform: scaleX(1) scaleY(1);
  }
  30% {
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    transform: scaleX(0.75) scaleY(1.25);
  }
  50% {
    transform: scaleX(1.15) scaleY(0.85);
  }
  65% {
    transform: scaleX(0.95) scaleY(1.05);
  }
  75% {
    transform: scaleX(1.05) scaleY(0.95);
  }
  100% {
    transform: scaleX(1) scaleY(1);
  }
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes wobble {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes jello {
  0%, 11.1%, 100% {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

/* ===== ANIMATION CLASSES ===== */

.animate {
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }
.animate-delay-800 { animation-delay: 0.8s; }
.animate-delay-900 { animation-delay: 0.9s; }
.animate-delay-1000 { animation-delay: 1s; }

.fade-in-up { animation-name: fadeInUp; }
.fade-in-down { animation-name: fadeInDown; }
.fade-in-left { animation-name: fadeInLeft; }
.fade-in-right { animation-name: fadeInRight; }
.scale-in { animation-name: scaleIn; }
.bounce-in { animation-name: bounceIn; }
.float { animation-name: float; animation-duration: 3s; animation-iteration-count: infinite; }
.pulse { animation-name: pulse; animation-duration: 2s; animation-iteration-count: infinite; }
.rotate { animation-name: rotate; animation-duration: 2s; animation-iteration-count: infinite; }
.shimmer { animation-name: shimmer; animation-duration: 2s; animation-iteration-count: infinite; }
.glow { animation-name: glow; animation-duration: 2s; animation-iteration-count: infinite; }
.morph { animation-name: morph; animation-duration: 8s; animation-iteration-count: infinite; }
.gradient-shift { animation-name: gradientShift; animation-duration: 3s; animation-iteration-count: infinite; }
.heart-beat { animation-name: heartBeat; animation-duration: 1.3s; animation-iteration-count: infinite; }
.rubber-band { animation-name: rubberBand; }
.swing { animation-name: swing; transform-origin: top center; }
.tada { animation-name: tada; }
.wobble { animation-name: wobble; }
.jello { animation-name: jello; }

/* ===== HOVER ANIMATIONS ===== */

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-rotate {
  transition: transform 0.3s ease;
}
.hover-rotate:hover {
  transform: rotate(5deg);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}
.hover-glow:hover {
  box-shadow: 0 0 20px currentColor;
}

.hover-shake:hover {
  animation: shake 0.5s ease-in-out;
}

.hover-pulse:hover {
  animation: pulse 0.5s ease-in-out;
}

.hover-bounce:hover {
  animation: bounceIn 0.5s ease-in-out;
}

.hover-swing:hover {
  animation: swing 0.5s ease-in-out;
  transform-origin: top center;
}

.hover-tada:hover {
  animation: tada 0.5s ease-in-out;
}

.hover-wobble:hover {
  animation: wobble 0.5s ease-in-out;
}

.hover-jello:hover {
  animation: jello 0.5s ease-in-out;
}

.hover-rubber-band:hover {
  animation: rubberBand 0.5s ease-in-out;
}

.hover-heart-beat:hover {
  animation: heartBeat 0.5s ease-in-out;
}

/* ===== SCROLL TRIGGERED ANIMATIONS ===== */

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }
.stagger-9 { transition-delay: 0.9s; }
.stagger-10 { transition-delay: 1s; }

/* ===== ENHANCED ELEMENT ANIMATIONS ===== */

/* Navigation Animations */
.navbar {
  animation: fadeInDown 0.8s ease-out;
}

.nav-menu a {
  position: relative;
  overflow: hidden;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero Section Animations */
.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Badge Animations */
.badge {
  animation: fadeInDown 0.6s ease-out;
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: scale(1.05);
}

/* Section Title Animations */
.section-title {
  animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Button Animations */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
}

/* Pricing Controls Animations */
.pricing-controls {
  animation: fadeInUp 0.8s ease-out;
}

.business-toggle {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
  transition: transform 0.3s ease;
}

.business-toggle:hover {
  transform: scale(1.02);
}

.billing-toggle {
  animation: fadeInRight 0.8s ease-out 0.3s both;
  transition: transform 0.3s ease;
}

.billing-toggle:hover {
  transform: scale(1.02);
}

.toggle-btn {
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  transform: scale(1.05);
}

.billing-btn {
  transition: all 0.3s ease;
}

.billing-btn:hover {
  transform: scale(1.05);
}

.save-badge {
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.save-badge:hover {
  animation: none;
  transform: scale(1.1);
}

/* Pricing Card Animations */
.pricing-card {
  animation: fadeInUp 0.8s ease-out both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  animation: scaleIn 0.8s ease-out 0.2s both;
}

.popular-badge {
  animation: bounceIn 0.8s ease-out 0.4s both;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.popular-badge:hover {
  transform: scale(1.1);
}

.plan-name {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.plan-desc {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.plan-price {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.price-amount {
  animation: bounceIn 0.8s ease-out 0.6s both;
}

.plan-features li {
  animation: fadeInLeft 0.5s ease-out both;
  transition: transform 0.3s ease;
}

.plan-features li:nth-child(1) { animation-delay: 0.7s; }
.plan-features li:nth-child(2) { animation-delay: 0.8s; }
.plan-features li:nth-child(3) { animation-delay: 0.9s; }
.plan-features li:nth-child(4) { animation-delay: 1s; }
.plan-features li:nth-child(5) { animation-delay: 1.1s; }
.plan-features li:nth-child(6) { animation-delay: 1.2s; }
.plan-features li:nth-child(7) { animation-delay: 1.3s; }
.plan-features li:nth-child(8) { animation-delay: 1.4s; }
.plan-features li:nth-child(9) { animation-delay: 1.5s; }
.plan-features li:nth-child(10) { animation-delay: 1.6s; }
.plan-features li:nth-child(11) { animation-delay: 1.7s; }
.plan-features li:nth-child(12) { animation-delay: 1.8s; }
.plan-features li:nth-child(13) { animation-delay: 1.9s; }
.plan-features li:nth-child(14) { animation-delay: 2s; }
.plan-features li:nth-child(15) { animation-delay: 2.1s; }

.plan-features li:hover {
  transform: translateX(10px);
}

.plan-features .check-icon {
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.plan-features li:hover .check-icon {
  animation: none;
  transform: scale(1.2);
}

/* Feature Card Animations */
.feature-card {
  animation: fadeInUp 0.8s ease-out both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-box {
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  animation: none;
  transform: scale(1.2) rotate(10deg);
}

/* FAQ Animations */
.faq-item {
  animation: fadeInUp 0.6s ease-out both;
  transition: transform 0.3s ease;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

.faq-item:hover {
  transform: translateX(5px);
}

.faq-question {
  transition: all 0.3s ease;
}

.faq-question:hover {
  transform: scale(1.02);
}

.faq-toggle {
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.faq-question:hover .faq-toggle {
  animation: none;
  transform: scale(1.1);
}

/* Support Card Animations */
.support-card {
  animation: fadeInUp 0.8s ease-out both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:nth-child(1) { animation-delay: 0.1s; }
.support-card:nth-child(2) { animation-delay: 0.2s; }
.support-card:nth-child(3) { animation-delay: 0.3s; }

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.support-icon-box {
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.support-card:hover .support-icon-box {
  animation: none;
  transform: scale(1.2) rotate(10deg);
}

.support-badge {
  animation: fadeInDown 0.6s ease-out 0.4s both;
  transition: transform 0.3s ease;
}

.support-badge:hover {
  transform: scale(1.05);
}

/* CTA Section Animations */
.cta-content {
  animation: fadeInUp 1s ease-out;
}

.cta-badge {
  animation: fadeInDown 0.8s ease-out 0.2s both;
}

.cta-content h2 {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-content > p {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-form {
  animation: fadeInUp 1s ease-out 0.5s both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cta-feature {
  animation: fadeInUp 0.6s ease-out both;
  transition: transform 0.3s ease;
}

.cta-feature:nth-child(1) { animation-delay: 0.6s; }
.cta-feature:nth-child(2) { animation-delay: 0.7s; }
.cta-feature:nth-child(3) { animation-delay: 0.8s; }

.cta-feature:hover {
  transform: translateY(-3px);
}

.cta-buttons .btn {
  animation: fadeInUp 0.6s ease-out both;
}

.cta-buttons .btn:nth-child(1) { animation-delay: 0.9s; }
.cta-buttons .btn:nth-child(2) { animation-delay: 1s; }

/* Footer Animations */
.footer-brand {
  animation: fadeInLeft 0.8s ease-out;
}

.footer-column {
  animation: fadeInUp 0.8s ease-out both;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column a {
  position: relative;
  overflow: hidden;
}

.footer-column a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.footer-column a:hover::after {
  width: 100%;
}

.social-icon {
  animation: bounceIn 0.6s ease-out both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:nth-child(1) { animation-delay: 0.1s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.3s; }
.social-icon:nth-child(4) { animation-delay: 0.4s; }

.social-icon:hover {
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.footer-legal a {
  position: relative;
  overflow: hidden;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.footer-legal a:hover::after {
  width: 100%;
}

/* Logo Animation */
.logo {
  animation: fadeInDown 0.8s ease-out;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Language Selector Animation */
.language-selector {
  transition: transform 0.3s ease;
}

.language-selector:hover {
  transform: scale(1.05);
}

/* Input Focus Animation */
.input-wrapper input {
  transition: all 0.3s ease;
}

.input-wrapper input:focus {
  transform: scale(1.02);
}

/* Hamburger Animation */
.hamburger span {
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  animation: rotate 0.3s ease forwards;
}

.hamburger.active span:nth-child(2) {
  animation: fadeOut 0.3s ease forwards;
}

.hamburger.active span:nth-child(3) {
  animation: rotate 0.3s ease reverse forwards;
}

/* Check Icon Animation */
.check-icon-white {
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.cta-feature:hover .check-icon-white {
  animation: none;
  transform: scale(1.2);
}

/* ===== RESPONSIVE ANIMATION ADJUSTMENTS ===== */

@media (max-width: 767px) {
  .animate {
    animation-duration: 0.6s;
  }
  
  .hero-content,
  .hero-title,
  .hero-subtitle {
    animation-duration: 0.8s;
  }
  
  .pricing-card,
  .feature-card,
  .support-card,
  .faq-item {
    animation-duration: 0.6s;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Language Selector Dropdown */
.language-selector {
  color: var(--white);
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  cursor: pointer;
  position: relative;
}
.language-selector .lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
}
.language-selector .lang-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    margin: 8px 0 0;
    min-width: 120px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.language-selector.active .lang-options {
    display: block;
}
.language-selector .lang-options li {
    padding: 10px 16px;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
}
.language-selector .lang-options li:hover {
    background: rgba(255,255,255,0.1);
}
.language-selector .lang-options li.active {
    color: #d4af37;
}

/* RTL Support */
html[dir="rtl"] {
  text-align: right;
}
html[dir="rtl"] .nav-menu {
  text-align: right;
}
html[dir="rtl"] .nav-menu li {
  text-align: right;
}
html[dir="rtl"] .nav-menu li a {
  text-align: right;
  display: block;
}
html[dir="rtl"] .language-selector .lang-options {
  right: auto;
  left: 0;
}
html[dir="rtl"] .pricing-controls {
  flex-direction: row-reverse;
}
html[dir="rtl"] .pricing-header {
  text-align: center;
}
html[dir="rtl"] .pricing-grid {
  flex-direction: row-reverse;
}
html[dir="rtl"] .support-grid {
  flex-direction: row-reverse;
}
html[dir="rtl"] .faq-item {
  text-align: right;
}
html[dir="rtl"] .billing-toggle {
  padding: 0px 0px 0px 12px;
}
html[dir="rtl"] .footer-grid {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-links {
  text-align: right;
}