/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --text-dark: #1a252f;
  --text-light: #2d3748;
  --bg-light: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --bg-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 25px 60px rgba(0, 0, 0, 0.25);
  --border-radius: 20px;
  --transition: all 0.4s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================================================
   HEADER STYLES - NEW DESIGN
   ========================================================================== */

.header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.header-description {
  color: white;
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  max-width: 250px;
}

.language-switcher select {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.language-switcher select:hover {
  background: rgba(255, 255, 255, 0.3);
}

.language-switcher select:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.services {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-align: center;
}

.services:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card span {
  font-size: 14px;
  font-weight: 500;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  min-width: 180px;
}

.social-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.social-card img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  z-index: 1;
}

.hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
}

.hero-text {
  margin-bottom: 4rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle-title {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin-inline: auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 500;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.hero-list-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.list-checkmark {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--secondary-gradient);
  color: white;
  text-decoration: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.5);
}

.cta-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
  transform: translateX(8px);
}

.hero-features-wrapper {
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-text {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-arrow {
  color: white;
  font-size: 1.8rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

.services {
  padding: 8rem 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
  animation: expandLine 1s ease-out 0.5s forwards;
}

.section-underline {
  width: 100px;
  height: 4px;
  background: var(--primary-gradient);
  margin: 1rem auto 0;
  border-radius: 2px;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.7s forwards;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(102, 126, 234, 0.2);
}

.service-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.service-icon {
  font-size: 1rem;
  position: relative;
  z-index: 3;
  display: block;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover .icon-bg {
  opacity: 0.2;
  transform: translate(-50%, -50%) scale(1.3);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #667eea;
}

.service-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

.service-hover-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card:hover .service-hover-effect {
  opacity: 1;
}

/* ==========================================================================
   BENEFITS SECTION STYLES
   ========================================================================== */

.benefits {
  padding: 8rem 0;
  background: var(--bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></svg>') repeat;
  background-size: 100px 100px;
}

.benefits h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 4rem;
  position: relative;
}

.benefits h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-gradient);
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.benefit {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.benefit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.benefit:hover::before {
  opacity: 0.1;
}

.benefit:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.benefit:hover .benefit-icon {
  transform: scale(1.1) rotate(-10deg);
}

.benefit h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefit p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
}

/* ==========================================================================
   HOW IT WORKS SECTION STYLES
   ========================================================================== */

.how-it-works {
  padding: 8rem 0;
  background: white;
  position: relative;
}

.how-it-works h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5rem;
  position: relative;
}

.how-it-works h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gradient), transparent);
  z-index: 1;
  display: none;
}

@media (min-width: 1024px) {
  .steps::before {
    display: block;
  }
}

.step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: transform 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.step p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================================
   CONTACT SECTION STYLES
   ========================================================================== */

.contact {
  padding: 8rem 0;
  background: var(--bg-light);
  position: relative;
}

.contact h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4rem;
  position: relative;
}

.contact h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: var(--shadow-light);
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(102, 126, 234, 0.05);
  border-color: rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}

.contact-item .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item:hover a {
  color: #667eea;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: var(--shadow-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  font-size: 1rem;
  background: rgba(102, 126, 234, 0.02);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {
  width: 100%;
  padding: 1.2rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: var(--transition);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

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

.footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #4ecdc4;
}

.footer-soc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-soc li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-soc img.icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.footer-soc a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

.footer-brand {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.brand-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-8px);
  }
}

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

@media (max-width: 992px) {
  .header-grid {
    grid-template-columns: 1fr;
  }
  
  .social-grid {
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    min-width: auto;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-scroll-indicator {
    bottom: calc(2rem - 30px);
  }

  .logo {
    align-items: center;
  }

  .header-description {
    text-align: center;
    max-width: 200px;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-text {
    margin-bottom: 3rem;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .services,
  .benefits,
  .how-it-works,
  .contact {
    padding: 5rem 0;
  }

  .services-grid,
  .benefits-grid,
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .service-card,
  .benefit,
  .step,
  .contact-info,
  .contact-form {
    padding: 2rem 1.5rem;
  }

  .service-icon {
    font-size: 1rem;
  }

  .benefit-icon {
    font-size: 3.5rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }
.p-4 { padding: 4rem; }

/* ==========================================================================
   ACCESSIBILITY & PERFORMANCE
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-scroll-indicator {
    animation: none;
  }
}

.cta-button:focus,
.feature-card:focus,
.service-card:focus,
.benefit:focus,
.step:focus,
.submit-button:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--text-dark);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 100;
}

.skip-link:focus {
  top: 6px;
}

@media (prefers-contrast: high) {
  :root {
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.5);
  }

  .hero-background,
  .benefits {
    background: #000;
  }

  .services,
  .how-it-works,
  .contact {
    background: #fff;
  }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .header,
  .hero-background,
  .hero-overlay,
  .hero-scroll-indicator,
  .contact-form,
  .footer {
    display: none;
  }

  .hero {
    min-height: auto;
    color: black;
    padding: 2rem 0;
  }

  .services,
  .benefits,
  .how-it-works,
  .contact {
    background: white;
    color: black;
    page-break-inside: avoid;
  }

  .service-card,
  .benefit,
  .step {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ==========================================================================
   DARK MODE SUPPORT
   ========================================================================== */

@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #2d3748;
    --text-light: #718096;
  }
}

/* ==========================================================================
   LOADING STATES
   ========================================================================== */

.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   CUSTOM SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4c93 100%);
}

/* ==========================================================================
   SELECTION & IMAGE STYLES
   ========================================================================== */

::selection {
  background: rgba(102, 126, 234, 0.2);
  color: var(--text-dark);
}

::-moz-selection {
  background: rgba(102, 126, 234, 0.2);
  color: var(--text-dark);
}

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

/* ==========================================================================
   FORM VALIDATION STYLES
   ========================================================================== */

.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
  border-color: #e74c3c;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
  border-color: #27ae60;
}

/* ==========================================================================
   TOOLTIP STYLES
   ========================================================================== */

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: var(--text-dark);
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.9rem;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* ==========================================================================
   BROWSER-SPECIFIC FIXES
   ========================================================================== */

@-moz-document url-prefix() {
  .feature-card,
  .service-card {
    backdrop-filter: none;
  }
}

@supports (-webkit-appearance: none) {
  .hero-background::before {
    will-change: transform;
  }
}

@supports (-ms-ime-align: auto) {
  .grid {
    display: -ms-grid;
  }
}



/* Base card styling */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  justify-items: center;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  border-radius: 16px;
  padding: 15px 10px;
}

.service-card:hover {
  background: #2a2a2a;
}

.service-card img {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.service-card:hover img {
  opacity: 1;
}

.service-card span {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}


@media (max-width: 768px) {
  .services-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 100%;
    max-width: none;
  }
}












/* Services Section Styles */
.offerings-area {
    padding: 80px 0;
    background: #f8f9fa;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.heading-block {
    text-align: center;
    margin-bottom: 60px;
}

.heading-primary {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.heading-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    margin: 0 auto;
    border-radius: 2px;
}

.offerings-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.offering-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-symbol {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.offering-card:hover .icon-symbol {
    transform: scale(1.1) rotate(5deg);
}

.icon-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    opacity: 0.1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.offering-card:hover .icon-backdrop {
    opacity: 0.2;
    transform: scale(1.15);
}

.card-text {
    text-align: center;
}

.card-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.card-info {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.offering-card:hover .hover-overlay {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .offerings-area {
        padding: 60px 0;
    }

    .heading-primary {
        font-size: 2rem;
    }

    .offerings-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offering-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .heading-primary {
        font-size: 1.75rem;
    }

    .card-heading {
        font-size: 1.2rem;
    }

    .icon-container {
        width: 70px;
        height: 70px;
    }

    .icon-symbol {
        font-size: 2rem;
    }
}