/* ============================================================
   feegomail.com — Landing Page Stylesheet
   Color palette: Dark Green / Dark Gold / Cream
   ============================================================ */

/* ============================================================
   1. CSS Variables
   ============================================================ */
:root {
  --green:       #1B4332;
  --green-light: #2D6A4F;
  --gold:        #B8860B;
  --gold-light:  #DAA520;
  --cream:       #FDF8F0;
  --cream-dark:  #F5EDE0;
  --text:        #1A1A1A;
  --text-muted:  #555555;
  --white:       #FFFFFF;

  --radius:    8px;
  --radius-lg: 12px;

  --shadow:    0 2px 8px rgba(27, 67, 50, 0.10);
  --shadow-lg: 0 8px 32px rgba(27, 67, 50, 0.18);

  --font-en: 'Inter', sans-serif;
  --font-ar: 'Noto Sans Arabic', sans-serif;
}

/* ============================================================
   2. Reset + Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-en);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ============================================================
   3. RTL Base
   ============================================================ */
html[dir="rtl"] body {
  font-family: var(--font-ar);
}

/* ============================================================
   4. Typography
   ============================================================ */
h1 { font-size: 2.75rem; font-weight: 800; line-height: 1.15; }
h2 { font-size: 2rem;    font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.35; }
h4 { font-size: 1rem;    font-weight: 600; }

p { color: var(--text-muted); }

/* ============================================================
   5. Utility Classes
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   6. Header / Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--green);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.20);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  height: 64px;
}

/* Logo */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.logo-word {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-dot {
  color: var(--gold-light);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: var(--white);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-lang {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-lang:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Hide AR text by default (LTR), show EN text */
.lang-ar { display: none; }
html[dir="rtl"] .lang-en { display: none; }
html[dir="rtl"] .lang-ar { display: inline; }

.btn-login {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-login:hover {
  color: var(--gold-light);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile drawer */
.nav-mobile {
  display: none;
  background-color: var(--green);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile:not([hidden]) {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-mobile ul li a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}

.nav-mobile ul li a:hover {
  color: var(--white);
}

.nav-mobile ul li a.btn-primary {
  margin-top: 0.5rem;
  text-align: center;
  border-bottom: none;
}

.nav-mobile .btn-lang {
  margin-top: 1rem;
  width: 100%;
}

/* ============================================================
   7. Hero Section
   ============================================================ */
.hero-section {
  background-color: var(--green);
  padding: 5rem 1.5rem 7rem;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  margin-inline: auto;
}

#hero-title,
.hero-section h1 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Domain search form */
.search-form {
  max-width: 640px;
  margin-inline: auto;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.search-input {
  flex: 1;
  height: 52px;
  padding: 0 1.25rem;
  font-size: 1rem;
  font-family: var(--font-en);
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  min-width: 0;
}

.search-input::placeholder {
  color: #aaa;
}

.search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  height: 52px;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  font-family: inherit;
}

.search-btn:hover {
  background-color: var(--gold-light);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.4);
}

.search-btn svg {
  flex-shrink: 0;
}

/* RTL search bar flips */
html[dir="rtl"] .search-btn {
  border-radius: var(--radius) 0 0 var(--radius);
}

/* TLD badges */
.tld-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.tld-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.tld-name {
  font-weight: 700;
}

.tld-price {
  font-size: 0.75rem;
  opacity: 0.75;
}

/* ============================================================
   8. Services Overview (overlapping hero)
   ============================================================ */
.services-overview {
  max-width: 1200px;
  margin: -40px auto 0;
  padding-inline: 1.5rem;
  position: relative;
  z-index: 10;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

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

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--green);
}

.service-icon svg {
  stroke: var(--green);
}

.service-card h3 {
  color: var(--green);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.service-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.service-link {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.service-link:hover {
  text-decoration: underline;
  color: var(--green-light);
}

/* ============================================================
   9. Pricing Sections
   ============================================================ */
.pricing-section {
  max-width: 1200px;
  margin-inline: auto;
  padding: 80px 1.5rem;
}

.pricing-section--alt {
  max-width: none;
  background-color: var(--cream-dark);
}

.pricing-section--alt .pricing-inner {
  max-width: 1200px;
  margin-inline: auto;
}

.pricing-inner {
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--green);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
}

.section-header--light h2 {
  color: var(--white);
}

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

/* Plans grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* Plan card */
.plan-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  overflow: hidden;
}

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

.plan-featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(184, 134, 11, 0.18);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 1;
}

html[dir="rtl"] .plan-badge {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

/* Plan header (name + price area) */
.plan-header {
  padding: 2rem 1.75rem 1rem;
  text-align: start;
}

.plan-featured .plan-header {
  padding-top: 2.5rem;
}

.plan-header h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
}

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

.plan-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Plan features list */
.plan-features {
  padding: 0 1.75rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-color: var(--gold);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

/* Plan buttons */
.btn-plan {
  display: block;
  text-align: center;
  margin: 0 1.75rem 2rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-plan:hover {
  background-color: var(--green-light);
  box-shadow: 0 4px 14px rgba(27, 67, 50, 0.3);
}

.btn-plan-featured {
  background-color: var(--gold);
}

.btn-plan-featured:hover {
  background-color: var(--gold-light);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
}

/* ============================================================
   10. Bundles Section
   ============================================================ */
.bundles-section {
  background-color: var(--green);
  padding: 80px 1.5rem;
}

.bundles-inner {
  max-width: 900px;
  margin-inline: auto;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.bundle-card {
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: start;
  backdrop-filter: blur(4px);
  transition: background 0.25s, box-shadow 0.25s;
}

.bundle-card:hover {
  background-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.bundle-card--featured {
  background-color: rgba(255, 255, 255, 0.14);
}

.bundle-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.bundle-save-badge {
  display: inline-block;
  background-color: var(--green-light);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.75rem;
}

.bundle-save-badge--gold {
  background-color: var(--gold);
}

.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.bundle-amount {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.bundle-currency {
  font-size: 1rem;
  font-weight: 600;
}

.bundle-period {
  font-size: 0.85rem;
  opacity: 0.7;
}

.bundle-includes {
  margin-bottom: 1.5rem;
}

.bundle-includes li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bundle-includes li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: var(--gold-light);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.btn-bundle {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-bundle:hover {
  background-color: rgba(255, 255, 255, 0.10);
  border-color: var(--white);
}

.btn-bundle--featured {
  background-color: var(--gold);
  border-color: var(--gold);
}

.btn-bundle--featured:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
}

/* ============================================================
   11. Trust Section
   ============================================================ */
.trust-section {
  background-color: var(--cream);
  padding: 80px 1.5rem;
}

.trust-inner {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1200px;
  margin-inline: auto;
}

.trust-text {
  flex: 1;
}

.trust-text h2 {
  color: var(--green);
  margin-bottom: 0.75rem;
}

.trust-text > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.check-icon {
  flex-shrink: 0;
  color: var(--gold);
  stroke: var(--gold);
}

/* Trust visual — stats column */
.trust-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-shrink: 0;
  min-width: 180px;
}

.trust-stat {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================================
   12. Contact Section
   ============================================================ */
.contact-section {
  background-color: var(--cream-dark);
  padding: 80px 1.5rem;
}

.contact-inner {
  max-width: 1200px;
  margin-inline: auto;
}

.contact-methods {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s;
  min-width: 280px;
  flex: 1;
  max-width: 400px;
}

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

.contact-icon {
  width: 52px;
  height: 52px;
  background-color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.contact-icon svg {
  stroke: var(--white);
}

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

.contact-icon--whatsapp svg {
  stroke: none;
  fill: var(--white);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

/* ============================================================
   13. Footer
   ============================================================ */
.site-footer {
  background-color: var(--green);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 2rem;
}

.footer-brand {
  max-width: 280px;
}

.logo--footer {
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.footer-nav {
  display: flex;
  gap: 3rem;
}

.footer-nav-col h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-powered {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   14. Responsive — max-width 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-actions .btn-login,
  .nav-actions .btn-lang {
    display: none;
  }

  /* Typography */
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  /* Hero */
  .hero-section {
    padding: 3.5rem 1.5rem 5.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .search-input-wrap {
    flex-direction: column;
    border-radius: var(--radius);
    overflow: visible;
    box-shadow: none;
    gap: 0.5rem;
    background: transparent;
  }

  .search-input {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
  }

  .search-btn {
    border-radius: var(--radius);
    width: 100%;
    height: 48px;
    justify-content: center;
    box-shadow: var(--shadow);
  }

  /* Services */
  .services-overview {
    margin-top: 0;
    padding-top: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 3rem 1.5rem;
  }

  /* Bundles */
  .bundles-section {
    padding: 3rem 1.5rem;
  }

  .bundles-grid {
    grid-template-columns: 1fr;
  }

  /* Trust */
  .trust-section {
    padding: 3rem 1.5rem;
  }

  .trust-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .trust-visual {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }

  .trust-stat {
    flex: 1;
  }

  /* Contact */
  .contact-section {
    padding: 3rem 1.5rem;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    max-width: 100%;
    width: 100%;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ============================================================
   15. RTL Overrides
   ============================================================ */
html[dir="rtl"] .nav-container {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .plan-header {
  text-align: end;
}

html[dir="rtl"] .plan-price {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

html[dir="rtl"] .plan-features li {
  flex-direction: row-reverse;
}

html[dir="rtl"] .bundle-card {
  text-align: end;
}

html[dir="rtl"] .bundle-price {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

html[dir="rtl"] .bundle-includes li {
  flex-direction: row-reverse;
}

html[dir="rtl"] .trust-list li {
  flex-direction: row-reverse;
}

html[dir="rtl"] .trust-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .trust-text {
  text-align: end;
}

html[dir="rtl"] .contact-card {
  flex-direction: row-reverse;
}

html[dir="rtl"] .contact-details {
  text-align: end;
}

html[dir="rtl"] .footer-top {
  flex-direction: row-reverse;
}

html[dir="rtl"] .footer-nav {
  flex-direction: row-reverse;
}

html[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

html[dir="rtl"] .footer-brand {
  text-align: end;
}

@media (max-width: 768px) {
  html[dir="rtl"] .trust-inner {
    flex-direction: column;
  }

  html[dir="rtl"] .footer-top {
    flex-direction: column;
  }

  html[dir="rtl"] .footer-bottom {
    flex-direction: column;
  }
}
