@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  /* Brand Colors */
  --primary-color: #50a369;
  --secondary-color: #97c3a9;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #333;
  --text-gray: #666;

  /* Typography */
  --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-base: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.2rem;
  --font-size-2xl: 1.4rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3.5rem;
  --font-size-5xl: 4.5rem;
  --line-height-base: 1.6;
  --line-height-tight: 1.2;

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

  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 15px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 5px 20px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-transform: transform 0.3s ease;

  /* Layout */
  --max-width: 1200px;
  --navbar-height: 112px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: var(--line-height-base);
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(247, 255, 253, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  transition: var(--transition-base);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--spacing-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--primary-color);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  text-decoration: none;
}

.logo img {
  height: 80px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-xl); /* Increased gap for better spacing with fewer items */
}

.nav-menu li a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-base);
  cursor: pointer;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 6px;
  position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none; /* Hidden by default, shown only on mobile */
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition-base);
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay - works on all screen sizes */
.nav-menu.mobile-active {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(247, 255, 253, 0.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2xl); /* Increased gap for simplified menu */
  z-index: 1000;
}

.nav-menu.mobile-active li a {
  font-size: var(--font-size-2xl);
  font-weight: 600;
}

/* Tablet and larger screens - show simplified navigation */
@media (min-width: 769px) {
  .nav-menu {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

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

  .nav-menu {
    display: none; /* Hide default navigation on mobile */
  }

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

  .nav-container {
    padding: 0 var(--spacing-md);
  }

  .logo {
    font-size: var(--font-size-xl);
  }

  .logo img {
    height: 60px;
  }

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

/* Page Sections */
.page-section {
  display: none;
  min-height: 100vh;
  padding-top: var(--navbar-height);
}

.page-section.active {
  display: block;
}

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

/* Modern Hero Section */
.hero-modern {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 8rem 0 6rem 0;
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.3;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Modern Button System */
.btn-primary {
  background: var(--white);
  color: var(--primary-color);
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: var(--light-gray);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(7, 64, 50, 0.3);
}

.btn-icon {
  font-size: 0.9rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  font-size: var(--font-size-3xl);
  color: var(--primary-color);
}

/* Smooth scroll for section navigation */
html {
  scroll-behavior: smooth;
}

/* Section spacing for single-page layout */
#about-section, #contact-section {
  scroll-margin-top: var(--navbar-height);
  font-weight: 700;
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* Features Section */
.features {
  padding: var(--spacing-3xl) 0;
  background: var(--light-gray);
}

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

.feature-card {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-transform), box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: var(--transition-base);
}

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

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

.feature-icon {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  margin: 0 auto var(--spacing-md);
  overflow: hidden;
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(7, 64, 50, 0.1));
  opacity: 0;
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon::after {
  opacity: 1;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon img {
  transform: scale(1.05);
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-xl);
  font-weight: 600;
}

.feature-card p {
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: var(--spacing-md);
}

.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid #e5e7eb;
}

.feature-benefit {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 400;
}

.feature-benefit-icon {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.feature-status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-md);
}

.status-available {
  background: #22c55e;
  color: white;
}

.status-coming-soon {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Stats Section */
.stats-section {
  padding: var(--spacing-2xl) 0;
  background: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--light-gray);
  border-radius: var(--radius-md);
}

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  color: var(--text-gray);
  font-weight: 400;
}

/* Modern About Section */
.about-modern {
  padding: 6rem 0;
  background: var(--light-gray);
}

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

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

.section-header p {
  font-size: 1.2rem;
  color: var(--text-gray);
  font-weight: 400;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.info-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

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

.card-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: rgba(151, 195, 169, 0.2);
  border-radius: 12px;
  margin: 0 auto 1.5rem;
}

.card-lucide-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  stroke-width: 1.5;
}

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

.info-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-member {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.5;
}

.team-member strong {
  color: var(--primary-color);
  font-weight: 600;
}

.about-text {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  color: var(--text-gray);
  font-weight: 300;
}

.about-text h3 {
  font-weight: 600;
}

.about-text strong {
  font-weight: 500;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Projects Section */
.projects {
  padding: var(--spacing-3xl) 0;
  background: var(--light-gray);
}

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

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-transform);
}

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

.project-image {
  height: 250px;
  overflow: hidden;
}

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

.project-content {
  padding: var(--spacing-lg);
}

.project-content p {
  font-weight: 300;
  line-height: 1.7;
}

.project-content strong {
  font-weight: 500;
}

.project-status {
  display: inline-block;
  padding: 0.3rem var(--spacing-sm);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.status-current {
  background: #28a745;
  color: white;
}

.status-future {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Modern Contact Section */
.contact-modern {
  padding: 6rem 0;
  background:  var(--secondary-color) ;
}

.contact-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-form {
  background: var(--light-gray);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
}

.contact-form h3 {
  font-weight: 600;
}

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

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-weight: 300;
}

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

.submit-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
}

.submit-btn:hover {
  background: #0a5a42;
}

.contact-info {
  padding: var(--spacing-lg);
}

.contact-info h3 {
  font-weight: 600;
}

.contact-info h4 {
  font-weight: 500;
}

.contact-info p {
  font-weight: 300;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-sm);
  color: var(--primary-color);
}

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

/* Lucide Icon Styles */
.lucide-icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.lucide-icon-lg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #0a5a42);
  color: var(--white);
  padding: var(--spacing-3xl) 0;
  text-align: center;
}

.cta-section h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-sm);
  color: var(--white);
  font-weight: 700;
}

.cta-section p {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

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

.cta-primary {
  background: var(--white);
  color: var(--primary-color);
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--font-size-lg);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-transform), box-shadow 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.cta-secondary {
  background: transparent;
  color: var(--white);
  padding: 1.2rem 2.5rem;
  border: 2px solid var(--white);
  border-radius: var(--radius-full);
  font-size: var(--font-size-lg);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
}

.cta-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-lg) 0;
}

.footer p {
  font-weight: 300;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  :root {
    --font-size-5xl: 3rem;
    --font-size-4xl: 2.5rem;
    --font-size-3xl: 2rem;
    --spacing-5xl: 8rem;
    --spacing-4xl: 6rem;
  }

  /* Navbar & Navigation */
  .logo img {
    height: 60px;
  }

  .nav-menu:not(.mobile-active) {
    display: none !important;
  }

  .nav-container {
    padding: 0 var(--spacing-md);
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  /* Hero Section */
  .hero {
    padding: var(--spacing-4xl) 0 var(--spacing-3xl) 0;
    min-height: 80vh;
  }

  .hero p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
  }

  .hero-modern {
    padding: 4rem 0 3rem 0;
    min-height: 60vh;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .btn-primary, .btn-secondary, .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  /* Sections Padding */
  section {
    padding: 3rem 0 !important;
  }

  .about-modern, .contact-modern {
    padding: 3rem 0 !important;
  }

  /* Grids & Cards */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .info-card {
    padding: 1.8rem;
    margin-bottom: 1rem;
  }

  .info-card h3 {
    font-size: 1.2rem;
  }

  .info-card p {
    font-size: 0.95rem;
  }

  .contact-card {
    padding: 1.8rem;
    margin: 0 var(--spacing-md);
  }

  .contact-card h2 {
    font-size: 1.8rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
    padding: 0 var(--spacing-md);
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

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

  .stat-item {
    padding: 1.5rem 1rem;
  }

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

  .project-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
  }

  /* Text sizing */
  h2 {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  h4 {
    font-size: 1rem !important;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Icon sizes on mobile */
  div[style*="width: 50px; height: 50px"] {
    width: 45px !important;
    height: 45px !important;
    font-size: 20px !important;
  }

  /* Footer */
  .footer {
    padding: 2rem 1rem;
  }

  .footer-socials {
    gap: 1rem;
    margin-top: 1rem;
  }

  .footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Button text wrapping */
  button {
    word-break: break-word;
    white-space: normal;
  }
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.footer-socials a {
  color: var(--white);
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tablet Responsiveness (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-md);
  }

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

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .btn-primary, .btn-secondary, .btn-outline {
    padding: 0.95rem 1.8rem;
    font-size: 1.05rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  section {
    padding: 4rem 0;
  }
}

/* Small screens (under 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-modern {
    padding: 3rem 0 2rem 0;
    min-height: 55vh;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }

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

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.8rem;
  }

  h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1.2rem !important;
  }

  h3 {
    font-size: 1.1rem !important;
  }

  h4 {
    font-size: 0.95rem !important;
  }

  p {
    font-size: 0.9rem;
  }

  .btn-primary, .btn-secondary, .btn-outline {
    width: 100%;
    max-width: 260px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }

  .info-card {
    padding: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .info-card h3 {
    font-size: 1.1rem;
  }

  .info-card p {
    font-size: 0.9rem;
  }

  .cta-primary, .cta-secondary {
    width: 100%;
    max-width: 260px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }

  .stat-item {
    padding: 1.2rem 0.8rem;
  }

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

  .feature-icon {
    width: 80px;
    height: 80px;
  }

  div[style*="width: 50px; height: 50px"] {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
  }

  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-socials a {
    width: 36px;
    height: 36px;
  }
}

