﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --color-bg: #FEF9F4;
  --color-primary: #82C1BE;
  --color-accent: #B2B4D1;
  
  /* Additional Neutrals */
  --color-text: #2D3748;
  --color-text-light: #4A5568;
  --color-white: #FFFFFF;
  --color-surface: #FFFDFB;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  
  /* Border Radius */
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* Typography Utilities */
.text-center { text-align: center; }
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
  font-size: 1rem;
}

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

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

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(254, 249, 244, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(130, 193, 190, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 125px;
}

.logo img {
  height: 95px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-text-light);
}

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

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--color-white);
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 100;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-content a {
  color: var(--color-text);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: all 0.3s;
}

.dropdown-content a:hover {
  background-color: var(--color-light);
  color: var(--color-primary);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 180px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(178, 180, 209, 0.2);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  color: var(--color-text);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Hero Image Composition */
.hero-image-composition {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-blob-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px dashed var(--color-primary);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  animation: morph 8s ease-in-out infinite alternate;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  animation: morph 10s ease-in-out infinite alternate-reverse;
}

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

.stat-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(130, 193, 190, 0.2);
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  color: #F59E0B;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-text {
  font-size: 0.6rem;
  color: var(--color-text-light);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.stat-card-1 {
  top: 10%;
  left: -15%;
  animation-delay: 0s;
}

.stat-card-2 { top: 10%; right: -10%; left: auto; }

.stat-card-3 { bottom: 10%; left: -10%; }

.stat-card-4 { bottom: -5%; right: -5%; }

@keyframes morph {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

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

/* Base Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.02);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
}

@media (max-width: 992px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    gap: 16px;
    align-items: flex-start;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    padding-left: 16px;
    margin-top: 8px;
    transform: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  
  .dropdown:hover .dropdown-content,
  .dropdown:active .dropdown-content {
    display: flex;
  }
  
  .section { padding: 60px 0; }
  .hero { padding-top: 160px; }
}

/* Hero Carousel Marquee */
.hero-carousel-wrapper { position: absolute; bottom: 0; left: 0; width: 100%; padding: 16px 0; overflow: hidden; white-space: nowrap; z-index: 10; }
.scrolling-ticker-wrapper { position: relative; width: 100%; padding: 24px 0; background-color: var(--color-primary); overflow: hidden; white-space: nowrap; }

.hero-carousel-track, .scrolling-ticker-track {
  display: inline-flex;
  gap: 24px;
  animation: scrollTrack 43s linear infinite;
  padding-left: 24px;
}

.hero-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-card i {
  width: 20px;
  height: 20px;
}

@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 20px;
  }
  .hero-image-composition {
    max-width: 280px;
    margin: 40px auto;
  }
  .stat-card {
    padding: 10px 14px;
    border-radius: 12px;
  }
  .stat-card .stat-number {
    font-size: 1.5rem;
  }
  .stat-card .stat-text {
    font-size: 0.65rem;
  }
  .stat-card-1 { top: -5%; left: -5%; }
  .stat-card-2 { top: 10%; right: -10%; left: auto; }
  .stat-card-3 { bottom: 10%; left: -10%; }
  .stat-card-4 { bottom: -5%; right: -5%; }
  
  .hero {
    padding-top: 160px;
    padding-bottom: 280px; /* space for carousel */
  }
  .header .container {
    height: 100px;
  }
  
}

/* Hero Button Colors */
.hero-buttons .btn-primary {
  background-color: #F2C1C2 !important;
  color: #ffffff !important;
}
.hero-buttons .btn-primary:hover {
  background-color: #ffffff !important;
  color: #F2C1C2 !important;
}
.hero-buttons .btn-outline {
  border-color: #F2C1C2 !important;
  color: #F2C1C2 !important;
}
.hero-buttons .btn-outline:hover {
  background-color: #F2C1C2 !important;
  color: #ffffff !important;
  border-color: #F2C1C2 !important;
}
