/* ===================================
   SHANFIX TECHNOLOGY - DESIGN SYSTEM
   =================================== */

/* CSS Variables - Brand Colors: Green & Red */
:root {
  /* Brand Colors */
  --color-primary: #22c55e;
  --color-primary-dark: #16a34a;
  --color-primary-light: #4ade80;
  --color-secondary: #ef4444;
  --color-secondary-dark: #dc2626;
  --color-secondary-light: #f87171;

  /* Neutral Colors */
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-secondary-dark) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    #f0fdf4 0%,
    #dcfce7 50%,
    #fee2e2 100%
  );

  /* Typography */
  --font-primary:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading:
    "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-gray-800);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gray-900);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--color-gray-600);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

/* ===================================
   LAYOUT UTILITIES
   =================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

/* ===================================
   TOP HEADER
   =================================== */

.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #59e00a;
  color: var(--color-gray-900);
  font-size: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.top-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.top-header-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray-900);
  text-decoration: none;
  transition: var(--transition-base);
}

.top-header-item svg {
  flex-shrink: 0;
}

.top-header-item:hover {
  color: var(--color-gray-700);
}

.top-header-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  background: var(--color-gray-900);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
}

.top-header-link svg {
  flex-shrink: 0;
}

.top-header-link:hover {
  background: var(--color-gray-800);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .top-header {
    padding: 0.5rem 0;
    font-size: 0.75rem;
  }

  .top-header-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .top-header-left {
    gap: 0.75rem;
    font-size: 0.75rem;
  }

  .top-header-item span {
    display: none;
  }

  .top-header-item svg {
    width: 18px;
    height: 18px;
  }

  .top-header-link span {
    font-size: 0.75rem;
  }
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #083f0c;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.nav-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}

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

.logo-tech {
  color: var(--color-gray-800);
  font-weight: 600;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: var(--spacing-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-weight: 500;
  color: var(--color-white);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-light);
  transition: var(--transition-base);
}

.nav-link:hover {
  color: var(--color-primary-light);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  width: 1.5rem;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-base);
}

/* ===================================
   MEGA MENU
   =================================== */

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: var(--transition-base);
  color: var(--color-white);
}

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

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  transition-delay: 0.5s; /* Delay disappearance */
  pointer-events: none;
  z-index: 1000;
}

.nav-item-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
  pointer-events: all;
  transition-delay: 0s; /* Show immediately */
}

/* Bridge the gap between trigger and menu to prevent accidental closing */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: 0;
  right: 0;
  height: 1.5rem;
}

.mega-menu-content {
  background: #59e00a;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  padding: var(--spacing-md);
  min-width: 500px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  border: 1px solid var(--color-gray-100);
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.mega-menu-item:hover {
  background: var(--color-gray-50);
  border-color: var(--color-primary-light);
  transform: translateX(4px);
}

.mega-menu-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.mega-menu-item:hover .mega-menu-icon {
  transform: scale(1.1);
  background: var(--gradient-secondary);
}

.mega-menu-icon svg {
  width: 24px;
  height: 24px;
}

.mega-menu-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 0.25rem;
}

.mega-menu-text p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin: 0;
  line-height: 1.4;
}

/* Mobile mega menu */
@media (max-width: 767px) {
  .mega-menu {
    position: static;
    transform: none;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    display: none;
  }

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

  .mega-menu-content {
    min-width: auto;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: var(--spacing-sm) 0;
  }

  .mega-menu-item {
    padding: var(--spacing-sm);
  }

  .mega-menu-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .mega-menu-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ===================================
   HERO SECTION WITH CAROUSEL
   =================================== */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 138px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease-in-out,
    visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.05);
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

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

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: slideUp 1s ease-out;
}

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

.hero-title {
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Carousel Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
  left: 2rem;
}

.carousel-control.next {
  right: 2rem;
}

.carousel-control svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .carousel-control {
    width: 40px;
    height: 40px;
  }

  .carousel-control.prev {
    left: 1rem;
  }

  .carousel-control.next {
    right: 1rem;
  }

  .carousel-control svg {
    width: 20px;
    height: 20px;
  }
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.carousel-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: var(--transition-base);
  padding: 0;
}

.carousel-indicators .indicator:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.carousel-indicators .indicator.active {
  background: var(--color-white);
  width: 40px;
  border-radius: 6px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-base);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ===================================
   SECTIONS
   =================================== */

section {
  padding: var(--spacing-3xl) 0;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

.why-choose-us {
  padding: 0;
  overflow: hidden;
  background-color: #a3ff12; /* Vibrant Lime Green */
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.why-image-wrapper {
  position: relative;
  min-height: 400px;
}

.why-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-content {
  padding: var(--spacing-2xl) var(--spacing-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .why-content {
    padding: var(--spacing-3xl) var(--spacing-2xl);
  }
}

.why-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-lg);
  font-weight: 800;
}

.why-text {
  font-size: 1.125rem;
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.why-skills {
  margin-top: var(--spacing-lg);
}

.skill-item {
  margin-bottom: var(--spacing-lg);
}

.skill-name {
  display: block;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.skill-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.skill-progress {
  height: 100%;
  background: #228b22; /* Forest Green as requested */
  border-radius: var(--radius-full);
  width: 0; /* Animated with AOS or JS */
  transition: width 1.5s ease-in-out;
}

[data-aos="skill-animate"].aos-animate .skill-progress {
  opacity: 1; /* Triggered with JS width animation */
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  margin-bottom: var(--spacing-sm);
}

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

/* ===================================
   FEATURE CARDS SECTION
   =================================== */

.feature-cards-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-gray-50);
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.feature-card {
  background: #083f0c;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: var(--color-white);
}

.feature-card-icon svg {
  width: 48px;
  height: 48px;
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.feature-card-description {
  color: var(--color-gray-300);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #59e00a;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
}

.feature-card-link:hover {
  color: var(--color-primary-light);
  gap: 0.75rem;
}

.feature-card-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-base);
}

/* ===================================
   BELIEF & ACTION CARDS (Who We Are)
   =================================== */

.belief-cards-section {
  padding: var(--spacing-xl) 0;
  background: #fdfaf5; /* Cream background from image */
}

.belief-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.belief-card {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-sm); /* Sharpish corners like image */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.belief-card:hover {
  transform: translateY(-5px);
}

.belief-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  color: #083f0c; /* Dark Forest Green */
  display: flex;
  align-items: center;
  justify-content: center;
}

.belief-card-icon svg {
  width: 100%;
  height: 100%;
}

.belief-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: #333;
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
}

.belief-card-text {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
}

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

/* ===================================
   ADVERT CAROUSEL SECTION
   =================================== */

.advert-carousel-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-white);
  overflow: hidden;
}

.advert-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 250px; max-height: 400px; background: var(--color-gray-100); /* Adjust based on image aspect ratio, e.g., banner size */
}

.advert-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* Fallback background */
}

.advert-slide.active {
  opacity: 1;
  z-index: 1;
}

.advert-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the whole image is visible */
  display: block;
}

/* Advert Controls */
.advert-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-base);
}

.advert-control:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.advert-control.prev {
  left: 1rem;
}

.advert-control.next {
  right: 1rem;
}

.advert-control svg {
  width: 20px;
  height: 20px;
}

/* Advert Indicators */
.advert-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.advert-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.advert-indicator.active {
  background: var(--color-white);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .advert-carousel {
    aspect-ratio: 16/9; /* Taller aspect ratio for mobile if needed */
  }
}

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

.services {
  background: #59e00a;
}

.services .section-title {
  color: #083f0c;
}

.services .section-subtitle {
  color: #1f2937;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden; /* Ensure image stays within border radius */
  padding-bottom: var(--spacing-xl); /* Add bottom padding */
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--color-primary-light);
}

.service-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image covers the area */
  transition: transform 0.5s ease;
}

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

.service-content {
  padding: 0 var(--spacing-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.service-icon {
  display: none;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-gray-900);
}

.service-description {
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.service-btn {
  display: inline-block;
  background-color: #083f0c; /* Dark green as requested */
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto; /* Push to bottom */
  transition: var(--transition-base);
  border: 1px solid transparent;
}

.service-btn:hover {
  background-color: var(--color-white);
  color: #083f0c;
  border-color: #083f0c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  font-weight: 500;
}

.about-image-placeholder {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
}

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

.contact {
  background: var(--color-gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-details h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-gray-900);
}

.contact-details p {
  margin: 0;
  color: var(--color-gray-600);
  font-size: 1rem;
}

.contact-form {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition-base);
  background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

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

.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-300);
  padding: var(--spacing-2xl) 0 var(--spacing-md);
}

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

.footer-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.footer-text {
  color: var(--color-gray-400);
  margin: 0;
}

.footer-heading {
  font-size: 1.125rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

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

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--color-gray-400);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 0.5rem;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-800);
  border-radius: var(--radius-md);
  color: var(--color-gray-400);
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--color-gray-800);
  color: var(--color-gray-500);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
}

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

[data-aos] {
  opacity: 0;
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

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

@media (max-width: 767px) {
  .hero {
    min-height: 90vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Utility Classes */
.text-green-accent {
  color: #4ade80;
}
.mb-25 {
  margin-bottom: 25px;
}

.hero-bg-1 {
  background-image: url("assets/hero-1.jpg") !important;
}
.hero-bg-2 {
  background-image: url("assets/hero-2.jpg") !important;
}
.hero-bg-3 {
  background-image: url("assets/hero-3.jpg") !important;
  background-color: red;
}

.section-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #4b5563;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.feature-item {
  margin-bottom: 20px;
  display: flex;
  align-items: start;
}

.feature-inner-icon {
  color: #083f0c;
  margin-right: 10px;
  font-weight: bold;
}

.feature-icon-circle {
  background: #083f0c;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-weight: bold;
}

.border-0 {
  border: 0;
}
.feature-inner-title {
  display: block;
  font-size: 1.1rem;
  color: #083f0c;
  margin-bottom: 5px;
  font-weight: bold;
}
.who-we-are-hero {
  background-image: url("assets/service-4.jpg");
}
.mt-2rem {
  margin-top: 2rem;
}

.w-1k {
  width: 100%;
}
.w-90 {
  width: 90%;
}
.w-80 {
  width: 80%;
}
.w-75 {
  width: 75%;
}

.portfolio-hero {
  background-image: url("assets/web-development-jpeg.jpg");
}
.printing-branding-hero {
  background-image: url("assets/printing-brabdibg-jpeg.jpg");
}

/* ===================================
   E-COMMERCE / PRODUCT STYLING
   =================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 1px solid var(--color-gray-100);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--color-gray-50);
}

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

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

.product-content {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-xs);
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.product-description {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-gray-50);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gray-900);
}

.product-price span {
  font-size: 0.875rem;
  margin-right: 2px;
}

.btn-buy {
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  font-weight: 600;
}

/* ===================================
   MODAL STYLING
   =================================== */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: var(--spacing-md);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--color-white);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--radius-xl);
  position: relative;
  box-shadow: var(--shadow-2xl);
  overflow-y: auto;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--color-gray-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-base);
  border: none;
  color: var(--color-gray-900);
}

.modal-close:hover {
  background: var(--color-gray-200);
  transform: rotate(90deg);
}

.modal-product-layout {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .modal-product-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.modal-product-image-side {
  background: var(--color-gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-product-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-product-content-side {
  padding: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
}

.modal-product-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-sm);
}

.modal-product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
}

.modal-product-description {
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
}

.quantity-controller {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.quantity-label {
  font-weight: 700;
  color: var(--color-gray-900);
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  padding: 4px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--color-white);
  color: var(--color-gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: var(--transition-base);
}

.qty-btn:hover {
  background: var(--color-gray-200);
}

.qty-input {
  width: 50px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-gray-900);
}

.modal-actions {
  display: flex;
  gap: var(--spacing-md);
  margin-top: auto;
}

.btn-place-order {
  flex-grow: 1;
  padding: 16px;
  font-weight: 700;
}

/* Success State in Modal */
.order-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-3xl);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.order-success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  animation: scaleUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-continue-shopping {
  margin-top: 20px;
}

@keyframes scaleUp {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* ===================================
   STANDARDIZED SERVICE HERO STYLES
   =================================== */

.service-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

.service-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}

.service-hero .hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.service-detail-section {
  padding: var(--spacing-3xl) 0;
}

.service-main {
  width: 100%;
}

/* Service-Specific Backgrounds */
.hero-web-dev {
  background-image: url("assets/web-development-jpeg.jpg");
}
.hero-web-hosting {
  background-image: url("assets/web-hosting-jpeg.jpg");
}
.hero-software {
  background-image: url("assets/Software-solution-jpeg.jpg");
}
.hero-digital-marketing {
  background-image: url("assets/digital-marketing-jpeg.jpg");
}
.hero-networking {
  background-image: url("assets/networking-solution-jpeg.jpg");
}
.hero-printing {
  background-image: url("assets/printing-brabdibg-jpeg.jpg");
}
.hero-ticketing {
  background-image: url("assets/event-ticketing-jpeg.jpg");
}
.hero-event-mgmt {
  background-image: url("assets/event-management-jpeg.jpg");
}
.hero-seo {
  background-image: url("assets/SEO-boost-jpeg.jpg");
}
.hero-consultancy {
  background-image: url("assets/service-4.jpg");
}
.hero-bulk-sms {
  background-image: url("assets/Bulk-sms-jpeg.jpg");
}
.hero-app-dev {
  background-image: url("assets/App-development-jpeg.jpg");
}

/* ===================================
   STANDARDIZED FORMS
   =================================== */
.form-card {
  background: var(--color-white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-200);
}
.form-group {
  margin-bottom: var(--spacing-md);
}
.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--color-gray-700);
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-base);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.btn-submit {
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  width: 100%;
  font-size: 1rem;
  font-family: var(--font-heading);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================================
   PROCESS / TIMELINE STYLES
   =================================== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}
@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.process-step {
  background: var(--color-gray-50);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-base);
  position: relative;
  text-align: center;
}
.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}
.process-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-size: 1.5rem;
  font-weight: bold;
}
.process-title {
  margin-bottom: var(--spacing-xs);
  color: var(--color-gray-900);
}
.process-desc {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===================================
   PAGE LAYOUT UTILITIES
   =================================== */
.section-light {
  background-color: var(--color-gray-50);
}
.section-white {
  background-color: var(--color-white);
}

/* ===================================
   UTILITY CLASSES FOR SERVICES
   =================================== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.max-w-3xl {
  max-width: 800px;
}
.max-w-2xl {
  max-width: 600px;
}
.py-3xl {
  padding: var(--spacing-3xl) 0;
}
.flex-row-start {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-8 {
  gap: 2rem;
}
.m-0 {
  margin: 0;
}
.rounded-full {
  border-radius: 50%;
}
.bg-primary-light {
  background: var(--color-gray-100);
}
.text-primary {
  color: var(--color-primary);
}
.p-2 {
  padding: 8px;
}
.text-xl {
  font-size: 1.25rem;
}
.font-normal {
  font-weight: normal;
}
.grid-cols-1 {
  display: grid;
  grid-template-columns: 1fr;
}
.md-grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}
.auto-grid-280 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}
.mt-12 {
  margin-top: 3rem;
}

/* Multi-Step Modal */
.pkg-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.pkg-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.pkg-modal-content {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.pkg-modal-overlay.active .pkg-modal-content {
  transform: translateY(0);
}
.pkg-modal-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-gray-600);
  cursor: pointer;
  transition: color 0.2s;
}
.pkg-modal-close:hover {
  color: var(--color-primary);
}
.pkg-modal-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}
.pkg-step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
  position: relative;
}
.pkg-step-indicator::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gray-200);
  z-index: 1;
}
.pkg-step-item {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}
.pkg-step-num {
  width: 32px;
  height: 32px;
  background: var(--color-white);
  border: 2px solid var(--color-gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-weight: 600;
  color: var(--color-gray-500);
  transition: all 0.3s;
}
.pkg-step-item.active .pkg-step-num {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}
.pkg-step-item.completed .pkg-step-num {
  border-color: var(--color-success);
  background: var(--color-success);
  color: var(--color-white);
}
.pkg-step-label {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}
.pkg-step-item.active .pkg-step-label {
  color: var(--color-primary);
  font-weight: 600;
}
.pkg-form-step {
  display: none;
}
.pkg-form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.pkg-modal-footer {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-gray-200);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--color-gray-300);
  color: var(--color-gray-700);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--color-gray-100);
}

@media (max-width: 768px) {
  .md-grid-cols-2 {
    grid-template-columns: 1fr;
  }
}
.cursor-pointer {
  cursor: pointer;
}

/* ===================================
   PRICING TABLES
   =================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-2xl) var(--spacing-xl);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}
.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xl);
}
.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
}
.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-gray-100);
}
.pricing-title {
  font-size: 1.5rem;
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-sm);
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}
.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
}
.pricing-period {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  font-weight: 500;
}
.pricing-features {
  list-style: none;
  margin: 0 0 var(--spacing-xl) 0;
  padding: 0;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--color-gray-700);
}
.pricing-features li svg {
  flex-shrink: 0;
  color: var(--color-primary);
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.pricing-card .btn {
  width: 100%;
}

/* ===================================
   PREMIUM CONTACT PAGE STYLES
   =================================== */
.modern-contact-section {
  padding: 100px 0;
  background: var(--color-background);
  position: relative;
  overflow: hidden;
}

/* Background blob decorations */
.modern-contact-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  filter: blur(150px);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}
.modern-contact-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: var(--color-secondary);
  filter: blur(150px);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.modern-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
  background: var(--color-white);
}

.modern-contact-info.glass-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, #034c56 100%);
  color: var(--color-white);
  padding: 60px 40px;
  position: relative;
}

.modern-contact-info::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.modern-contact-info::after {
    content: '';
    position: absolute;
    top: 40px;
    right: 40px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.modern-contact-info h2 {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.modern-contact-info p.lead {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.modern-info-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.modern-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease;
}

.modern-info-item:hover {
  transform: translateX(10px);
}

.modern-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.2rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.modern-info-content h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.modern-info-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

/* Form Side */
.modern-contact-form {
  padding: 60px;
  background: var(--color-white);
}

.modern-contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--color-primary);
}

.form-premium-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-premium {
  position: relative;
  margin-bottom: 30px;
}

.form-group-premium .form-control {
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 10px 0;
  background: transparent;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group-premium .form-control:focus {
  border-bottom-color: var(--color-primary);
  outline: none;
  box-shadow: none;
}

.form-group-premium label {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--color-gray-500);
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 1rem;
}

.form-group-premium .form-control:focus + label,
.form-group-premium .form-control:not(:placeholder-shown) + label {
  top: -20px;
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
}

textarea.form-control {
    resize: none;
    height: 120px;
}

.btn-premium-send {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(11, 102, 115, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-premium-send:hover {
  background: #08535f;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(11, 102, 115, 0.4);
}

.btn-premium-send:active {
    transform: translateY(1px);
}

.modern-map-container {
    width: 100%;
    margin-top: 20px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.modern-map-container iframe {
    transition: all 0.5s ease;
    filter: contrast(1) brightness(1) saturate(1.2);
}

@media (max-width: 991px) {
  .modern-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .form-premium-row {
    grid-template-columns: 1fr;
  }
  .modern-contact-info.glass-card,
  .modern-contact-form {
      padding: 40px 20px;
  }
}
