/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html { 
    scroll-behavior: smooth; 
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-blue: #052E5A;
    --primary-orange: #F77A2A;
    --light-blue: #dbeafe;
    --light-orange: #fed7aa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --green-600: #059669;
    --green-700: #047857;
    --case-blue: #3B99CD;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    height: 100px;       
}

.logo-img {
    height: 10rem;       
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;  
}

.nav-link {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    padding: 8px 12px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    font-size: 1.3rem;      
    line-height: 1.5;     
}

.nav-link:hover,
.nav-link.active, .mobile-nav-link.active {
            font-weight: 600;
            color: var(--primary-blue);
            border-bottom: 2px solid var(--primary-orange);
        }

  .sign {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* spacing between links */
  font-size: 1.5rem;
}

.sign a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.sign a:hover {
  color: var(--primary-blue);
}

/* Vertical divider between links */
.sign a:first-child {
  padding-right: 1rem;
  border-right: 2px solid var(--gray-400); /* adjust thickness & color */
}

.sign a:last-child {
  padding-left: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* space between icon & text */
  text-decoration: none;
}

/* Icon style */
.with-icon .icon {
  width: 1.25rem;   /* ~20px */
  height: 1.25rem;
  stroke: currentColor; /* inherit text color */
}
/* 🔥 Orange Glow Animation */
@keyframes orangePulse {
  0% {
    box-shadow: 0 0 5px var(--primary-orange),
                0 0 10px var(--primary-orange),
                0 0 20px var(--primary-orange);
  }

}

/* 🔹 Blue Glow Animation */
@keyframes bluePulse {
  0% {
    box-shadow: 0 0 5px var(--primary-blue),
                0 0 10px var(--primary-blue),
                0 0 20px var(--primary-blue);
  }
            
  
}

/* Apply opposite glow */

.btn_header {
    padding: 8px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    animation: orangePulse 2s infinite;
}
.btn_header_blue {
    padding: 8px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    animation: bluePulse 2s infinite;
}

.btn {
    padding: 8px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
}

.btn-orange {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-orange:hover {
    background: var(--primary-orange);
    transform: translateY(-1px);
}

.btn-blue {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-blue:hover {
    background: var(--primary-blue);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-green {
    background: var(--green-600);
    color: var(--white);
}

.btn-green:hover {
    background: var(--green-700);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-700);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    padding: 16px 0;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
}

.mobile-nav-link:hover {
    color: var(--primary-blue);
}

.mobile-cta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
 

.btn-green {
  background: #28a745;
  color: white;
}

.btn:hover {
  opacity: 0.9;
}

    /* Responsive Design */
    /* Desktop styles (for screens > 768px) */
    @media (min-width: 769px) {

      .mobile-menu-btn,
      .mobile-menu {
        display: none;
      }
    }

    /* Mobile styles (for screens <= 768px) */
    @media (max-width: 768px) {

      /* Hide desktop navigation and CTA buttons */
      .desktop-nav,
      .desktop-cta {
        display: none;
      }

      /* Display the mobile menu button */
      .mobile-menu-btn {
        cursor: pointer;
      }

      /* Style the mobile menu, hidden by default */
      .mobile-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        /* higher than header (1000) */
      }


      /* When the menu has the "open" class, show it */
      .mobile-menu.open {
        display: block;
        margin-top: 5rem;
      }

      .mobile-menu .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .mobile-nav-link {
        display: block;
        width: 100%;
        padding: 10px 0;
        text-align: center;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        color: var(--gray-600);
        font-weight: 500;
      }

      .mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
      }
    }

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Role Choice Section */
.role-section {
  padding: 72px 0;
  background: var(--light);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.role-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 22px;
  border-radius: 16px;
  text-decoration: none;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  will-change: transform;
  border: 1px solid rgba(16,24,40,0.06);
}

.role-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.10);
}

.role-card:focus-visible {
  outline: 3px solid #2e90fa;
  outline-offset: 2px;
}

.role-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%);
}

.role-icon i {
  font-size: 26px;
}

.role-meta h3 {
  margin: 0 0 6px 0;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #111827; /* near-black */
}

.role-meta p {
  margin: 0 0 10px 0;
  color: #475467; /* muted text */
}

.role-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  letter-spacing: .2px;
}

.role-cta i { font-size: .9rem; }

/* Subtle gradient accents per card */
.role-card--seeker .role-icon {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}
.role-card--employer .role-icon {
  background: linear-gradient(135deg, #fff1e6 0%, #ffe4d6 100%);
}

/* Hover ink effect (no lag, pure CSS) */
.role-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: radial-gradient(120px 60px at var(--x, 50%) var(--y, 50%), rgba(46,144,250,0.06), transparent 60%);
  opacity: 0;
  transition: opacity .18s ease;
}
.role-card:hover::after { opacity: 1; }

/* Responsive */
@media (max-width: 900px) {
    .btn-orange, .btn-blue {
        justify-content: center;
    }
  .role-grid { grid-template-columns: 1fr; }
}
.choice-title {
      margin-top: 12px;
      font-size: 1.2rem;
      font-weight: 600;
      color: #333;
    }

#jobseeker-section,
#employer-section {
  scroll-margin-top: 100px;
}
/* Hero Section */
.hero {
    background:  var(--primary-blue);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}
.hero-content {
       margin-top: 8rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
#jobseeker-section strong{
    color: var(--case-blue);
}
#employer-section strong{
    color: var(--primary-orange);
}
#jobseeker-section,
#employer-section {
  display: none; /* hide both by default */
}


/* Value Proposition Section */
.value-proposition {
    padding: 80px 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 24px;
}
#jobseeker-section .feature-icon {
    color: var(--primary-blue);
}
#employer-section .feature-icon {
    color: var(--primary-orange);
}
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--gray-600);
}

/* Featured Services Section */
.featured-services {
    padding: 20px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--gray-50);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--gray-600);
}

.section-cta {
    text-align: center;
}

/* Pricing Highlights Section */
.pricing-highlights {
    padding: 80px 0;
    background: var(--white);
}

.pricing-card {
    background: var(--light-blue);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.price-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.price-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 24px;
    font-weight: 600;
}

/* Page Content Styles */
.page-content {
    padding: 10rem 0;
    background: var(--gray-50);
}

.page-header {
    text-align: center;
    margin-bottom: 64px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

/* Services Page Styles */
.servicesoffer h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #ff6600; /* Orange accent line */
  display: inline-block;
}

.servicesoffer h2::before {
  content: "◆ ";
  color: #ff6600; /* Accent icon before heading */
  font-size: 1.2rem;
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card-full {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    transition: all 0.2s ease;
}

.service-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card-full i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 24px;
}
.service-card-full-orange i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 24px;
}

.service-card-full, .service-card-full-orange h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.service-card-full, .service-card-full-orange p {
    color: var(--gray-600);
}

.services-cta {
    text-align: center;
}

.cta-card-blue {
    background: var(--primary-blue);
    color: var(--white);
    padding: 48px;
    border-radius: 12px;
}
.cta-card-orange {
    background: var(--primary-orange);
    color: var(--white);
    padding: 48px;
    border-radius: 12px;
}

.cta-card-blue, .cta-card-orange h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-card-blue, .cta-card-orange p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Pricing Page Styles */
.main-pricing {
    margin-bottom: 64px;
}

.pricing-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 24px;
    border-bottom-left-radius: 8px;
    font-weight: 600;
}

.pricing-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.main-price {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.price-desc {
    font-size: 1.25rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.price-detail {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.pricing-plan {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    position: relative;
}

.pricing-plan.featured {
    border: 2px solid var(--primary-orange);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.pricing-plan.featured .plan-icon {
    color: var(--primary-orange);
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-600);
    margin-bottom: 8px;
}

.pricing-plan.featured .plan-price {
    color: var(--primary-orange);
}

.plan-header p {
    color: var(--gray-600);
}

.plan-features {
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature i {
    color: var(--green-600);
    flex-shrink: 0;
}

.pricing-plan.featured .feature i {
    color: var(--primary-orange);
}

.feature span {
    color: var(--gray-700);
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.highlight-section {
  background: #fff8e1; /* soft highlight background */
  border: 1px solid #ffd54f;
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
}
.highlight-section-jobseeker {
    background: var(--light-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;

}

.highlight-section-jobseeker h4 {
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin-bottom: 12px;
  text-align: center;
}

.highlight-section-jobseeker ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
}

.highlight-section-jobseeker ul li {
  margin-bottom: 8px;
}

.highlight-section h4 {
  color: #ff9800;
  font-size: 1.25rem;
  margin-bottom: 12px;
  text-align: center;
}

.highlight-section ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
}

.highlight-section ul li {
  margin-bottom: 8px;
}

.info-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.info-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.info-card p {
    color: var(--gray-600);
}

.contact-cta {
    background: var(--gray-100);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* About Page Styles */
.mission-statement {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-orange) 100%);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 64px;
}

.mission-statement h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.mission-statement p {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 800px;
    margin: 0 auto;
}

.commitments {
    margin-bottom: 64px;
}

.commitments h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 48px;
}

.commitment-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.commitment-icon {
    background: var(--light-blue);
    padding: 16px;
    border-radius: 12px;
    flex-shrink: 0;
}

.commitment-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
}

.commitment-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.commitment-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.values {
    background: var(--gray-50);
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 64px;
}

.values h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 48px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    text-align: center;
}

.value-card i {
    background: var(--light-orange);
    padding: 16px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.value-card p {
    color: var(--gray-600);
}

.statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.stat-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-card:nth-child(1) .stat-number {
    color: var(--primary-blue);
}

.stat-card:nth-child(2) .stat-number {
    color: var(--primary-orange);
}

.stat-card:nth-child(3) .stat-number {
    color: var(--green-600);
}

.stat-card:nth-child(4) .stat-number {
    color: #8b5cf6;
}

.stat-card p {
    color: var(--gray-600);
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-cta p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
.footer {
    background: var(--light-blue);
    color: var(--gray-800);
    padding: 20px 0;
}

.footer-content {
    display: grid;
    justify-content: center;
    /* align-items: center; */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.footer-section p {
    color: black;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: black;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--primary-orange);
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section a {
    display: block;
    color: var(--gray-800);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-item i {
    color: var(--gray-600);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav,
    .desktop-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .commitment-item {
        flex-direction: column;
        text-align: center;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
    }

    .main-price {
        font-size: 4rem;
    }

    .pricing-hero h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }

    .main-price {
        font-size: 3rem;
    }

    .pricing-hero {
        padding: 32px 24px;
    }

    .services-grid-full {
        grid-template-columns: 1fr;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
    }
}