@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Modern Professional Palette */
  --bg-dark: #0f172a;
  /* Slate 900 */
  --bg-dark-lighter: #1e293b;
  /* Slate 800 */
  --text-main: #334155;
  /* Slate 700 */
  --text-dark: #0f172a;
  /* Slate 900 */
  --text-light: #64748b;
  /* Slate 500 */

  /* Brand Colors */
  --primary: #2563eb;
  /* Blue 600 */
  --primary-dark: #1d4ed8;
  /* Blue 700 */
  --accent: #0ea5e9;
  /* Sky 500 */

  --surface: #ffffff;
  --surface-highlight: #f8fafc;
  /* Slate 50 */
  --border: #e2e8f0;
  /* Slate 200 */

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  --radius: 8px;
  /* More professional, less "app-like" */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

/* ================================
   NAVIGATION
   ================================ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.topnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background-color: var(--primary);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ================================
   CARD SLIDER (Horizontal Scroll)
   ================================ */
.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  /* Increased padding to make room for buttons */
}

.card-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE */
  scroll-behavior: smooth;
}

.card-slider::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* Make cards inside slider fixed width */
.card-slider .card {
  min-width: 300px;
  max-width: 300px;
  scroll-snap-align: start;
  flex-shrink: 0;
  margin-bottom: 0;
  /* Override grid margin */
}

.slider-btn {
  position: absolute;
  top: 50%;
  /* Center vertically better */
  transform: translateY(-50%);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.2s ease;
  color: var(--primary);
  /* Fix overlap */
}

.slider-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 0;
  /* Align to the new padding edge */
}

.slider-btn.next {
  right: 0;
}

@media (max-width: 900px) {
  .slider-btn {
    display: none;
    /* Hide buttons on mobile, use swipe */
  }

  .card-slider {
    padding-right: 2rem;
    /* User can see there's more content */
  }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.logo-container img {
  height: 40px;
  width: auto;
  /* Prevent logo from being too wide on small screens */
  max-width: 100%;
}

@media (max-width: 600px) {
  .logo-container img {
    /* Mobile fix: Ensure logo fits and doesn't cut off */
    height: 32px;
  }
}

/* ================================
   INFINITE MARQUEE (Carousel)
   ================================ */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: white;
  padding: 2rem 0;
}

.marquee-content {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.marquee-item {
  color: #94a3b8;
  font-size: 2rem;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.marquee-item i {
  margin-right: 0.5rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #10b981 !important;
  /* Emerald 500 */
}

.nav-whatsapp:hover {
  color: #059669 !important;
  /* Emerald 600 */
}

/* Mobile Nav Adjustments */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* Simplification for now, usually needs a hamburger menu script */
  }
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  position: relative;
  background: radial-gradient(circle at top right, #e0f2fe 0%, transparent 40%),
    radial-gradient(circle at bottom left, #f1f5f9 0%, transparent 40%),
    #ffffff;
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.logo {
  max-width: 400px;
  margin: 0 auto 2rem;
  display: block;
  filter: brightness(0);
  /* Make it solid black/dark slate */
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  /* Unified size for Home and Subpages */
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary,
.btn {
  /* Default btn is primary */
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-lg);
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5);
}

.btn-ghost {
  background: white;
  color: var(--text-dark);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--text-light);
  background: var(--surface-highlight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-ghost-dark:hover {
  background: var(--text-dark);
  color: white;
}


/* ================================
   BADGES
   ================================ */
.hero-badges {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.badge i {
  color: var(--primary);
}

/* Restoring card styles */
.card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: inline-block;
  background: #eff6ff;
  padding: 1rem;
  border-radius: 12px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ================================
   TWO COL LAYOUT
   ================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.highlight-card {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border: 1px solid #dbeafe;
  padding: 2.5rem;
  border-radius: var(--radius);
}

.checklist li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.checklist i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ================================
   STATS
   ================================ */
.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.stat {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  min-width: 200px;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ================================
   HERO
   ================================ */
.hero {
  padding: 8rem 2rem 5rem;
  /* Extra top padding for fixed header */
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  /* Premium subtle background: barely visible radial gradient */
  background: radial-gradient(circle at 50% 10%, #f8fafc 0%, #ffffff 100%);
}

/* ================================
   SECTIONS
   ================================ */
.section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section p.lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
  color: var(--text-light);
}

.gray {
  background-color: var(--surface-highlight);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ================================
   GRID & CARDS
   ================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Force 2 columns for balanced layout (Pyramid effect avoids 3+1) */
.grid-balanced {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .grid-balanced {
    grid-template-columns: 1fr;
  }
}

.location-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.location-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8fafc;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  text-align: left;
  border: 1px solid var(--border);
}

.location-pill i {
  font-size: 1.5rem;
  color: var(--primary);
}

.card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

/* .card::before removed to prevent rendering artifacts */

/* ================================
   CONTACT SECTION
   ================================ */
/* Removed .dark theme - now using standard section style */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 3rem auto;
}

.contact-card {
  background: white;
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.contact-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-card i {
  color: var(--primary);
  font-size: 1.5rem;
  background: #eff6ff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-value {
  color: var(--text-dark);
  font-weight: 600;
}

/* Form Styles */
.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
  font-family: inherit;
  transition: all 0.2s;
  font-size: 1rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  background: white;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-actions {
  margin-top: 2rem;
  text-align: right;
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
  background: white;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-left: 1.5rem;
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--primary);
}

/* ================================
   UTILITIES & ANIMATIONS
   ================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float span {
  display: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Note styles */
.note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.note-icon {
  color: var(--primary);
  font-size: 1.5rem;
}

.note-text {
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Pill Row */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.pill {
  background: var(--surface-highlight);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
}