/*--------------------------------------------------------------
# 25h Website - Main Stylesheet
# Refactored and Cleaned Version
# 
# Table of Contents:
# 1. CSS Variables & Color Scheme
# 2. General Styling & Typography
# 3. Utility Classes
# 4. Components & Animations
# 5. Hero Section
# 6. Content Sections
# 7. Responsive Design
# 8. Modal & Overlay Components
# 9. Form Styling
# 10. Payment & Success Pages
#--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 1. CSS Variables & Color Scheme
--------------------------------------------------------------*/
:root {
  /* Typography */
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Inter", sans-serif;
  --nav-font: "Inter", sans-serif;

  /* Global Color Scheme */
  --background-color: #ffffff;
  --default-color: #1a1f24;
  --heading-color: #485664;
  --accent-color: #3b82f6;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Navigation Colors */
  --nav-color: #485664;
  --nav-hover-color: #0ea2bd;
  --nav-mobile-background-color: #ffffff;
  --nav-mobile-color: #485664;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #485664;
  --nav-dropdown-hover-color: #3b82f6;

  /* Smooth Scrolling */
  scroll-behavior: smooth;
}

/* Color Theme Presets */
.light-background {
  --background-color: #eef0f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #3a4753;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4f6171;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# 2. General Styling & Typography
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
}

/* Ensure all text elements use consistent fonts */
p, div, span, a, li, td, th, input, textarea, select, button, label {
  font-family: var(--default-font);
}

/* Override any Bootstrap or other framework fonts */
.btn, .form-control, .form-label, .nav-link, .dropdown-item {
  font-family: var(--default-font) !important;
}

/* Links */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

/* Images */
img, .img-fluid {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# 3. Utility Classes
--------------------------------------------------------------*/
/* Background Colors */
.bg-aliceblue { background-color: aliceblue; }

/* Opacity Utilities */
.opacity-55 { opacity: 0.55; }
.opacity-70 { opacity: 0.7; }

/* Layout Utilities */
.img-full-width { width: 100%; height: auto; }
.hidden { display: none; }

/* Spacing Utilities */
.pl-100 { padding-left: 100px; }
.pl-300 { padding-left: 300px; }
.w-400 { width: 400px; }
.w-450 { width: 450px; }

/* Grid Utilities */
.row.gx-2 { --bs-gutter-x: 0.5rem; }
.row.gy-3 { --bs-gutter-y: 1rem; }

/*--------------------------------------------------------------
# 4. Components & Animations
--------------------------------------------------------------*/
/* Pulsating Play Button */
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation: pulsate-play-btn 2s infinite;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: transparent;
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

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

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .error-message br+br {
  margin-top: 25px;
}

.php-email-form .warning-message {
  display: none;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: php-email-form-loading 1s ease-in-out infinite;
}

@keyframes php-email-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# 6. Content Sections
--------------------------------------------------------------*/
/* Section Titles */
.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--default-color);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

#services .section-title p {
  margin-bottom: 0;
}

/* Featured Services */
.featured-services .service-item {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.featured-services .service-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  text-decoration: none;
}

.featured-services .service-item p {
  color: var(--default-color);
  margin-bottom: 0;
  line-height: 1.6;
}

.featured-services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.featured-services .service-item:hover h4 a {
  color: var(--accent-color);
}

.featured-services .service-item:hover .icon i {
  transform: scale(1.1);
}

/* About Section */
.about .about-img {
  position: relative;
  margin: 30px 30px 30px 0;
}

.about .about-img:before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(45deg, rgba(14, 162, 189, 0.6) 0%, rgba(72, 86, 100, 0.6) 100%);
  border-radius: 20px;
  z-index: 1;
}

.about .about-img img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about h3 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.about .nav-pills {
  border-bottom: 1px solid #dee2e6;
}

.about .nav-pills li+li {
  margin-left: 7px;
}

.about .nav-link {
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  color: var(--heading-color);
  background-color: transparent;
  padding: 12px 25px;
  transition: all 0.3s ease;
}

.about .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .tab-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.about .tab-content i {
  font-size: 1.1rem;
  line-height: 0;
  color: var(--accent-color);
  margin-right: 8px;
}

/* Clients Section */
.clients {
  padding: 40px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 20px 0;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.clients .client-logo img {
  max-width: 100%;
  max-height: 60px;
  transition: all 0.3s ease;
}

.clients .client-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Call to Action */
.call-to-action {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  padding: 80px 0;
  color: var(--contrast-color);
}

.call-to-action .container {
  text-align: center;
}

.call-to-action .content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-to-action .content h3 em {
  font-style: normal;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 5px;
}

.call-to-action .content h3 em:after {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: 1px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.call-to-action .content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.call-to-action .content .cta-btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.call-to-action .content .cta-btn:hover {
  background: transparent;
  color: var(--accent-color);
}

/* Testimonials - Updated */
.testimonials {
  background: transparent !important;
  padding: 80px 0 !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 500px;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  opacity: 0.6;
  z-index: 1;
}

.testimonials .testimonials-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
  opacity: 0.1 !important;
}

/* Force override any conflicting styles */
section.testimonials {
  background: transparent !important;
}

section.testimonials.dark-background {
  background: transparent !important;
  --background-color: transparent !important;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials .section-title h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  text-align: center;
  margin-bottom: 0;
}

.testimonials .testimonial-item {
  text-align: center;
  padding: 30px;
  color: var(--contrast-color);
  max-width: 800px;
  margin: 0 auto;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  border: 6px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
}

.testimonials .testimonial-item h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
  text-transform: none;
}

.testimonials .testimonial-item h4 {
  font-family: var(--default-font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
  font-size: 1rem;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(14, 162, 189, 0.2);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: -10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-family: var(--default-font);
  font-style: italic;
  font-size: 1.1rem;
  margin: 15px auto 15px auto;
  color: var(--contrast-color);
  line-height: 1.6;
  text-align: center;
}

.testimonials .testimonial-item p span {
  color: var(--contrast-color);
  font-weight: 600;
}

.testimonials .testimonial-item p span b {
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}

.testimonials .swiper {
  padding: 20px 0 50px 0;
}

.testimonials .swiper-slide {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  transform: scale(1.2);
}

.testimonials .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Pricing */
.pricing .pricing-item {
  background: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  padding: 60px 40px 80px 40px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  border: 0;
  text-align: center;
}

.pricing .pricing-header {
  background: rgba(14, 162, 189, 0.1);
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-size: 1.5rem;
}

.pricing h4 {
  font-size: 3rem;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 1.5rem;
  top: -0.5em;
}

.pricing h4 span {
  color: #bababa;
  font-size: 1.2rem;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-right: 8px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--nav-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
  text-decoration: none;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  transform: scale(1.1);
  z-index: 1;
  border: 2px solid var(--accent-color);
}

.pricing .featured .pricing-header {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* Hero Section - Clean White Background */
.pricing-page {
  --background-color: #ffffff !important;
}

.pricing-page .hero {
  background: white !important;
  padding: 40px 0 !important;
  min-height: auto !important;
  color: var(--heading-color) !important;
  text-align: center !important;
}

.pricing-page .hero::before {
  display: none !important;
}

.pricing-page .hero::after {
  display: none !important;
}

.pricing-page .hero-content {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.pricing-page .hero-text h1 {
  color: var(--heading-color) !important;
  text-shadow: none !important;
  font-size: 3rem !important;
  margin-bottom: 15px !important;
}

.pricing-page .hero-text h2 {
  color: var(--text-color) !important;
  text-shadow: none !important;
  font-size: 1.2rem !important;
  margin-bottom: 0 !important;
}

.pricing-page #hero {
  background: white !important;
  padding: 40px 0;
  min-height: auto !important;
}

.pricing-page #hero .hero-content {
  background: white !important;
  position: relative;
  z-index: 2;
}

.pricing-page #hero .hero-text h1 {
  color: var(--heading-color) !important;
  text-shadow: none !important;
}

.pricing-page #hero .hero-text h2 {
  color: var(--text-color) !important;
  text-shadow: none !important;
}

.pricing-page #hero .hero-text .hero-btn {
  background: var(--accent-color);
  color: white;
}

/* Careers Page Styles */
.hero-careers {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  color: white;
}

.hero-careers .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-careers .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.stat-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.hero-image img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 0;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.value-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.position-card {
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.position-header h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.position-details ul {
  padding-left: 1.2rem;
}

.process-step h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.cta-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
}

/* Application Form Styles */
.application-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.application-form-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 3rem;
}

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

.form-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 0;
}

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

.section-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

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

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

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--accent-color-rgb), 0.25);
}

.form-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
}

/* Privacy Policy Page Styles */
.privacy-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.privacy-page .page-title {
  background: white !important;
  padding: 40px 0 !important;
  color: var(--heading-color) !important;
}

.privacy-page .page-title h1 {
  color: var(--heading-color) !important;
  text-shadow: none !important;
}

.privacy-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 3rem;
}

.privacy-intro .lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.privacy-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.privacy-item p {
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.privacy-item ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.privacy-item li {
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

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

/* Terms and Conditions Page Styles */
.terms-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.terms-page .page-title {
  background: white !important;
  padding: 40px 0 !important;
  color: var(--heading-color) !important;
}

.terms-page .page-title h1 {
  color: var(--heading-color) !important;
  text-shadow: none !important;
}

.terms-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 3rem;
}

.terms-intro .lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.term-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.term-item p {
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1rem;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-careers .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .application-form-container {
    padding: 2rem 1.5rem;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .terms-content {
    padding: 2rem 1.5rem;
  }
  
  .privacy-content {
    padding: 2rem 1.5rem;
  }
}

/* Enhanced Pricing Styles */
.pricing-subtitle {
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text-color);
  max-width: 100%;
  padding: 0 15px;
}

.pricing-plans-row {
  margin-top: 60px;
}

.pricing-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -5px rgba(108, 117, 125, 0.2);
}

.pricing-features {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pricing-footer {
  margin-top: auto;
  padding-top: 20px;
}

/* Recommended Badge */
.recommended-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  .pricing-item {
    margin-bottom: 30px;
  }
  
  .pricing-plans-row {
    margin-top: 40px;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .recommended-badge {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
  
  /* Fix mobile footer button alignment */
  .pricing-footer {
    text-align: center;
    padding-top: 20px;
  }
  
  .pricing-footer .btn-getstarted {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
}

/* FAQ */
.faq .content h3 {
  font-weight: 400;
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.faq .content p {
  color: var(--default-color);
  margin-bottom: 0;
}

.faq .faq-container {
  padding: 0;
}

.faq .faq-container .faq-item {
  background: var(--surface-color);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(1, 41, 112, 0.08);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 500;
  padding: 20px 60px 20px 20px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: flex-start;
  color: var(--heading-color);
  margin: 0;
  transition: 0.3s;
}

.faq .faq-container .faq-item h3 span {
  font-size: 20px;
  margin-right: 10px;
  line-height: 0;
  font-weight: 400;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  padding: 0 20px 20px 20px;
  margin: 0;
  display: none;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-content p {
  color: var(--default-color);
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

.faq .faq-container .faq-item .faq-icon {
  font-size: 20px;
  line-height: 0;
  margin-right: 10px;
  color: var(--accent-color);
  font-weight: 400;
}

.faq .faq-container .faq-item .faq-toggle {
  font-size: 16px;
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
  text-align: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  display: block;
}

.faq .faq-container .faq-active .faq-toggle {
  background: var(--accent-color);
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
# 7. Responsive Design
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .about .row.g-4.g-lg-5, .about .row.g-4 {
    margin: 0;
  }
  
  .about-img img {
    height: 200px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .service-item.small-service {
    margin-bottom: 30px;
  }
  
  .clients .row.gy-4, .clients .row {
    margin: 0;
  }
  
  .client-logo {
    margin: 10px 0;
  }
  
  .testimonials .swiper {
    margin: 0 20px;
  }
  
  .contact .container {
    padding: 0 20px;
  }
  
  .contact .row {
    margin: 0;
  }
  
  .contact .col-lg-8 {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .section-title h2 {
    font-size: 1.3rem;
  }
  
  .service-item .img img {
    height: 180px;
  }
  
  .about-img img {
    height: 180px !important;
  }
  
  .clients .client-logo img {
    max-height: 40px;
  }
  
  .php-email-form .form-group, .php-email-form .form-control {
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# 8. Form Styling
--------------------------------------------------------------*/
.contact-form-modern {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-modern h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
  text-align: center;
}

.contact-form-modern .subtitle {
  text-align: center;
  color: var(--default-color);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-form-modern .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-modern .form-row .form-group {
  margin-bottom: 0;
}

.contact-form-modern input,
.contact-form-modern textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background-color);
}

.contact-form-modern input::placeholder,
.contact-form-modern textarea::placeholder {
  color: #999;
}

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

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.contact-form-modern .recaptcha-box {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.contact-form-modern .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

.contact-form-modern .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# 10. Payment & Success Pages
--------------------------------------------------------------*/
.success-section {
  padding: 80px 0;
  text-align: center;
}

.success-card {
  background: var(--surface-color);
  padding: 60px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 30px;
}

.next-steps {
  margin-top: 40px;
  text-align: left;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 30px;
}

.next-steps li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-info {
  background: rgba(14, 162, 189, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.btn-home {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.btn-home:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

.btn-pricing {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 30px;
  margin-left: 15px;
}

.btn-pricing:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

.payment-section {
  padding: 80px 0;
}

.payment-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.order-summary {
  background: rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-total {
  border-top: 2px solid var(--accent-color);
  padding-top: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}

#card-element {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #f5c6cb;
}

/*--------------------------------------------------------------
# Additional Components
--------------------------------------------------------------*/
.video-section {
  padding: 40px 0;
  text-align: center;
}

.video-section iframe {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.content {
  padding: 40px 0;
  background: var(--background-color);
}

.content h1 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.video-item {
  background: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

video {
  width: 100%;
  height: auto;
  display: block;
}

.video-title {
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
  margin: 0;
}

.video-item:hover .video-title {
  color: var(--accent-color);
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-cta-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-discovery-call {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 180px;
}

.btn-discovery-call:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  text-decoration: none;
  transform: translateY(-2px);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after {
  font-size: 18px;
}

.swiper-button-prev:after {
  font-size: 18px;
}

.service-item.small-service {
  background: var(--surface-color);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.service-item.small-service .img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-item.small-service .icon {
  margin-bottom: 15px;
}

.service-item.small-service h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.service-item.small-service p {
  color: var(--default-color);
  margin-bottom: 0;
  line-height: 1.6;
}

.page-title {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  padding: 60px 0;
  color: var(--contrast-color);
  text-align: center;
}

.page-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

section,
.section {
  padding: 60px 0;
  overflow: hidden;
}

@media (max-width: 1199px) {
  section,
  .section {
    padding: 40px 0;
  }
}

/* ========================================
   REFACTORED MODAL SYSTEM STYLES
   ======================================== */

.hidden {
  display: none !important;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex; /* Use flexbox for easy centering */
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  /* Ensure the backdrop can handle flexible content */
  box-sizing: border-box;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 960px; /* Max width for the video */
  max-height: 90vh; /* Max height to not take full screen */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  /* Remove overflow hidden to prevent clipping video controls */
  /* overflow: hidden; */
  /* Remove fixed height constraints to let content determine size */
  height: auto;
  min-height: auto;
}

.modal-body {
  padding: 0; /* No padding for video */
  line-height: 0; /* Remove extra space below video */
  /* Let the video determine the container size */
  height: auto;
  min-height: auto;
}

/* Ensure video maintains its aspect ratio */
.modal-content .modal-body video,
#modal-container .modal-body video,
.modal-backdrop .modal-body video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80vh; /* Prevent video from being too tall */
  object-fit: contain; /* Maintain aspect ratio */
  /* Ensure controls are visible */
  position: relative;
  z-index: 1;
}

/* --- Definitive Video Control Override --- */
.modal-content .modal-body video::-webkit-media-controls-panel,
#modal-container .modal-body video::-webkit-media-controls-panel,
.modal-backdrop .modal-body video::-webkit-media-controls-panel {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  bottom: 0 !important;
  z-index: 99999 !important;
}

.modal-content .modal-body video::-webkit-media-controls-play-button,
.modal-content .modal-body video::-webkit-media-controls-mute-button,
.modal-content .modal-body video::-webkit-media-controls-timeline,
.modal-content .modal-body video::-webkit-media-controls-current-time-display,
.modal-content .modal-body video::-webkit-media-controls-time-remaining-display,
.modal-content .modal-body video::-webkit-media-controls-fullscreen-button,
#modal-container .modal-body video::-webkit-media-controls-play-button,
#modal-container .modal-body video::-webkit-media-controls-mute-button,
#modal-container .modal-body video::-webkit-media-controls-timeline,
#modal-container .modal-body video::-webkit-media-controls-current-time-display,
#modal-container .modal-body video::-webkit-media-controls-time-remaining-display,
#modal-container .modal-body video::-webkit-media-controls-fullscreen-button,
.modal-backdrop .modal-body video::-webkit-media-controls-play-button,
.modal-backdrop .modal-body video::-webkit-media-controls-mute-button,
.modal-backdrop .modal-body video::-webkit-media-controls-timeline,
.modal-backdrop .modal-body video::-webkit-media-controls-current-time-display,
.modal-backdrop .modal-body video::-webkit-media-controls-time-remaining-display,
.modal-backdrop .modal-body video::-webkit-media-controls-fullscreen-button {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.close-btn {
  position: absolute;
  top: -10px;
  right: -5px;
  color: #fff;
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.2s ease-in-out;
}

.close-btn:hover {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

/* ========================================
   CUSTOM VIDEO SUBTITLE STYLES
   ======================================== */
#modal-video::cue {
  font-size: 0.9em; /* Smaller font size */
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Force all video control elements to be visible */
.modal-body video::-webkit-media-controls-panel,
.modal-body video::-webkit-media-controls-play-button,
.modal-body video::-webkit-media-controls-mute-button,
.modal-body video::-webkit-media-controls-timeline,
.modal-body video::-webkit-media-controls-current-time-display,
.modal-body video::-webkit-media-controls-time-remaining-display,
.modal-body video::-webkit-media-controls-fullscreen-button {
  pointer-events: auto !important;
}

/* New style for the modal video to replace inline styles */
.modal-video-element {
  width: 100%;
  height: auto;
  display: none;
}

body {
  font-family: var(--default-font);
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Cookie Settings Banner
--------------------------------------------------------------*/
.cookie-settings-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-color);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none; /* Hidden by default */
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-banner-content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-banner-header p {
  margin: 0;
  color: var(--default-color);
  font-size: 1rem;
}

.cookie-banner-header a {
  color: var(--accent-color);
  text-decoration: none;
}

.cookie-banner-header a:hover {
  text-decoration: underline;
}

.cookie-done-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-done-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.cookie-options {
  display: grid;
  gap: 15px;
}

.cookie-option {
  padding: 15px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-option-header span {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.cookie-option p {
  margin: 0;
  color: var(--default-color);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Toggle Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--accent-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

input:disabled + .slider {
  background-color: var(--accent-color);
  cursor: not-allowed;
}

input:disabled + .slider:before {
  background-color: rgba(255, 255, 255, 0.7);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .cookie-banner-content {
    padding: 15px;
  }
  
  .cookie-option {
    padding: 12px;
  }
}

/* Get Started Page Styles */
.getstarted-page .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  overflow: hidden;
}

.getstarted-page .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.getstarted-page .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.getstarted-page .hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.getstarted-page .hero-text {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.getstarted-page .hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
  letter-spacing: -0.02em;
}

.getstarted-page .hero-text h2 {
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.01em;
}

.getstarted-page .form-container-wide {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  font-family: var(--default-font);
}

.getstarted-page .form-header h2 {
  color: #1e3a8a;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: var(--heading-font);
}

.getstarted-page .form-header p {
  color: #6b7280;
  margin-bottom: 2rem;
  text-align: center;
  margin-top: 0.5rem;
  font-family: var(--default-font);
}

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

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

.getstarted-page .form-group label {
  display: block;
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  font-family: var(--default-font);
}

.getstarted-page .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: var(--default-font);
}

.getstarted-page .form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.getstarted-page .btn-request-audit {
  background: #3b82f6;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  font-family: var(--default-font);
}

.getstarted-page .btn-request-audit:hover {
  background: #2563eb;
}

.getstarted-page .form-messages {
  margin-top: 1rem;
}

.getstarted-page .loading,
.getstarted-page .error-message,
.getstarted-page .sent-message {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
}

.getstarted-page .loading {
  background: #f3f4f6;
  color: #6b7280;
}

.getstarted-page .error-message {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.getstarted-page .warning-message {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.getstarted-page .sent-message {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

@media (max-width: 768px) {
  .getstarted-page .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }
  
  .getstarted-page .hero-text h1 {
    font-size: 2rem;
  }
  
  .getstarted-page .form-row {
    grid-template-columns: 1fr;
  }
}

/* Digital Marketing Page Styles */
.digital-marketing-page .hero-section {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  color: white;
}

.digital-marketing-page .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.digital-marketing-page .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.digital-marketing-page .hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.digital-marketing-page .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.digital-marketing-page .stat-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.digital-marketing-page .hero-image img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.digital-marketing-page .why-choose-us-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .digital-marketing-page .hero-title {
    font-size: 2rem;
  }
  
  .digital-marketing-page .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .digital-marketing-page .stat-item {
    text-align: center;
  }
}

/* Careers Page Icon Styles */
.benefit-icon-large {
  font-size: 2.5rem !important;
}

/* Application Form Message Styles */
.loading-message,
.sent-message,
.error-message {
  display: none;
}

.loading-message.show,
.sent-message.show,
.error-message.show {
  display: block;
}

/* Team Member Image Styles */
.team-member-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

/* Coming Soon Page Styles */
.coming-soon-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.coming-soon-icon {
  animation: pulse 2s infinite;
}

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

.coming-soon-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.coming-soon-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

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

.feature-icon {
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-color);
  line-height: 1.6;
}

.coming-soon-cta {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 1px solid #e9ecef;
}

.coming-soon-cta h3 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.coming-soon-cta p {
  color: var(--text-color);
  margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
  .coming-soon-title {
    font-size: 2.5rem;
  }
  
  .coming-soon-subtitle {
    font-size: 1.1rem;
  }
  
  .coming-soon-section {
    padding: 60px 0;
  }
  
  .coming-soon-cta {
    padding: 2rem 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}