/* Executive Elite Agency - Complete Rebuild */
/* Brand Colors - Updated to match exact brand specifications */

:root {
  --primary-blue: #0E009D;
  --accent-gold: #D4AF37;
  --dark: #1F2937;
  --light-gray: #F3F4F6;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

/* Luxury Splash Screen */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.splash-content {
  text-align: center;
  animation: fadeInUp 1s ease;
}

.splash-logo {
  max-width: 400px;
  height: auto;
  margin-bottom: 2rem;
  animation: pulse 2s ease infinite;
}

.splash-tagline {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  animation: fadeIn 1.5s ease;
}

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

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

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

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

/* Navigation with Dropdown */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid #E5E7EB;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
}

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

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li > a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  display: block;
}

.nav-menu > li > a:hover {
  color: var(--accent-gold);
}

/* Dropdown Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* Page Styling */
.page {
  min-height: 100vh;
}

.services-page, .about-page, .pricing-page, .contact-page,
.career-detail-page, .service-detail-page, .apply-page {
  padding-bottom: 4rem;
}

/* Service Cards */
.services-grid {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-card p {
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn-learn-more {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent-gold);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background: #D97706;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  padding: 0.875rem 2rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: var(--white);
}

/* About Page */
.about-content {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.about-section {
  margin-bottom: 4rem;
}

.about-section h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
  margin: 1.5rem 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  color: #4B5563;
}

/* Pricing Page */
.pricing-grid {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.07);
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent-gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
}

.price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: #6B7280;
}

.features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.features li {
  padding: 0.75rem 0;
  color: #4B5563;
  border-bottom: 1px solid #E5E7EB;
}

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

.custom-pricing {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem;
  text-align: center;
  background: var(--light-gray);
  border-radius: 12px;
}

.custom-pricing h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.faq-section {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

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

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.faq-item p {
  color: #4B5563;
  line-height: 1.7;
}

/* Contact Page */
.contact-content {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-container, .contact-info-container {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-form-container h2, .contact-info-container h2 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.info-item p {
  color: #4B5563;
  line-height: 1.7;
}

/* Legal Pages */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-page h1 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.legal-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.legal-content h2 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin: 2rem 0 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #4B5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Main Footer */
.main-footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

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

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

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

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

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

.footer-bottom p {
  opacity: 0.7;
}
.page-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero-contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: #D97706;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

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

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--light-gray);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
}

/* Career Cards Grid */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.career-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.career-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.career-card-header {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), #0E009D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.career-card-header i {
  font-size: 2rem;
  color: var(--white);
}

.career-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.career-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.career-badge-large {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.career-card p {
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Job Detail Layout */
.job-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.job-detail-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.job-section {
  margin-bottom: 3rem;
}

.job-section h2 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.job-section ul {
  list-style: none;
  margin: 1rem 0;
}

.job-section li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  line-height: 1.7;
}

.job-section li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 0;
}

.benefits-list li::before {
  display: none;
}

.benefits-list i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.disclaimer {
  background: #FEF3C7;
  padding: 1.5rem;
  border-left: 4px solid var(--accent-gold);
  border-radius: 4px;
  margin-top: 1rem;
}

.job-note {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
}

.apply-now-section {
  text-align: center;
  padding: 2rem 0;
}

.job-detail-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

.sidebar-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

/* Process Steps */
.process-steps {
  margin-top: 3rem;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.process-step.reverse {
  direction: rtl;
}

.process-step.reverse > * {
  direction: ltr;
}

.process-step-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px var(--shadow);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.process-step-content h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.process-step-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4B5563;
}

/* Referral Box */
.referral-box {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border: 3px solid var(--accent-gold);
}

/* Career Detail Page */
.career-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  color: var(--white);
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.career-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.openings {
  font-size: 1.3rem;
  opacity: 0.95;
}

.career-content {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.career-section {
  background: var(--white);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.career-section h2 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.career-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 1rem;
}

.career-section ul {
  list-style: none;
  margin: 1.5rem 0;
}

.career-section li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  line-height: 1.7;
  color: #4B5563;
}

.career-section li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.apply-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin-top: 3rem;
}

.apply-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.apply-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.referral-program {
  background: #FEF3C7;
  padding: 2rem;
  border-left: 4px solid var(--accent-gold);
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
}

.referral-program h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.referral-program p {
  color: #4B5563;
  font-size: 1.1rem;
}

/* Service Detail Page */
.service-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  color: var(--white);
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.service-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-hero p {
  font-size: 1.3rem;
  opacity: 0.95;
}

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

.service-intro {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 3rem;
  text-align: center;
}

.service-intro h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.service-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4B5563;
}

.service-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.category-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.category-card h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.category-card p {
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.category-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-card li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: #6B7280;
}

.category-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 600;
}

.service-benefits {
  background: var(--light-gray);
  padding: 4rem 2rem;
  border-radius: 12px;
  margin-bottom: 4rem;
}

.service-benefits h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 3rem;
}

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

.benefit-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
}

.benefit-item h4 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.benefit-item p {
  color: #6B7280;
  line-height: 1.7;
}

.service-industries {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 4rem;
}

.service-industries h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  text-align: center;
}

.industry-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.industry-list li {
  padding: 0.75rem 1rem 0.75rem 2rem;
  position: relative;
  color: #4B5563;
}

.industry-list li::before {
  content: '▸';
  position: absolute;
  left: 0.5rem;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Application Form Page */
.application-form-container {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.application-form-container > form {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--light-gray);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.radio-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: #6B7280;
  font-size: 0.9rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.referral-box i {
  font-size: 4rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.referral-box h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.referral-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 1rem;
}

/* Forms */
.application-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 2px solid #D1D5DB;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.8rem;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
}

.form-actions {
  text-align: center;
  margin-top: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-section h3 {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
  .job-detail-layout,
  .process-step {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-step.reverse {
    direction: ltr;
  }

  .job-detail-sidebar {
    position: static;
  }

  .dropdown-content {
    min-width: 300px;
  }

  .luxury-careers-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mobile-menu.active {
    max-height: 500px;
  }

  .mobile-nav-link {
    padding: 0.75rem 0;
    color: var(--dark);
    text-decoration: none;
  }

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

  .luxury-careers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-contact-info {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-contact-grid {
    grid-template-columns: 1fr;
  }
}

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

  .section {
    padding: 3rem 0;
  }

  .application-form-container {
    padding: 2rem 1.5rem;
  }

  .careers-hero-luxury h1 {
    font-size: 2.5rem;
  }

  .luxury-career-card {
    padding: 2rem 1.5rem;
  }
}

/* ========================================
   LUXURY CAREERS PAGE STYLING
   ======================================== */

.careers-page-luxury {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

.careers-hero-luxury {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 50%, #0E009D 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.careers-hero-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.careers-hero-luxury .container {
  position: relative;
  z-index: 1;
}

.hero-header {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tagline {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0;
}

.hero-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.contact-item span {
  font-size: 1rem;
  opacity: 0.95;
}

.hero-description {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 2rem auto 0;
  opacity: 0.95;
}

.careers-grid-section {
  padding: 5rem 0;
}

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

.section-intro h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-intro p {
  font-size: 1.2rem;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
}

.luxury-careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-career-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}

.luxury-career-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.luxury-career-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
  border-color: var(--accent-gold);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #D97706 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
  transition: all 0.3s ease;
}

.luxury-career-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.card-icon i {
  font-size: 2rem;
  color: var(--white);
}

.luxury-career-card h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.card-description {
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
  min-height: 120px;
}

.card-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.btn-details,
.btn-apply {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

.btn-details:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-apply {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #D97706 100%);
  color: var(--white);
  border: 2px solid transparent;
}

.btn-apply:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.referral-section-luxury {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.referral-section-luxury::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.referral-card-luxury {
  background: var(--white);
  border-radius: 20px;
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  border: 3px solid var(--accent-gold);
}

.referral-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #D97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  animation: pulse-icon 2s ease-in-out infinite;
}

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

.referral-icon i {
  font-size: 3rem;
  color: var(--white);
}

.referral-card-luxury h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.referral-highlight {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.referral-highlight .amount {
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.referral-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-referral {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #D97706 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-referral:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* ============================================================
   PRICING PLANS PAGE
   ============================================================ */

.pricing-plans-page {
  background: var(--light-gray);
}

.pricing-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.pricing-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.pricing-hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 3rem;
  opacity: 0.8;
}

/* Subscription Plans Section */
.subscription-plans,
.hourly-plans,
.alacarte-services {
  padding: 4rem 2rem;
}

.subscription-plans {
  background: var(--white);
}

.hourly-plans {
  background: var(--light-gray);
}

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

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plans-grid.two-column {
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  max-width: 900px;
}

/* Plan Cards */
.plan-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-gold);
}

.best-value-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent-gold);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 1.5rem;
}

.plan-name {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.plan-price .currency {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-right: 0.5rem;
}

.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.plan-price .frequency {
  font-size: 1.2rem;
  color: var(--dark);
  margin-left: 0.5rem;
}

.plan-frequency {
  color: var(--dark);
  opacity: 0.7;
  font-size: 1rem;
}

.plan-tagline {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.75rem 0;
  color: var(--dark);
  font-size: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.plan-features li:last-child {
  border-bottom: none;
}

.hourly-card .plan-description {
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* A La Carte Grid */
.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 15px var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.2);
}

.service-card h4 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-price {
  color: var(--accent-gold);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-frequency {
  color: var(--dark);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Pricing CTA Section */
.pricing-cta {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.pricing-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ============================================================
   GET STARTED FORMS
   ============================================================ */

.get-started-form {
  background: var(--white);
  min-height: 100vh;
}

/* Hero Section for Form */
.form-hero-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-bottom: 0;
}

.form-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 64, 175, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-hero-title {
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-hero-subtitle {
  color: var(--accent-gold);
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Form Container */
.form-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-section-title {
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-intro {
  color: var(--dark);
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Intake Form Styles */
.intake-form {
  max-width: 100%;
  margin: 0 auto;
  background: var(--white);
}

.form-section {
  margin-bottom: 3rem;
}

.form-section-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--accent-gold);
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

/* Checkbox Styling */
.checkbox-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1rem;
  display: block;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: normal;
  color: var(--dark);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.checkbox-group label:hover {
  background: var(--light-gray);
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
  cursor: pointer;
  accent-color: var(--primary-blue);
}

/* Form Section Fieldsets */
fieldset {
  border: none;
  padding: 0;
  margin-bottom: 3rem;
}

legend {
  display: none;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--light-gray);
}

.form-actions .btn {
  min-width: 250px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .plans-grid,
  .plans-grid.two-column {
    grid-template-columns: 1fr;
  }
  
  .plan-price .amount {
    font-size: 2.5rem;
  }
  
  /* Form Responsive */
  .form-hero-section {
    height: 300px;
  }
  
  .form-hero-title {
    font-size: 2rem;
  }
  
  .form-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .form-container {
    padding: 3rem 1.5rem;
  }
  
  .form-section-title {
    font-size: 2rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .pricing-hero {
    padding: 4rem 1rem 2rem;
  }
  
  .form-hero-section {
    height: 250px;
  }
  
  .form-hero-title {
    font-size: 1.5rem;
  }
  
  .form-hero-subtitle {
    font-size: 1rem;
  }
  
  .form-container {
    padding: 2rem 1rem;
  }
  
  .form-section-title {
    font-size: 1.75rem;
  }
  
  .form-intro {
    font-size: 1rem;
  }
  
  .pricing-hero h1 {
    font-size: 1.5rem;
  }
  
  .plan-card {
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}

/* ============================================================
   MOBILE OPTIMIZATION & LUXURY ENHANCEMENTS
   ============================================================ */

/* Improved Touch Targets for Mobile */
@media (max-width: 768px) {
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-light {
    min-height: 48px;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  /* Navigation improvements */
  .nav-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
  }
  
  /* Form inputs must be at least 44px tall */
  .form-row input,
  .form-row select,
  .form-row textarea {
    min-height: 48px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Checkbox and radio larger */
  .checkbox-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    min-height: 24px;
  }
  
  /* Pricing cards mobile optimization */
  .plan-card,
  .service-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .plan-price .amount {
    font-size: 2.5rem;
  }
  
  /* Prevent text overflow */
  .plan-features li,
  .service-card h4,
  .form-row label {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Better spacing on mobile */
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 2rem 0;
  }
}

/* Ultra-small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
  .pricing-hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .plan-name {
    font-size: 1.5rem;
  }
  
  .plan-price .amount {
    font-size: 2rem;
  }
}

/* Luxury Enhancements */
.plan-card,
.service-card,
.hourly-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.plan-card:hover,
.service-card:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #FEF3C7 10%, #FFFFFF 100%);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.2);
}

/* Glassmorphism for hero sections */
.pricing-hero,
.form-header,
.pricing-cta {
  backdrop-filter: blur(10px);
}

/* Smooth animations */
.plan-card,
.service-card,
.btn {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Better focus states for accessibility */
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.15);
  transform: translateY(-2px);
}

.btn:focus {
  outline: 3px solid rgba(30, 58, 138, 0.5);
  outline-offset: 2px;
}

/* Loading state for splash screen */
#splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Ensure no horizontal scroll */
body {
  overflow-x: hidden;
}

.container,
.nav-container,
.footer-container {
  max-width: 100%;
  overflow-x: hidden;
}

/* Safe area for notched devices (iPhone X, etc.) */
@supports (padding: max(0px)) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  
  .main-nav {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* Improved readability */
p, li {
  line-height: 1.7;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4 {
  letter-spacing: -0.5px;
  font-weight: 600;
}

/* Premium shadows */
.plan-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04);
}

.plan-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
              0 4px 16px rgba(0, 0, 0, 0.08),
              0 0 0 1px var(--accent-gold);
}

/* Sticky form actions on mobile */
@media (max-width: 768px) {
  .form-actions {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 1.5rem 1rem;
    margin: 0 -1.5rem -1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }
}

/* ========================================
   HOME PAGE REDESIGN - WIX STYLE
   Brand Colors: Blue #0E009D + Gold #D4AF37
   ======================================== */

.home-page {
  background: var(--white);
}

/* Hero Section */
.home-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 50%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-mission {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Easy Steps Section */
.easy-steps {
  padding: 5rem 0;
  background: var(--light-gray);
}

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

.step-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.step-card h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--dark);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Mission Statement */
.mission-statement h2 {
  font-style: italic;
  line-height: 1.8;
}

/* Services Showcase */
.services-showcase {
  padding: 6rem 0;
  background: var(--white);
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.service-showcase-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(30, 58, 138, 0.2);
}

.service-image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-showcase-card:hover .service-showcase-image {
  transform: scale(1.1);
}

.service-showcase-content {
  padding: 2rem;
}

.service-showcase-content h3 {
  font-size: 1.75rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-showcase-content p {
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
}

.cta-section h2 {
  color: var(--primary-blue);
}

/* Gold Button Style */
.btn-gold {
  background: var(--accent-gold);
  color: var(--white);
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  background: #D97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}

.btn-large {
  padding: 1.2rem 3.5rem;
  font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .home-hero {
    padding: 5rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-mission {
    font-size: 1.1rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-image-container {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .hero-mission {
    font-size: 1rem;
  }
  
  .step-card {
    padding: 2rem 1.5rem;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
  }
}


/* ========================================
   GET STARTED FORM - WIX STYLE REDESIGN
   ======================================== */

.form-hero-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.form-hero-image .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-intro {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 2rem;
  color: var(--dark);
}

.form-section-title {
  font-size: 2rem;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 600;
}

.form-section-subtitle {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.form-section {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: none;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.875rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.checkbox-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  display: block;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.checkbox-group label:hover {
  background: var(--light-gray);
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent-gold);
}

.form-actions {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .form-hero-image {
    height: 250px;
    margin-bottom: 2rem;
  }
  
  .form-section {
    padding: 2rem 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  
  .form-section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-hero-image {
    height: 200px;
  }
  
  .form-section {
    padding: 1.5rem 1rem;
  }
  
  .form-intro {
    font-size: 1rem;
  }
}


/* ======================================
   Services Page - Comprehensive Layout
   ====================================== */

/* Services Hero Section */
.services-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.services-hero-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.services-hero-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  opacity: 0.95;
}

.services-hero-subtext {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Service Detail Sections */
.service-detail {
  padding: 5rem 2rem;
  background: var(--white);
}

.service-detail-reverse {
  background: var(--light-gray);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-reverse .service-detail-grid {
  direction: rtl;
}

.service-detail-reverse .service-detail-content {
  direction: ltr;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-content h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.service-detail-content > p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-features li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.05rem;
  line-height: 1.6;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features strong {
  color: var(--primary-blue);
  font-weight: 600;
}

.service-cta-text {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 2rem;
  font-style: italic;
}

/* A La Carte Section */
.alacarte-section {
  padding: 5rem 2rem;
  background: var(--light-gray);
}

.alacarte-title {
  font-size: 3rem;
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.alacarte-intro {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
  color: var(--dark);
}

.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.alacarte-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alacarte-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.alacarte-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.alacarte-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.alacarte-card:hover .alacarte-image img {
  transform: scale(1.05);
}

.alacarte-card h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  padding: 1.5rem 1.5rem 1rem;
  font-weight: 600;
}

.alacarte-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  padding: 0 1.5rem 1.5rem;
}

.alacarte-card .btn {
  margin: 0 1.5rem 1.5rem;
}

/* Bonus Sections */
.bonus-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.bonus-section-alt {
  background: var(--light-gray);
}

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

.bonus-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.bonus-header h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.bonus-subtitle {
  font-size: 1.3rem;
  color: var(--dark);
  opacity: 0.8;
}

.bonus-content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.bonus-content-grid-reverse {
  grid-template-columns: 1fr 1.5fr;
  direction: rtl;
}

.bonus-content-grid-reverse .bonus-text {
  direction: ltr;
}

.bonus-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.bonus-services-title {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin: 2rem 0 1.5rem;
  font-weight: 600;
}

.bonus-services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.bonus-services-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bonus-services-list li:last-child {
  border-bottom: none;
}

.bonus-services-list strong {
  color: var(--primary-blue);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.bonus-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 2rem;
}

/* Final CTA Section */
.final-cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0E009D 100%);
  color: var(--white);
  text-align: center;
}

.final-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.final-cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .service-detail-grid,
  .bonus-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-detail-reverse .service-detail-grid,
  .bonus-content-grid-reverse {
    direction: ltr;
  }

  .bonus-image img {
    position: static;
  }

  .alacarte-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 3rem 1.5rem 2.5rem;
  }

  .services-hero-title {
    font-size: 2.2rem;
  }

  .services-hero-intro,
  .services-hero-subtext {
    font-size: 1rem;
  }

  .service-detail,
  .alacarte-section,
  .bonus-section {
    padding: 3rem 1.5rem;
  }

  .service-detail-content h2,
  .bonus-header h2 {
    font-size: 2rem;
  }

  .alacarte-title {
    font-size: 2.2rem;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Mobile dropdown menu */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--light-gray);
    margin-top: 0.5rem;
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .services-hero-title {
    font-size: 1.8rem;
  }

  .service-detail-content h2 {
    font-size: 1.75rem;
  }

  .bonus-header h2 {
    font-size: 1.75rem;
  }

  .service-features li,
  .bonus-services-list li {
    font-size: 0.95rem;
  }
}

/* ======================================
   A La Carte Form Pages - Clean Design
   ====================================== */

.alacarte-form-page {
  background: var(--white);
}

/* Hero Section with Image */
.alacarte-form-hero {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
}

.alacarte-hero-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.alacarte-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alacarte-hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(14, 0, 157, 0.3), rgba(14, 0, 157, 0.6));
}

.alacarte-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 1;
}

.alacarte-hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Form Section */
.alacarte-form-section {
  padding: 3rem 2rem 5rem;
}

.alacarte-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 3rem;
}

.alacarte-form {
  width: 100%;
}

/* Form Groups */
.form-group {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid var(--light-gray);
}

.form-group:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.form-group-title {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Form Rows and Columns */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-col {
  display: flex;
  flex-direction: column;
}

.form-col-full {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
}

/* Form Elements */
.form-col label,
.form-col-full label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-col input,
.form-col select,
.form-col textarea,
.form-col-full input,
.form-col-full select,
.form-col-full textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-col input:focus,
.form-col select:focus,
.form-col textarea:focus,
.form-col-full input:focus,
.form-col-full select:focus,
.form-col-full textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(14, 0, 157, 0.1);
}

.form-col textarea,
.form-col-full textarea {
  resize: vertical;
  min-height: 80px;
}

/* Form Submit */
.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-submit .btn {
  min-width: 250px;
}

.form-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--dark);
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Skip Tracing Info Section */
.skip-tracing-info {
  padding: 3rem 2rem;
  background: var(--light-gray);
}

.info-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
}

.services-list {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.service-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-item h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
}

.why-choose {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.why-choose h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-choose p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .alacarte-hero-image {
    height: 250px;
  }

  .alacarte-hero-content h1 {
    font-size: 2rem;
  }

  .alacarte-form-wrapper {
    padding: 2rem 1.5rem;
  }

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

  .form-group-title {
    font-size: 1.3rem;
  }

  .form-submit .btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .alacarte-hero-image {
    height: 200px;
  }

  .alacarte-hero-content {
    padding: 1.5rem;
  }

  .alacarte-hero-content h1 {
    font-size: 1.6rem;
  }

  .alacarte-form-section {
    padding: 2rem 1rem 3rem;
  }

  .alacarte-form-wrapper {
    padding: 1.5rem 1rem;
  }
}

/* ========================================
   ABOUT PAGE - NEW LAYOUT WITH IMAGES
   ======================================== */

.about-page-new {
  background: var(--white);
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1a0eb3 100%);
  color: var(--white);
  padding: 6rem 0 4rem;
  text-align: center;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Our Story Section */
.about-story {
  padding: 5rem 0;
  background: var(--white);
}

.about-story h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.about-story p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Marketing Section */
.about-marketing {
  padding: 5rem 0;
  background: var(--light-gray);
}

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

.marketing-text h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  font-weight: 700;
}

.marketing-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.marketing-cta {
  font-weight: 600;
  color: var(--primary-blue);
}

.marketing-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Process Section */
.about-process {
  padding: 5rem 0;
  background: var(--white);
}

.process-main-title {
  font-size: 2.5rem;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.process-subtitle {
  font-size: 1.25rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 400;
}

/* Process Steps */
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.process-step-left {
  grid-template-columns: 400px 1fr;
}

.process-step-right {
  grid-template-columns: 1fr 400px;
}

.process-image {
  width: 100%;
}

.process-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.process-content h3 {
  font-size: 1.75rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.process-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-content li {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  position: relative;
}

.process-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.process-content strong {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Contact Form Section */
.about-contact-form {
  padding: 5rem 0;
  background: var(--light-gray);
}

.about-contact-form h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.form-intro {
  text-align: center;
  font-size: 1.125rem;
  color: var(--dark);
  margin-bottom: 3rem;
}

.contact-form-grid {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  margin-bottom: 1.5rem;
}

.contact-form-grid label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form-grid input,
.contact-form-grid textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

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

.form-submit-center {
  text-align: center;
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

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

  .process-step-left,
  .process-step-right {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-image img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 0 3rem;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-story,
  .about-marketing,
  .about-process,
  .about-contact-form {
    padding: 3rem 0;
  }

  .about-story h2,
  .marketing-text h2,
  .process-main-title,
  .about-contact-form h2 {
    font-size: 2rem;
  }

  .about-story p,
  .marketing-text p {
    font-size: 1rem;
    text-align: left;
  }

  .process-content h3 {
    font-size: 1.5rem;
  }

  .process-content li {
    font-size: 1rem;
  }

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

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

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.75rem;
  }

  .about-story h2,
  .marketing-text h2,
  .process-main-title,
  .about-contact-form h2 {
    font-size: 1.75rem;
  }

  .process-image img {
    height: 200px;
  }

  .contact-form-grid {
    padding: 1.5rem 1rem;
  }
}

/* ========================================
   MOBILE HAMBURGER MENU & DROPDOWN FIX
   ======================================== */

/* Mobile Menu Toggle Button (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Desktop Dropdown - Global fallback styles */
.nav-menu .nav-dropdown {
  position: relative;
}

.nav-menu .nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
  margin-top: 0.5rem;
  list-style: none;
}

.nav-menu .nav-dropdown:hover .dropdown-menu,
.nav-menu .nav-dropdown.active .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Desktop Dropdown - Fix hover functionality */
@media (min-width: 769px) {
  .nav-menu .nav-dropdown {
    position: relative;
  }

  /* Dropdown arrow */
  .nav-menu .dropdown-arrow {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
    display: inline-block;
  }

  .nav-menu .nav-dropdown.active .dropdown-arrow,
  .nav-menu .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-menu .nav-dropdown .dropdown-menu {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: var(--white) !important;
    min-width: 250px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border-radius: 8px !important;
    padding: 0.5rem 0 !important;
    z-index: 1000 !important;
    margin-top: 0.5rem !important;
    list-style: none !important;
  }

  /* Show dropdown on hover (desktop) */
  .nav-menu .nav-dropdown:hover .dropdown-menu,
  .nav-menu .nav-dropdown.active .dropdown-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .nav-menu .dropdown-menu li {
    list-style: none;
    margin: 0;
  }

  .nav-menu .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    white-space: nowrap;
  }

  .nav-menu .dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding-left: 2rem;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Show hamburger menu on mobile */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide nav menu by default on mobile */
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
  }

  /* Show menu when active */
  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu > li > a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--dark);
    font-size: 1.0625rem;
  }

  /* Mobile dropdown styles - FIX: Full width and visible */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: var(--light-gray);
    margin: 0;
    border-radius: 0;
    padding: 0;
    width: 100%;
    min-width: 100%;
    left: 0;
    right: 0;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu li {
    width: 100%;
  }

  .dropdown-menu a {
    padding: 0.75rem 2rem;
    font-size: 0.9375rem;
    width: 100%;
    box-sizing: border-box;
  }

  .dropdown-menu a:hover {
    background: #e0e0e0;
    padding-left: 2.5rem;
  }

  /* Add arrow indicator for dropdown on mobile */
  .nav-dropdown > a::after {
    content: " ▼";
    font-size: 0.75rem;
    margin-left: 0.5rem;
  }

  .nav-dropdown.active > a::after {
    content: " ▲";
  }
}

/* Fix nav container on mobile */
@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
  }
}

/* ============================================================
   MOBILE-FRIENDLY COMPARISON CARDS (replaces overflow tables)
   ============================================================ */
.compare-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.compare-card {
  background: white;
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border-left: 4px solid var(--accent-gold);
}

.compare-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}

.compare-key {
  color: #6b7280;
}

.compare-val {
  font-weight: 700;
}

.compare-val.gold  { color: var(--accent-gold); }
.compare-val.green { color: #059669; }
.compare-val.muted { color: #9ca3af; font-weight: 500; }

/* ============================================================
   CAREERS JOB STATUS BADGES
   ============================================================ */
.job-status-open {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.job-status-filled {
  display: inline-block;
  background: #fee2e2;
  color: #991b1b;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.job-status-closed {
  display: inline-block;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

/* Dim filled/closed cards */
.luxury-career-card.filled,
.luxury-career-card.closed {
  opacity: 0.65;
  filter: grayscale(30%);
}

.luxury-career-card.filled .btn-apply,
.luxury-career-card.closed .btn-apply {
  background: #d1d5db !important;
  color: #6b7280 !important;
  pointer-events: none;
  cursor: not-allowed;
}

/* Admin careers control panel */
.admin-careers-panel {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.admin-careers-panel table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.admin-careers-panel th {
  background: #f1f5f9;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-careers-panel td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9rem;
  vertical-align: middle;
}

.admin-status-btn {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin-right: 0.3rem;
  text-decoration: none;
}

.admin-status-btn.open  { background: #d1fae5; color: #065f46; }
.admin-status-btn.fill  { background: #fee2e2; color: #991b1b; }
.admin-status-btn.close { background: #f3f4f6; color: #6b7280; }

/* ============================================================
   GLOBAL MOBILE OVERFLOW FIX - pricing page sections
   ============================================================ */
.pricing-plans-page,
.pricing-plans-page .subscription-plans,
.pricing-plans-page .hourly-plans,
.pricing-plans-page .alacarte-services,
.pricing-plans-page .website-packages,
.pricing-plans-page .value-proposition {
  overflow-x: hidden;
  max-width: 100vw;
  box-sizing: border-box;
}

.pricing-plans-page .container {
  width: 100%;
  max-width: 1200px;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .compare-cards {
    grid-template-columns: 1fr;
  }

  .plans-grid,
  .plans-grid.two-column,
  .plans-grid.three-column,
  .plans-grid.four-column,
  .alacarte-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .plan-price .amount {
    font-size: 2.5rem;
  }

  .savings-comparison,
  .price-comparison {
    padding: 1.2rem 0.8rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* ============================================================
   CRITICAL GLOBAL MOBILE FIX — prevents ALL horizontal scroll
   ============================================================ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Pricing page - nuclear option: clamp all widths */
.pricing-plans-page * {
  max-width: 100%;
}

.pricing-plans-page .savings-comparison,
.pricing-plans-page .price-comparison {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* plans-grid must never exceed viewport */
.plans-grid {
  width: 100%;
  box-sizing: border-box;
}

/* service cards in alacarte - ensure no bleed */
.pricing-plans-page .service-card {
  box-sizing: border-box;
  max-width: 100%;
}

/* four-column grid — clamp to avoid overflow */
.plans-grid.four-column {
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}

@media (max-width: 600px) {
  .pricing-plans-page .container,
  .pricing-plans-page section > .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .pricing-plans-page .savings-comparison,
  .pricing-plans-page .price-comparison {
    padding: 1rem 0.75rem !important;
    margin: 1rem 0 !important;
    border-radius: 8px !important;
  }

  .compare-cards {
    grid-template-columns: 1fr !important;
  }

  .plans-grid,
  .plans-grid.two-column,
  .plans-grid.three-column,
  .plans-grid.four-column,
  .alacarte-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .plan-card {
    padding: 1.5rem !important;
  }

  .service-card {
    padding: 1.25rem !important;
  }
}

/* ============================================================
   MOBILE SCROLL FIX — prevent form inputs from hijacking
   page scroll on touch devices
   ============================================================ */
/* Touch-action allows vertical scroll even when finger starts
   inside a form input / select / textarea */
input, select, textarea, button {
  touch-action: manipulation;
}

/* Prevent inputs from creating a new scroll context on iOS */
.alacarte-form-section,
.application-form-container,
.get-started-form,
.form-section,
.form-group,
.alacarte-form-wrapper {
  -webkit-overflow-scrolling: auto;
  overflow: visible;
}

/* Give textareas a max-height so they don't grow taller than
   the viewport and block page scroll */
textarea {
  max-height: 220px;
  resize: vertical;
}

/* ============================================================
   PRICING PAGE — NUCLEAR MOBILE FIX (override everything)
   The page body itself must not exceed viewport width
   ============================================================ */
html {
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
}

/* Every section on the pricing page stays inside viewport */
.pricing-plans-page section,
.pricing-plans-page .container,
.pricing-plans-page .plans-grid,
.pricing-plans-page .alacarte-grid,
.pricing-plans-page .compare-cards,
.pricing-plans-page .savings-comparison,
.pricing-plans-page .price-comparison,
.pricing-plans-page .value-grid {
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

/* Service cards with absolute badges — contain the badge */
.pricing-plans-page .service-card {
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

/* The discount badge must stay within its card */
.affordable-badge {
  position: absolute;
  top: -10px;
  right: 6px !important;   /* pull inward so it never bleeds right */
  max-width: calc(100% - 12px);
  white-space: nowrap;
  font-size: 0.7rem !important;
}

@media (max-width: 480px) {
  /* Hard reset — single column for every grid variant */
  .plans-grid,
  .plans-grid.two-column,
  .plans-grid.three-column,
  .plans-grid.four-column,
  .alacarte-grid,
  .compare-cards,
  .value-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  /* Zero out horizontal padding that bleeds on tiny screens */
  .pricing-plans-page .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .savings-comparison,
  .price-comparison {
    padding: 1rem 0.75rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  /* Hero banner font scaling */
  .pricing-hero {
    padding: 3rem 1rem 2rem !important;
  }
  .pricing-hero h1 {
    font-size: 1.7rem !important;
    word-break: break-word;
  }
}
