/* styles.css */

/* RESET & VARIABLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Modern Teal Color Scheme */
  --primary: #0e7490;       /* Primary teal */
  --primary-light: #06b6d4; /* Lighter teal */
  --primary-dark: #155e75;  /* Darker teal */
  --secondary: #1e40af;     /* Deep blue */
  --accent: #f59e0b;       /* Warm accent */
  --accent-light: #fbbf24; /* Lighter accent */
  
  /* Text Colors */
  --text: #1e293b;         /* Dark gray for headings */
  --text-light: #475569;   /* Medium gray for body text */
  --text-lighter: #64748b; /* Light gray for secondary text */
  
  /* Background Colors */
  --bg: #f8fafc;           /* Light gray background */
  --bg-alt: #f1f5f9;       /* Slightly darker background */
  --container-width: 1200px; /* Max width for content */
  --section-padding: 6rem 0; /* Default section padding */
  --transition: all 0.3s ease; /* Smooth transitions */
  --card-bg: #ffffff;      /* White for cards */
  
  /* Form Messages */
  --header-height: 70px;
  --mobile-padding: 1rem;
}

.form-message {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 0.5rem;
  font-weight: 500;
  display: none;
  transition: all 0.3s ease;
}

.form-message:not(:empty) {
  display: block;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border-left: 4px solid #059669;
  box-shadow: 0 2px 4px rgba(5, 150, 105, 0.1);
}

.form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.1);
}

/* Loading spinner */
.fa-spinner.fa-spin {
  margin-right: 0.5rem;
  animation: spin 1s linear infinite;
}

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

/* UI Colors */
  --border: #e2e8f0;       /* Border color */
  --success: #10b981;      /* Success green */
  --warning: #f59e0b;      /* Warning yellow */
  --error: #ef4444;        /* Error red */
  --info: #3b82f6;         /* Info blue */
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

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

a:hover {
  color: var(--secondary);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

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

.feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background: rgba(6, 182, 212, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 700;
  transition: var(--transition);
}

.feature-card:hover h3 {
  color: var(--primary);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Hero Section */
.hero-section {
  padding: 10rem 0 8rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
  color:rgb(0, 0, 0);
  position: relative;
  z-index: 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybikiLz48L3N2Zz4=');
  opacity: 0.3;// Mobile menu toggle
  const menuToggle = document.querySelector('.menu-toggle');
  const navLinks = document.querySelector('.nav-links');
  
  if (menuToggle) {
    menuToggle.addEventListener('click', () => {
      menuToggle.classList.toggle('active');
      navLinks.classList.toggle('active');
      document.body.style.overflow = menuToggle.classList.contains('active') ? 'hidden' : '';
    });
  
    // Close menu when clicking on a link
    document.querySelectorAll('.nav-links a').forEach(link => {
      link.addEventListener('click', () => {
        menuToggle.classList.remove('active');
        navLinks.classList.remove('active');
        document.body.style.overflow = '';
      });
    });
  }
  
  // Close menu when clicking outside
  document.addEventListener('click', (e) => {
    if (!e.target.closest('.navbar') && navLinks.classList.contains('active')) {
      menuToggle.classList.remove('active');
      navLinks.classList.remove('active');
      document.body.style.overflow = '';
    }
  });
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-image {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(63, 92, 160, 0.25));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float 6s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  color:rgb(12, 12, 12);
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
  position: relative;
  display: block;
  max-width: 800px;
  letter-spacing: -0.5px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  border-radius: 3px;
  opacity: 0.9;
}

.hero-subtitle {
  display: inline-block;
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-text {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-buttons .btn {
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  justify-content: center;
}

.hero-buttons .btn i {
  font-size: 1.1em;
}

.hero-buttons .btn-primary {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(14, 116, 144, 0.3);
}

.hero-buttons .btn-primary:hover {
  background-color: #e67e22;
  border-color: #e67e22;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.hero-buttons .btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.hero-buttons .btn-outline:hover {
  background-color: rgba(14, 116, 144, 0.1);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
    padding: 8rem 0 6rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-buttons {
    justify-content: center;
    margin-top: 2.5rem;
  }
  
  .hero-image {
    margin: 2rem auto 0;
    max-width: 80%;
    order: -1;
  }
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Base Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

/* Section Styling */
section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

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

.section-subtitle {
  display: block;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto 1.5rem;
  position: relative;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--text-lighter);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 40px;
  width: auto;
  margin-right: 12px;
  transition: var(--transition);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-left: 0.75rem;
  transition: var(--transition);
  letter-spacing: -0.5px;
}

.logo-text .highlight {
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.logo-text .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(6, 182, 212, 0.2);
  z-index: -1;
  border-radius: 4px;
  transition: var(--transition);
}

.logo-container:hover .highlight::after {
  height: 12px;
  background-color: rgba(6, 182, 212, 0.3);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 1.75rem;
  position: relative;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.25rem;
  position: relative;
  border-radius: var(--radius-sm);
}

.nav-links a i {
  font-size: 1.1em;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.25rem;
  width: calc(100% - 0.5rem);
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover i {
  transform: translateX(3px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  margin-left: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--primary);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--primary);
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: calc(100vh - var(--header-height));
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: right 0.4s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .nav-links li {
    margin: 0.5rem 0;
    width: 100%;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: var(--radius);
  }

  .nav-links a:hover {
    background-color: var(--bg-alt);
  }

  .nav-links a::after {
    display: none;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2rem) 0 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  background: url('../images/business-bg.jpg') no-repeat center center/cover;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #ff6600;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 1rem;
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Primary Button */
.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background-color: var(--primary-dark);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}

/* Outline Button */
.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Light Button */
.btn-light {
  background-color: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.btn-light:hover {
  background-color: var(--bg-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

/* Outline Light Button */
.btn-outline-light {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Button Sizes */
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.125rem;
}

/* Button with Icon */
.btn i {
  font-size: 1.1em;
  transition: transform 0.2s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

/* Button Groups */
.btn-group {
  display: inline-flex;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.btn-group .btn {
  border-radius: 0;
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-group .btn:last-child {
  border-right: none;
}

/* Animated Button */
.btn-animated {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-animated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-dark);
  z-index: -2;
}

.btn-animated::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-light);
  transition: all 0.3s;
  z-index: -1;
}

.btn-animated:hover::before {
  width: 100%;
}

/* CARD STYLES */
.card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(203, 213, 225, 0.3);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.card:hover::before {
  opacity: 1;
}

/* SECTIONS */
.section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #111827;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

/* PRODUCTS */
.products-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.product-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 500px;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #f8f9fa;
  padding: 1rem;
}

.product-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.product-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-info ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
  list-style-type: none;
}

.product-info li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.product-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.product-info .btn {
  margin-top: auto;
  align-self: flex-start;
  margin-top: 1.5rem;
}

/* Zig Zag Layout for larger screens */
@media (min-width: 992px) {
  .product-card {
    flex-direction: row;
    min-height: 300px;
    margin-bottom: 6rem;
    align-items: center;
  }
  
  .product-card:nth-child(odd) {
    flex-direction: row-reverse;
  }
  
  .product-card img {
    width: 45%;
    height: 350px;
    object-fit: contain;
    padding: 1.5rem;
  }
  
  .product-info {
    width: 55%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .product-info h2 {
    margin-top: 0;
  }
  
  .product-info .btn {
    margin-top: auto;
    margin-bottom: 0;
  }
  
  .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
  }
  
  .product-card:hover::before {
    opacity: 1;
  }
}

/* Animation for product cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }

/* CONTACT SECTION */
.contact-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cbd5e1' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid rgba(203, 213, 225, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-size: 1.75rem;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.contact-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.contact-text {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.contact-link {
  color: var(--primary);
  font-weight: 500;
  display: inline-block;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* UTILITY CLASSES */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* NOTIFICATIONS */
.notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #fff;
  color: #1f2937;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInRight 0.3s ease-out forwards;
  max-width: 350px;
}

.notification.hide {
  animation: fadeOut 0.3s ease-out forwards;
}

.notification.success {
  border-left: 4px solid #10b981;
}

.notification.error {
  border-left: 4px solid #ef4444;
}

.notification.info {
  border-left: 4px solid #3b82f6;
}

.notification-warning {
  border-left: 4px solid #f59e0b;
}

.notification-close {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: auto;
  transition: color 0.2s;
}

.notification-close:hover {
  color: #1f2937;
}

/* FILTER BUTTONS */
.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  color: #4b5563;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* TESTIMONIALS */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
  padding: 2rem 0;
}

.testimonial {
  position: absolute;
  width: 100%;
  transition: all 0.5s ease;
  opacity: 0;
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #4b5563;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-info h4 {
  margin: 0;
  color: #111827;
  font-weight: 600;
}

.testimonial-info p {
  margin: 0.25rem 0 0;
  color: #6b7280;
  font-size: 0.9rem;
}

/* COUNTERS */
.counter-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.counter-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.counter-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1;
}

.counter-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* FOOTER */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding-top: 6rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.footer-top {
  padding-bottom: 4rem;
}

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

.footer-col h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
}

.footer-about p {
  color: var(--color-gray-light);
  margin: 1.5rem 0;
  line-height: 1.8;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
}

/* ==========================================================================
   #BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.back-to-top i {
  transition: transform 0.3s ease;
}

.back-to-top:hover i {
  transform: translateY(-2px);
}

/* ==========================================================================
   #PAGE LOADER
   ========================================================================== */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  perspective: 800px;
}

.loader-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: var(--primary);
  border-bottom-color: var(--secondary);
  animation: rotate 1.5s linear infinite;
}

.loader-inner:nth-child(2) {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  animation-duration: 1.8s;
  animation-direction: reverse;
  border-left-color: var(--primary-light);
  border-right-color: var(--secondary);
}

.loader-inner:nth-child(3) {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 20px;
  left: 20px;
  animation-duration: 2.2s;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: var(--secondary);
  border-right-color: var(--primary);
}

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

.loader-text {
  color: var(--text);
  font-size: 1.1rem;
  margin-top: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-left: 1.5rem;
}

.loader-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.5);
    opacity: 0.7;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .loader {
    width: 60px;
    height: 60px;
  }
  
  .loader-inner:nth-child(2) {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    top: 7.5px;
    left: 7.5px;
  }
  
  .loader-inner:nth-child(3) {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    top: 15px;
    left: 15px;
  }
  
  .loader-text {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

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

.footer-links a {
  color: var(--color-gray-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.footer-links a i {
  font-size: 0.8rem;
  color: var(--color-primary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 10px;
}

.footer-links a:hover i {
  color: var(--color-secondary);
}

.contact-info {
  margin: 0;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  color: var(--color-gray-light);
  line-height: 1.6;
}

.contact-info i {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-info span {
  display: block;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--color-gray);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--color-gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

/* PARTNERS SECTION */
.partners-section {
  padding: 5rem 0;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.partners-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.partner-logo {
  flex: 0 0 calc(20% - 2rem);
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 120px;
  border: 1px solid var(--color-gray-light);
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  filter: grayscale(100%) contrast(0.5);
  opacity: 0.8;
  transition: var(--transition);
}

.partner-logo:hover img {
  filter: none;
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .partner-logo {
    flex: 0 0 calc(33.333% - 1.5rem);
  }
  
  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .footer-col {
    text-align: center;
  }
  
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .contact-info li {
    justify-content: center;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    margin-top: 0.5rem;
  }
}

@media (max-width: 576px) {
  .partner-logo {
    flex: 0 0 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.contact-details {
  font-size: 0.95rem;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.contact-form button {
  padding: 0.75rem;
  background: #ff6600;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background: #e05500;
}

iframe {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column !important;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }
}

/* Base styles for all devices */
:root {
  --header-height: 70px;
  --mobile-padding: 1rem;
  --transition: all 0.3s ease;
}

/* Ensure proper viewport behavior */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  padding-top: var(--header-height); /* Space for fixed header */
}

/* Navbar styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 var(--mobile-padding);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* Navigation links */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: var(--transition);
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  position: relative;
}

/* Mobile menu styles */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li {
    margin: 0.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 0.75rem 1.5rem;
    width: 100%;
    justify-content: center;
  }

  /* Staggered animation for nav items */
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
}

/* Product cards responsive adjustments */
.products-container {
  padding: 2rem var(--mobile-padding);
}

.product-card {
  margin-bottom: 3rem;
  min-height: auto;
}

/* Adjust product card layout for mobile */
@media (max-width: 991px) {
  .product-card {
    flex-direction: column !important;
  }
  
  .product-card img {
    height: 250px;
    width: 100%;
    object-fit: contain;
  }
  
  .product-info {
    padding: 1.5rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Very small devices */
@media (max-width: 480px) {
  :root {
    --header-height: 60px;
    --mobile-padding: 0.75rem;
  }
  
  .product-card img {
    height: 200px;
  }
  
  .product-info {
    padding: 1.25rem;
  }
  
  .product-info h2 {
    font-size: 1.3rem;
  }
}

/* Prevent horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix for iOS viewport height */
@supports (-webkit-touch-callout: none) {
  html {
    height: -webkit-fill-available;
  }
  
  body {
    min-height: -webkit-fill-available;
  }
}
/* Hero Section */
.hero-section {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
  color: white;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  opacity: 0.15;
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out;
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons .btn {
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-buttons .btn i {
  font-size: 1.1em;
}

.hero-buttons .btn-primary {
  background: var(--accent);
  border: 2px solid var(--accent);
  color: white;
}

.hero-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.hero-buttons .btn-outline:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-image {
  margin-top: 4rem;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  max-width: 100%;
  max-height: 400px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-section {
    padding: 7rem 0 5rem;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-image img {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 6rem 0 4rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero-buttons {
    margin-top: 2rem;
  }
  
  .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .hero-image img {
    max-height: 250px;
  }
}
/* Map Container */
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Loading state for map */
.map-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
  border-radius: 1rem;
  height: 450px;
}

/* Responsive map */
@media (max-width: 768px) {
  .map-container {
    height: 350px;
  }
}