/* ===================================
   ALIYAH CENTER - Corporate Website
   Premium Israeli Repatriation Services
   =================================== */

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary-dark: #0a1628;
  --primary-blue: #1a365d;
  --primary-navy: #2c5282;
  --accent-gold: #d4a853;
  --accent-gold-light: #e8c17a;
  --accent-gold-dark: #b8913f;
  
  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #f7f9fc;
  --light-gray: #e2e8f0;
  --medium-gray: #a0aec0;
  --dark-gray: #4a5568;
  --text-dark: #1a202c;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #2c5282 100%);
  --gradient-gold: linear-gradient(135deg, #d4a853 0%, #e8c17a 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 54, 93, 0.8) 100%);
  
  /* Typography */
  --font-primary: 'Playfair Display', Georgia, serif;
  --font-secondary: 'Raleway', 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 4px 20px rgba(212, 168, 83, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-secondary);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

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

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

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 168, 83, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-dark {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-blue);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.875rem;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.logo-text span {
  color: var(--accent-gold);
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-normal);
}

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

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

/* Dropdown */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  padding: 16px 0;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 24px;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.dropdown-link:hover {
  background: var(--off-white);
  color: var(--accent-gold);
  padding-left: 32px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
}

.header-phone svg {
  color: var(--accent-gold);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-normal);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a853' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--accent-gold);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 span {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Hero Form */
.hero-form-wrapper {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.4s both;
}

.hero-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  width: 400px;
}

.hero-form h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.hero-form p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Hero Decorative Elements */
.hero-decoration {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  opacity: 0.1;
  background: radial-gradient(circle at 70% 30%, var(--accent-gold) 0%, transparent 50%);
}

/* ===================================
   FORMS
   =================================== */

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.1);
}

.form-control::placeholder {
  color: var(--medium-gray);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--dark-gray);
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-top: 16px;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.75rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.service-link:hover {
  gap: 12px;
}

/* ===================================
   ABOUT / WHO FITS SECTION
   =================================== */

.who-fits {
  background: var(--white);
}

.who-fits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fit-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--off-white);
  border-radius: var(--border-radius);
  transition: var(--transition-normal);
}

.fit-card:hover {
  background: var(--primary-dark);
}

.fit-card:hover h4,
.fit-card:hover p {
  color: var(--white);
}

.fit-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
}

.fit-card h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.fit-card p {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

/* ===================================
   HOW WE WORK / PROCESS
   =================================== */

.process {
  background: var(--gradient-hero);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4a853' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}

.process-step h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ===================================
   WHY CHOOSE US
   =================================== */

.why-us {
  background: var(--white);
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-text h2 {
  margin-bottom: 24px;
}

.why-us-text > p {
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.why-item h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.95rem;
  margin: 0;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.image-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--gradient-gold);
  padding: 24px 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-gold);
}

.image-badge .number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.image-badge .text {
  font-size: 0.875rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ===================================
   CASES / TESTIMONIALS
   =================================== */

.cases {
  background: var(--off-white);
}

.cases-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.case-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

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

.case-image {
  height: 200px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.case-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.8) 100%);
}

.case-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.case-content {
  padding: 28px;
}

.case-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.case-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.case-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.case-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.case-link {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.case-link:hover {
  gap: 10px;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--off-white);
  padding: 32px;
  border-radius: var(--border-radius);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-primary);
  font-size: 5rem;
  color: var(--accent-gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-rating {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--medium-gray);
}

/* ===================================
   FAQ
   =================================== */

.faq {
  background: var(--off-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-question h4 {
  font-size: 1.0625rem;
  margin: 0;
  padding-right: 20px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
  background: var(--accent-gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 28px 24px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  background: var(--gradient-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 60%);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.95rem;
}

.cta-feature svg {
  color: var(--accent-gold);
}

.cta-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.cta-form h3 {
  margin-bottom: 8px;
}

.cta-form > p {
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-gold);
  transform: translateY(-4px);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 24px;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold);
  padding-left: 8px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

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

/* ===================================
   POPUP MODAL
   =================================== */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.popup {
  background: var(--white);
  padding: 48px;
  border-radius: var(--border-radius);
  max-width: 480px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-normal);
}

.popup-overlay.active .popup {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--off-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.popup-close:hover {
  background: var(--accent-gold);
}

.popup h3 {
  text-align: center;
  margin-bottom: 8px;
}

.popup > p {
  text-align: center;
  margin-bottom: 24px;
}

/* ===================================
   PAGE HEADER (Inner Pages)
   =================================== */

.page-header {
  background: var(--gradient-hero);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a853' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin: 0;
}

/* ===================================
   CONTENT SECTIONS (Inner Pages)
   =================================== */

.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.content-main h2 {
  margin-bottom: 20px;
}

.content-main h3 {
  margin: 40px 0 16px;
  font-size: 1.5rem;
}

.content-main p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-main ul,
.content-main ol {
  margin: 20px 0;
  padding-left: 24px;
}

.content-main li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.content-main ol {
  counter-reset: item;
}

.content-main ol li {
  counter-increment: item;
}

.content-main ol li::before {
  content: counter(item) '.';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

/* Sidebar */
.content-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: var(--off-white);
  padding: 32px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
}

.sidebar-card h4 {
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.sidebar-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-nav a {
  display: block;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--primary-dark);
  color: var(--white);
}

/* Info Boxes */
.info-box {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(212, 168, 83, 0.05) 100%);
  border-left: 4px solid var(--accent-gold);
  padding: 24px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  margin: 32px 0;
}

.info-box h4 {
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.info-box p {
  margin: 0;
  font-size: 0.95rem;
}

/* Feature List */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--border-radius-sm);
}

.feature-item .icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* ===================================
   BLOG
   =================================== */

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

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

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

.blog-image {
  height: 200px;
  background: var(--gradient-hero);
  position: relative;
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--medium-gray);
}

.blog-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card h3 a:hover {
  color: var(--accent-gold);
}

.blog-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.read-more {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover {
  gap: 10px;
}

/* Blog Categories */
.blog-categories {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 24px;
  background: var(--off-white);
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.category-btn:hover,
.category-btn.active {
  background: var(--primary-dark);
  color: var(--white);
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-info-item a {
  color: var(--accent-gold);
  font-weight: 500;
}

.contact-form-wrapper {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--border-radius);
}

.contact-form-wrapper h3 {
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  margin-bottom: 24px;
}

/* Map */
.contact-map {
  height: 400px;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  margin-top: 60px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Messengers */
.messengers {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.messenger-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.messenger-btn.whatsapp {
  background: #25D366;
  color: var(--white);
}

.messenger-btn.telegram {
  background: #0088cc;
  color: var(--white);
}

.messenger-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1200px) {
  .hero-form-wrapper {
    position: static;
    transform: none;
    margin-top: 48px;
  }
  
  .hero-form {
    width: 100%;
    max-width: 500px;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .services-grid,
  .testimonials-grid,
  .blog-grid,
  .cases-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid::before {
    display: none;
  }
  
  .who-fits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-us-content,
  .cta-content,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .content-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .hero {
    min-height: auto;
    padding: 140px 0 60px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .services-grid,
  .testimonials-grid,
  .blog-grid,
  .cases-slider,
  .process-grid,
  .who-fits-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
  }
  
  .hero-form,
  .cta-form,
  .popup {
    padding: 24px;
  }
  
  .contact-map {
    height: 300px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .btn-lg {
    padding: 16px 32px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 9998;
  padding: 100px 32px 32px;
  transition: var(--transition-normal);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  color: var(--white);
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
  color: var(--accent-gold);
}

.mobile-dropdown {
  padding-left: 20px;
}

.mobile-dropdown a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.mobile-dropdown a:hover {
  color: var(--accent-gold);
}

/* Chat Widgets */
.chat-widgets {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  text-decoration: none;
}

.chat-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.telegram-btn {
  background: #0088cc;
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
}

.telegram-btn:hover {
  box-shadow: 0 6px 25px rgba(0, 136, 204, 0.5);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  padding: 16px 24px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta.visible {
  display: flex;
}

.sticky-cta-text {
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 768px) {
  .sticky-cta {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  
  .sticky-cta .btn {
    width: 100%;
  }
}

/* Page Loading */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212, 168, 83, 0.2);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-white { color: var(--white); }
.bg-light { background: var(--off-white); }
.bg-dark { background: var(--primary-dark); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ===================================
   ENHANCED RESPONSIVE STYLES
   =================================== */

/* Global text overflow protection */
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Fluid images */
img, video, iframe {
  max-width: 100%;
  height: auto;
}


/* 576px Breakpoint - Small devices */
@media (max-width: 576px) {
  :root {
    --section-padding: 48px 0;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
  h4 { font-size: 1rem; }
  
  .hero {
    padding: 120px 0 48px;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero h1 span {
    display: block;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .hero-form {
    padding: 20px;
  }
  
  .hero-form h3 {
    font-size: 1.25rem;
  }
  
  .form-control {
    padding: 14px 16px;
    font-size: 16px; /* Prevents iOS zoom */
  }
  
  .btn {
    padding: 14px 20px;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
  }
  
  .btn-lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  
  .section-header {
    margin-bottom: 32px;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .section-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }
  
  /* Cards */
  .service-card,
  .fit-card,
  .case-card,
  .testimonial-card {
    padding: 24px;
  }
  
  .service-icon,
  .fit-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  
  /* Process steps */
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .process-step h4 {
    font-size: 1rem;
  }
  
  .process-step p {
    font-size: 0.875rem;
  }
  
  /* FAQ */
  .faq-question {
    padding: 18px 20px;
  }
  
  .faq-question h4 {
    font-size: 0.95rem;
    padding-right: 16px;
  }
  
  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }
  
  .faq-icon {
    width: 28px;
    height: 28px;
  }
  
  /* Footer */
  .footer {
    padding-top: 48px;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 48px 0;
  }
  
  .cta-form {
    padding: 20px;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Why us section */
  .why-item {
    flex-direction: column;
    text-align: center;
  }
  
  .why-icon {
    margin: 0 auto;
  }
  
  /* Contact info */
  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info-icon {
    margin: 0 auto;
  }
  
  /* Messengers */
  .messengers {
    flex-direction: column;
  }
  
  .messenger-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Header mobile improvements */
@media (max-width: 992px) {
  .header-inner {
    padding: 16px 0;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .header-phone {
    display: none;
  }
  
  .header-actions .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

/* Chat widgets mobile positioning */
@media (max-width: 768px) {
  .chat-widgets {
    bottom: 90px;
    right: 16px;
    gap: 10px;
  }
  
  .chat-btn {
    width: 50px;
    height: 50px;
  }
  
  .chat-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 576px) {
  .chat-widgets {
    bottom: 80px;
    right: 12px;
    gap: 8px;
  }
  
  .chat-btn {
    width: 46px;
    height: 46px;
  }
  
  .chat-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* Sticky CTA mobile improvements */
@media (max-width: 576px) {
  .sticky-cta {
    padding: 12px;
    gap: 10px;
  }
  
  .sticky-cta-text {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .sticky-cta .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Hero text improvements for mobile */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
  
  .hero-stats {
    align-items: center;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .hero-badge {
    margin: 0 auto 24px;
  }
}

/* Popup mobile improvements */
@media (max-width: 576px) {
  .popup {
    width: 95%;
    padding: 24px 20px;
    margin: 16px;
  }
  
  .popup h3 {
    font-size: 1.25rem;
  }
  
  .popup-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
}

/* Page header mobile */
@media (max-width: 576px) {
  .page-header {
    padding: 120px 0 48px;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .breadcrumb {
    font-size: 0.8rem;
  }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 0 40px;
  }
  
  .hero-form-wrapper {
    margin-top: 24px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }
  
  .service-card:hover,
  .case-card:hover,
  .blog-card:hover {
    transform: none;
  }
  
  .nav-link::after {
    display: none;
  }
}


