:root {
  --primary-yellow: #f3bc00;
  --primary-yellow-dark: #d4a500;
  --dark-bg: #1a1a2e;
  --darker-bg: #16162a;
  --text-dark: #1a1a2e;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --border-gray: #e5e7eb;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-gray);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-block;
  margin-right: auto;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--text-dark);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--primary-yellow);
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-yellow-dark);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary-yellow);
  color: var(--text-dark) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(243, 188, 0, 0.4);
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
      135deg,
      rgba(26, 26, 46, 0.85) 0%,
      rgba(26, 26, 46, 0.7) 100%
    ),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80")
      center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 150px;
  background: var(--white);
  transform: skewY(-3deg);
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 10px;
  color: var(--primary-yellow);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-yellow);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--primary-yellow);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 1px 10px rgba(243, 188, 0, 0.4);
}

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

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

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 100px;
}

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

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-yellow);
  line-height: 1;
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Benefits Section */
.benefits {
  padding: 8rem 2rem;
  padding-top: 2rem;
  background: var(--white);
}

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

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-yellow-dark);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-gray);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
  border: 1px solid var(--primary-yellow);
}

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

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(243, 188, 0, 0.15) 0%,
    rgba(243, 188, 0, 0.05) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--primary-yellow-dark);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.benefit-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Services Section */
.services {
  padding: 8rem 2rem;
  background: var(--light-gray);
  position: relative;
}

.services-intro {
  text-align: center;
  margin-bottom: 4rem;
}

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

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 1s ease;
  position: relative;
  overflow: hidden;
  border: 2px dashed transparent;
}

.service-card:hover {
  border: 2px dashed var(--primary-yellow);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed var(--primary-yellow);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
  opacity: 1;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--primary-yellow);
}

.airDeliveryIcon svg {
  margin-left: -5px;
  margin-bottom: -2px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-tag {
  display: inline-block;
  background: rgba(243, 188, 0, 0.15);
  color: var(--primary-yellow-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Consulting Section */
.consulting {
  padding: 8rem 2rem;
  background: var(--white);
}

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

.consulting-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.consulting-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.savings-highlight {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(243, 188, 0, 0.1) 0%,
    rgba(243, 188, 0, 0.05) 100%
  );
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  border: 4px solid var(--primary-yellow);
  border-left: none;
}

.savings-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-yellow-dark);
  line-height: 1;
}

.savings-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.consulting-image {
  position: relative;
}

.consulting-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.consulting-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--primary-yellow);
  border-radius: 20px;
  z-index: -1;
}

.consulting-image::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  border-radius: 20px;
  z-index: -1;
}

/* Counters Section */
.counters {
  padding: 6rem 2rem;
  padding-top: 3rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  position: relative;
  overflow: hidden;
}

.counters::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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='%23f3bc00' 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;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.counter-item {
  text-align: center;
  padding: 2rem;
}

.counter-icon {
  width: 60px;
  height: 60px;
  background: rgba(243, 188, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.counter-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-yellow);
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
}

/* Why Choose Us Section */
.why-us {
  padding: 8rem 2rem;
  background: var(--white);
}

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

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

.why-us-image img {
  width: 100%;
  border-radius: 20px;
}

.why-us-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-yellow);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(243, 188, 0, 0.3);
}

.why-us-badge-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.why-us-badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.why-us-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.why-us-list {
  list-style: none;
}

.why-us-list li {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.why-us-list li:last-child {
  border-bottom: none;
}

.check-icon {
  width: 30px;
  height: 30px;
  background: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--text-dark);
}

.why-us-list h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.why-us-list p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* How We Work Section */
.how-we-work {
  padding: 8rem 2rem;
  background: var(--light-gray);
}

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

.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-yellow);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-yellow);
}

.step-card:nth-child(4) .step-arrow,
.step-card:nth-child(8) .step-arrow {
  display: none;
}

/* Contact Section */
.contact {
  padding: 8rem 2rem;
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-info > p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.contact-details li:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(243, 188, 0, 0.15) 0%,
    rgba(243, 188, 0, 0.05) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-yellow-dark);
}

.contact-text h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-text p,
.contact-text a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: var(--primary-yellow-dark);
}

.contact-form {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 20px;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

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

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-gray);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 4px rgba(243, 188, 0, 0.1);
}

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

.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  padding-right: 3rem; /* Extra space for the arrow */
  border: 2px solid var(--border-gray);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 20px;
}

.form-group select:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 4px rgba(243, 188, 0, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f3bc00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.form-group select {
  height: 56px; /* Match the input height */
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
  font-size: 1.1rem;
  padding: 1.25rem 2rem;
}

/* Footer */
footer {
  background: var(--dark-bg);
  padding: 4rem 2rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Column */
.footer-brand .logo {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Quick Contact Links */
.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-quick a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-contact-quick a:hover {
  color: var(--primary-yellow);
}

.footer-contact-quick svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--primary-yellow);
}

/* Links Columns */
.footer-links h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-links ul a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: all 0.3s ease;
  margin-right: 0;
}

.footer-links ul a:hover {
  color: var(--white);
}

.footer-links ul a:hover::before {
  width: 12px;
  margin-right: 0.5rem;
}

/* CTA Column */
.footer-cta-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-yellow);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-cta-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-dark);
  transition: transform 0.3s ease;
}

.footer-cta-btn:hover {
  background: var(--primary-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(243, 188, 0, 0.3);
}

.footer-cta-btn:hover svg {
  transform: translateX(3px);
}

/* Bottom Bar */
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Site Credit */
.site-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.site-credit span {
  font-weight: 400;
}

.site-credit strong {
  color: var(--primary-yellow);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.site-credit svg {
  width: 0;
  height: 14px;
  opacity: 0;
  margin-left: -0.4rem;
  transform: translate(-5px, 5px);
  transition: all 0.3s ease;
}

.site-credit:hover {
  background: rgba(243, 188, 0, 0.1);
  border-color: rgba(243, 188, 0, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.site-credit:hover svg {
  width: 14px;
  opacity: 1;
  margin-left: 0;
  transform: translate(0, 0);
  stroke: var(--primary-yellow);
}

/* Responsive */
@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
}

.mobile-nav .nav-cta {
  text-align: center;
  margin-top: 2rem;
  border: none;
  background: var(--primary-yellow);
  border-radius: 50px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .benefits-grid,
  .services-grid,
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .step-card:nth-child(2) .step-arrow,
  .step-card:nth-child(4) .step-arrow,
  .step-card:nth-child(6) .step-arrow {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .consulting-wrapper,
  .why-us-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .consulting-image {
    order: -1;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

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

  .hero-container {
    padding: 7rem 1.5rem 4rem;
  }

  .benefits-grid,
  .services-grid,
  .counters-grid,
  .steps-timeline {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    display: none !important;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .why-us-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -4rem;
    display: inline-block;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }
}

/* ==================== */
/* HAMBURGER BUTTON     */
/* ==================== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  position: relative;
}

.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transform-origin: center;
}

.hamburger span:nth-child(2) {
  width: 70%;
  margin-left: auto;
}

/* Animated X on open */
.mobile-menu-btn.active .hamburger span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background: var(--white);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background: var(--white);
}

/* ==================== */
/* MOBILE NAV OVERLAY   */
/* ==================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  pointer-events: none;
}

.mobile-nav.active {
  pointer-events: all;
}

/* Animated background panels */
.mobile-nav-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.active .mobile-nav-bg {
  transform: translateX(0);
}

/* Main content container */
.mobile-nav-content {
  position: relative;
  height: 120%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -80px;
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
  overflow-y: auto;
}

.mobile-nav.active .mobile-nav-content {
  opacity: 1;
}

/* ==================== */
/* MOBILE NAV HEADER    */
/* ==================== */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-close-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-close-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.mobile-close-btn:hover {
  background: rgba(243, 188, 0, 0.2);
  border-color: var(--primary-yellow);
}

.mobile-close-btn:hover svg {
  stroke: var(--primary-yellow);
}

/* ==================== */
/* NAVIGATION LINKS     */
/* ==================== */
.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  margin-top: -20px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: 1.25rem 0.5rem;
  position: relative;
  overflow: hidden;
  transform: translateX(60px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s ease;
}

.mobile-nav.active .mobile-link {
  transform: translateX(0);
  opacity: 1;
}

/* Staggered animation delays */
.mobile-nav.active .mobile-link[data-index="1"] {
  transition-delay: 0.15s;
}
.mobile-nav.active .mobile-link[data-index="2"] {
  transition-delay: 0.2s;
}
.mobile-nav.active .mobile-link[data-index="3"] {
  transition-delay: 0.25s;
}
.mobile-nav.active .mobile-link[data-index="4"] {
  transition-delay: 0.3s;
}
.mobile-nav.active .mobile-link[data-index="5"] {
  transition-delay: 0.35s;
}

/* Hover highlight bar */
.mobile-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(
    90deg,
    rgba(243, 188, 0, 0.1) 0%,
    transparent 100%
  );
  transition: width 0.3s ease;
}

.mobile-link:hover::before,
.mobile-link:active::before {
  width: 100%;
}

.mobile-link-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-yellow);
  font-family: "Inter", monospace;
  min-width: 28px;
  opacity: 0.6;
}

.mobile-link-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  flex: 1;
  transition: color 0.3s ease;
}

.mobile-link:hover .mobile-link-text,
.mobile-link:active .mobile-link-text {
  color: var(--primary-yellow);
}

.mobile-link svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255, 255, 255, 0.3);
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-link:hover svg,
.mobile-link:active svg {
  stroke: var(--primary-yellow);
  transform: translateX(0);
  opacity: 1;
}

/* ==================== */
/* CTA BUTTON           */
/* ==================== */
.mobile-nav-cta {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease 0.4s;
  margin-top: -40px;
}

.mobile-nav.active .mobile-nav-cta {
  transform: translateY(0);
  opacity: 1;
}

.mobile-cta-btn {
  display: flex;
  align-items: center !important;
  text-align: center;
  justify-content: center !important;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: transparent;
  color: var(--primary-yellow) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 14px;
  border: 2px solid var(--primary-yellow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  line-height: 1;
}

.mobile-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-yellow);
  transition: left 0.4s ease;
  z-index: -1;
}

.mobile-cta-btn:hover {
  color: var(--text-dark) !important;
}

.mobile-cta-btn:hover::before {
  left: 0;
}

.mobile-cta-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.mobile-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ==================== */
/* FOOTER SECTION       */
/* ==================== */
.mobile-nav-footer {
  padding-top: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease 0.45s;
}

.mobile-nav.active .mobile-nav-footer {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.mobile-nav-contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.mobile-nav-contact a:hover {
  color: var(--primary-yellow);
}

.mobile-nav-stats {
  display: flex;
  gap: 1.5rem;
}

.mobile-stat {
  display: flex;
  flex-direction: column;
}

.mobile-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-yellow);
  line-height: 1;
}

.mobile-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==================== */
/* DECORATIVE ELEMENTS  */
/* ==================== */
.mobile-nav-decor {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.decor-circle {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(243, 188, 0, 0.08);
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
}

.mobile-nav.active .decor-circle {
  transform: scale(1);
}

.decor-line {
  position: absolute;
  bottom: 40%;
  right: -50%;
  width: 150%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(243, 188, 0, 0.1) 50%,
    transparent 100%
  );
  transform: rotate(-35deg);
  opacity: 0;
  transition: opacity 0.6s ease 0.4s;
}

.mobile-nav.active .decor-line {
  opacity: 1;
}

/* ==================== */
/* RESPONSIVE TRIGGER   */
/* ==================== */
@media (max-width: 992px) {
  nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav {
    display: block;
  }
}

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  border: transparent;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  fill: var(--text-dark);
}
