/* ==========================================================================
   Italy Education Club - Main Stylesheet
   Modern, Clean, RTL Responsive Single-Page Design
   ========================================================================== */

:root {
  /* Color Palette */
  --primary: #1a56db;
  --primary-hover: #1342ad;
  --primary-light: #ebf5ff;
  --primary-rgb: 26, 86, 219;
  
  --secondary: #d97706;
  --secondary-light: #fef3c7;
  --accent-gold: #eab308;
  --accent-gold-dark: #ca8a04;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --bg-page: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  
  --border-subtle: #e2e8f0;
  --border-card: #e5e7eb;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12), 0 6px 14px rgba(0, 0, 0, 0.06);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --header-height: 80px;
  --transition-normal: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
}

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Title & Subtitle */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  color: var(--accent-gold-dark);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.35;
}

.section-desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

.dotted-divider {
  width: 70px;
  height: 4px;
  border-top: 4px dotted var(--accent-gold);
  margin: 16px auto 0;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 900;
  color: #111827;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #009246, #ffffff, #ce2b37);
  padding: 2px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.brand-badge-inner {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #009246;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: #334155;
  position: relative;
  padding: 8px 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 0%;
  height: 3px;
  background: #111827;
  border-radius: 3px;
  transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: #000000;
}

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

.nav-cta {
  background: #111827;
  color: #ffffff !important;
  padding: 9px 20px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-cta:hover {
  background: #27303f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-cta::after {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1e293b;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 40px;
  position: relative;
  background: radial-gradient(circle at 15% 25%, rgba(240, 246, 255, 0.8) 0%, rgba(255, 255, 255, 1) 70%);
  overflow: hidden;
}

/* Subtle decorative line art */
.hero-bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-curve-art {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 50%;
  pointer-events: none;
}

.hero-curve-art::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 15%;
  width: 450px;
  height: 450px;
  border: 1px dashed rgba(203, 213, 225, 0.7);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: 480px;
}

.hero-content {
  text-align: right;
  z-index: 2;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #111827;
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: #1f2937;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #1e293b;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  border: 1px solid var(--border-card);
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: #cbd5e1;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  max-width: 520px;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
  animation: floatSlow 6s ease-in-out infinite;
}

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

/* ==========================================================================
   Quick Access Feature Cards
   ========================================================================== */
.features-section {
  padding: 30px 0 60px;
  position: relative;
  z-index: 5;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: #cbd5e1;
}

.feature-card:hover::before {
  background: linear-gradient(90deg, #d97706, #009246);
}

.feature-icon-box {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.08);
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.feature-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
  padding: 80px 0 60px;
  background-color: #ffffff;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 56px;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.about-content {
  text-align: right;
}

.about-badge {
  display: inline-block;
  color: var(--accent-gold-dark);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.about-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 2.05;
}

.about-text p {
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #0f172a;
}

/* ==========================================================================
   Stats & Counter Section
   ========================================================================== */
.stats-section {
  padding: 50px 0 80px;
  background-color: #ffffff;
}

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

.stat-item {
  padding: 20px 10px;
}

.stat-number-wrapper {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  direction: ltr; /* keep math symbols aligned naturally */
  font-size: 3.4rem;
  font-weight: 900;
  color: #334155;
  line-height: 1;
  margin-bottom: 14px;
  font-feature-settings: "tnum";
}

.stat-plus {
  color: #475569;
  font-weight: 700;
  margin-right: 4px;
}

.stat-number {
  color: #334155;
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #64748b;
}

/* ==========================================================================
   Services Section (Detailed Breakdown)
   ========================================================================== */
.services-section {
  padding: 90px 0 80px;
  background-color: #fafbfc;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.service-box {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-normal);
  position: relative;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.service-box-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.service-badge-num {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.service-box-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.service-box-desc {
  font-size: 0.98rem;
  color: #64748b;
  line-height: 1.85;
}

/* ==========================================================================
   Consultation Form Section
   ========================================================================== */
.consultation-section {
  padding: 100px 0 40px;
  background: #ffffff;
  position: relative;
}

.consultation-header {
  text-align: center;
  margin-bottom: 40px;
}

.consultation-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 12px;
}

.consultation-subtitle {
  font-size: 1.15rem;
  color: #475569;
}

.consultation-form-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background-color: #ffffff;
  font-size: 1rem;
  color: #1e293b;
  transition: var(--transition-normal);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #1e293b;
  box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 14px center;
  background-size: 18px;
  padding-left: 40px;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.7;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

.btn-submit {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  padding: 10px 38px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-submit:hover {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

/* Required star & Optional badge */
.required-star {
  color: #ef4444;
  font-weight: 700;
  margin-right: 2px;
}

.optional-badge {
  font-size: 0.82rem;
  font-weight: 400;
  color: #94a3b8;
  margin-right: 4px;
}

/* Field Error Feedback */
.field-error {
  display: none;
  color: #ef4444;
  font-size: 0.84rem;
  margin-top: 6px;
  font-weight: 500;
  line-height: 1.5;
  animation: fadeInError 0.2s ease-in-out;
}

.field-error.visible {
  display: block;
}

.form-input.has-error,
.form-select.has-error,
.form-textarea.has-error {
  border-color: #ef4444 !important;
  background-color: #fffafb;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

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

/* Privacy Consent Checkbox */
.form-privacy-group {
  margin-top: 10px;
  margin-bottom: 16px;
  background: #f8fafc;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: var(--transition-normal);
}

.form-privacy-group:hover {
  background: #f1f5f9;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.form-checkbox {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: #1e293b;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-text {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.7;
}

.checkbox-label:hover .checkbox-text {
  color: #0f172a;
}

.consultation-character-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.consultation-character-img {
  max-width: 680px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 30px;
  border-top: 1px solid #1e293b;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 400px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: var(--accent-gold);
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(-4px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-contact-item a {
  color: #94a3b8;
  transition: var(--transition-normal);
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.social-icons-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1e293b;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.social-btn:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  font-size: 0.9rem;
}

/* ==========================================================================
   Floating Widgets & Toast Notification
   ========================================================================== */
.floating-social-group {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
}

.floating-social-btn.telegram {
  background: #229ed9;
  box-shadow: 0 6px 20px rgba(34, 158, 217, 0.4);
}

.floating-social-btn.telegram:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(34, 158, 217, 0.6);
}

.floating-social-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  box-shadow: 0 6px 20px rgba(214, 36, 159, 0.35);
}

.floating-social-btn.instagram:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(214, 36, 159, 0.55);
}

.floating-social-btn .tooltip {
  position: absolute;
  left: 60px;
  background: #1e293b;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition-normal);
}

.floating-social-btn:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
  transform: translateY(-3px);
}

/* Modal / Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 30px;
  right: 50%;
  transform: translateX(50%) translateY(100px);
  background: #111827;
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  transform: translateX(50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 24px;
  height: 24px;
  color: #10b981;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-card);
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: var(--transition-normal);
  }
  
  .nav-menu.open {
    transform: translateY(0);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-content {
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-number-wrapper {
    font-size: 2.8rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
}
