/* ==========================================================================
   مؤسسة فيصل ستائر ولكنب (Faisal Establishment for Curtains & Sofas)
   Bright Luxury Light Design System & Core Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Tajawal:wght@400;500;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Bright Luxury Palette */
  --primary: #0f172a;          /* Deep Slate Navy */
  --primary-light: #1e293b;    /* Slate Accent */
  
  --gold: #d97706;             /* Royal Amber Gold */
  --gold-hover: #b45309;       /* Rich Deep Gold */
  --gold-light: #fef3c7;       /* Soft Pearl Gold Glow */
  --gold-accent: #f59e0b;      /* Bright Golden Flare */
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 60%, #b45309 100%);
  --gold-gradient-soft: linear-gradient(135deg, #fffbe6 0%, #fef3c7 100%);

  /* Light Theme Surfaces */
  --surface: #ffffff;
  --surface-alt: #fdfbf7;      /* Warm Pearl Ivory */
  --surface-cream: #f8f5ee;    /* Silk Warm Cream */
  --surface-hero: linear-gradient(135deg, #fbf8f1 0%, #f5efe2 50%, #fcfaf5 100%);
  --surface-section: #f7f4ec;
  
  --border: #e2e8f0;
  --border-gold: rgba(217, 119, 6, 0.35);
  --border-gold-glow: rgba(245, 158, 11, 0.5);

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-white: #ffffff;
  --text-gold: #d97706;

  /* Accents & Status */
  --whatsapp: #25d366;
  --whatsapp-hover: #1da851;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.1);
  --shadow-gold: 0 10px 30px rgba(217, 119, 6, 0.25);
  --shadow-gold-hover: 0 16px 40px rgba(245, 158, 11, 0.4);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animations */
@keyframes floatGlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.8; }
  50% { transform: translateY(-10px) rotate(1deg); opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(217, 119, 6, 0.2); }
  50% { box-shadow: 0 0 30px rgba(245, 158, 11, 0.45); }
}

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

/* Base Reset & Core Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Tajawal', 'Cairo', system-ui, -apple-system, sans-serif;
  background-color: var(--surface-cream);
  color: var(--text-main);
  line-height: 1.65;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 10% 10%, rgba(217, 119, 6, 0.05) 0%, transparent 35%),
                    radial-gradient(circle at 90% 90%, rgba(245, 158, 11, 0.05) 0%, transparent 35%);
}

[lang="en"] body {
  font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  direction: ltr;
  text-align: left;
}

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

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

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary);
  letter-spacing: -0.01em;
}

[lang="en"] h1, [lang="en"] h2, [lang="en"] h3, [lang="en"] h4 {
  font-family: 'Outfit', sans-serif;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.sub-title {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  background: rgba(217, 119, 6, 0.08);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  background: #ffffff;
  color: var(--gold-hover);
  border: 1px solid var(--border-gold-glow);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.12);
}

.badge-gold {
  background: var(--gold-gradient);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-gold);
}

.skip-to-content {
  position: absolute;
  top: -100px;
  right: 1rem;
  background: var(--gold);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.skip-to-content:focus {
  top: 1rem;
}

/* Top Bar */
.top-bar {
  background: #ffffff;
  color: var(--primary);
  padding: 0.6rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1001;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--text-muted);
}

.top-info a {
  color: var(--gold);
  font-weight: 800;
}

.top-info a:hover {
  text-decoration: underline;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-map-link {
  color: var(--primary);
  font-weight: 600;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-sm);
  background: var(--surface-cream);
  border: 1px solid var(--border);
}

.top-map-link:hover {
  background: var(--gold);
  color: #ffffff;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-gradient);
  color: #ffffff;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.825rem;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
}

.lang-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}

/* Site Header Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

[lang="en"] .nav-inner {
  flex-direction: row-reverse;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  transition: var(--transition);
  flex-shrink: 0;
  margin-right: 0;
  padding-right: 0;
}

.logo-wrap:hover {
  transform: scale(1.03);
}

.logo-img {
  height: 56px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
  object-position: right center;
  margin-right: 0;
  padding-right: 0;
}

[lang="en"] .logo-img {
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 1.025rem;
  color: var(--primary);
  position: relative;
  padding: 0.5rem 0.25rem;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

[lang="en"] .nav-link::after {
  right: auto;
  left: 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

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

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  position: relative;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-gold-hover);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.3);
}

.btn-outline {
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-sm {
  background: var(--whatsapp);
  color: #fff;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-whatsapp-sm:hover {
  background: var(--whatsapp-hover);
}

.btn-light {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: var(--gold-light);
  color: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-google {
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.btn-google:hover {
  background: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: #ffffff;
  border: 1px solid var(--border);
  font-size: 1.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--primary);
  cursor: pointer;
}

/* Light Luxury Hero Section */
.hero-section {
  position: relative;
  background: var(--surface-hero);
  color: var(--primary);
  padding: 5rem 0 6rem 0;
  overflow: hidden;
  border-bottom: 2px solid var(--border-gold);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 3.1rem;
  line-height: 1.22;
  color: var(--primary);
  font-weight: 900;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-features-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.feature-item .icon {
  font-size: 1.5rem;
}

.feature-item strong {
  display: block;
  font-size: 0.925rem;
  color: var(--primary);
}

.feature-item small {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.hero-media {
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border: 2px solid var(--border-gold);
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  transition: var(--transition-slow);
}

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

.hero-badge-floating {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: #ffffff;
  color: var(--primary);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid var(--gold);
  animation: floatGlow 6s ease-in-out infinite;
}

[lang="en"] .hero-badge-floating {
  right: auto;
  left: -25px;
}

.hero-badge-floating .icon {
  font-size: 2.2rem;
}

.hero-badge-floating strong {
  font-size: 1.1rem;
  color: var(--primary);
  display: block;
}

.hero-badge-floating small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Light GBP Trust Section */
.gbp-trust-section {
  padding: 5rem 0;
  background: #ffffff;
}

.section-header {
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-top: 0.5rem;
}

.gbp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.gbp-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.gbp-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.gbp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold-glow);
  background: #ffffff;
}

.gbp-card:hover::before {
  opacity: 1;
}

.gbp-card.highlight {
  background: linear-gradient(135deg, #fffbe6 0%, #ffffff 100%);
  border: 2px solid var(--gold);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.gbp-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.gbp-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Services Section */
.services-section {
  padding: 5.5rem 0;
  background: var(--surface-cream);
  position: relative;
}

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

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
  border-color: var(--gold);
}

.service-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.service-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold-gradient);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

[lang="en"] .service-tag {
  right: auto;
  left: 1.25rem;
}

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
  color: var(--primary);
}

.service-content p {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.service-list {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-list li {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--primary);
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* Customer Reviews & Google Business Profile Section */
.reviews-section {
  padding: 5.5rem 0;
  background: #ffffff;
  position: relative;
}

.gbp-banner-box {
  background: linear-gradient(135deg, #fffbe6 0%, #ffffff 60%, #fef3c7 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}

.gbp-badge-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.gbp-g-logo {
  font-size: 3rem;
  line-height: 1;
}

.gbp-rating-stars {
  font-size: 1.3rem;
  color: #f59e0b;
}

.gbp-banner-text h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

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

.gbp-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.review-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  background: #ffffff;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.author-info h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.1rem;
}

.author-info small {
  color: var(--text-muted);
  font-size: 0.825rem;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
}

.review-body {
  font-size: 0.975rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.review-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.verified-tag {
  color: #10b981;
  font-weight: 700;
}

/* Banner Showcase Section */
.banner-showcase {
  padding: 5.5rem 0;
  background: var(--surface-cream);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-content .sub-title {
  margin-bottom: 0.75rem;
}

.showcase-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
}

.showcase-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.showcase-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--border-gold);
}

/* Coverage Section */
.coverage-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.districts-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.chip {
  background: var(--surface-cream);
  border: 1px solid var(--border);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.chip:hover,
.chip.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.coverage-banner {
  background: var(--surface-cream);
  color: var(--primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
}

.banner-text h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.banner-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Page Banner Subpages */
.page-banner {
  background: var(--surface-hero);
  color: var(--primary);
  padding: 4.5rem 0;
  text-align: center;
  border-bottom: 2px solid var(--border-gold);
}

.page-banner h1 {
  color: var(--primary);
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
}

.page-banner p {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.details-section {
  padding: 5rem 0;
  background: #ffffff;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.feature-box-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-box {
  background: var(--surface-cream);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-right: 4px solid var(--gold);
}

[lang="en"] .feature-box {
  border-right: none;
  border-left: 4px solid var(--gold);
}

.feature-box h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.cta-banner-inline {
  background: var(--surface-alt);
  border: 2px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2rem;
}

.cta-banner-inline h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.detail-form-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.detail-form-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.detail-form-wrap p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* Contact Cards */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--surface-cream);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.contact-card-item .icon {
  font-size: 2rem;
  background: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.phone-link, .wa-link {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold);
}

/* Steps Section */
.steps-section {
  padding: 5rem 0;
  background: var(--surface-cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
  border: 1px solid var(--border);
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -40px auto 1.25rem auto;
  box-shadow: var(--shadow-gold);
}

/* Districts Grid Page */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Light Elegant Footer */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 5rem 0 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
}

.brand-col {
  text-align: right;
  margin-right: 0;
  padding-right: 0;
}

[lang="en"] .brand-col {
  text-align: left;
}

.footer-logo {
  height: 58px;
  width: auto;
  max-width: 270px;
  margin-bottom: 1.25rem;
  margin-right: 0;
  margin-left: auto;
  display: block;
  object-fit: contain;
  object-position: right center;
  padding-right: 0;
}

[lang="en"] .footer-logo {
  margin-left: 0;
  margin-right: auto;
  object-position: left center;
}

.footer-about {
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.rating-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
}

.stars {
  color: var(--gold-accent);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links, .footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: #cbd5e1;
  transition: var(--transition);
}

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

[lang="en"] .footer-links a:hover {
  padding-right: 0;
  padding-left: 6px;
}

.footer-contact li {
  font-size: 0.925rem;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--gold-accent);
  font-weight: 700;
}

.payment-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pay-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  color: #ffffff;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem 0;
  background: #080d1a;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.legal-links a {
  color: #94a3b8;
  margin: 0 0.5rem;
}

.legal-links a:hover {
  color: var(--gold-accent);
}

/* Floating Mobile CTA Bar */
.floating-cta-bar {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.18);
  border: 1px solid var(--border-gold-glow);
}

.float-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: var(--transition);
}

.float-call {
  background: var(--gold-gradient);
  box-shadow: var(--shadow-gold);
}

.float-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.float-btn:hover {
  transform: scale(1.05);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-gold {
  box-shadow: var(--shadow-gold);
}

.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
