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

:root {
  --navy-deep: #060B14;
  --navy-dark: #0D1B2A;
  --navy-mid: #1B2D45;
  --slate: #2B3D5B;
  --coral: #F04C64;
  --coral-dark: #D43D54;
  --teal: #00C9A7;
  --teal-dark: #00A88B;
  --gold: #F9A826;
  --gold-dark: #E09414;
  --white: #FFFFFF;
  --off-white: #F4F5FA;
  --light-gray: #E8EBF2;
  --border: #D2D6E4;
  --text-dark: #1A1A2E;
  --text-body: #3D3D5C;
  --text-medium: #5C5C7A;
  --text-light: #A8B4CC;
  --text-muted: #7A7A94;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  color: var(--text-dark);
  font-weight: 700;
}

h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--coral);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.accent-bar {
  width: 56px;
  height: 4px;
  background: var(--coral);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn:active {
  transform: scale(0.97);
}

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

.btn-primary:hover {
  background: var(--coral-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(240, 76, 100, 0.35);
}

.btn-secondary {
  background: var(--navy-mid);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--slate);
  color: var(--white);
}

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

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

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

.btn-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
}

/* ---------- HEADER / NAVIGATION ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--coral);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: var(--navy-mid);
}

.nav-cta {
  margin-left: 0.75rem;
  padding: 0.55rem 1.25rem !important;
  background: var(--coral) !important;
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.25s ease;
}

.nav-cta:hover {
  background: var(--coral-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  background: var(--navy-deep);
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(240, 76, 100, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(0, 201, 167, 0.06) 0%, transparent 50%);
  color: var(--white);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 76, 100, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-highlight {
  color: var(--coral);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 480px;
}

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

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.hero-card-primary {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #1F3558 100%);
  border: 1px solid rgba(240, 76, 100, 0.3);
  z-index: 2;
}

.hero-card-secondary {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  z-index: 1;
  opacity: 0.5;
  transform: scale(0.95);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(240, 76, 100, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.hero-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.hero-card-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.hero-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral);
}

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--coral);
  transition: height 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.service-card:hover::after {
  height: 100%;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.service-icon.coral {
  background: #FDE8EC;
}

.service-icon.teal {
  background: #D4F5EE;
}

.service-icon.gold {
  background: #FEF3DC;
}

.service-icon.slate {
  background: #ECF0F5;
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--coral);
}

.learn-more-arrow {
  transition: transform 0.25s ease;
}

.service-card:hover .learn-more-arrow {
  transform: translateX(4px);
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--navy-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  overflow: hidden;
  position: relative;
}

.about-image-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.about-image-placeholder-dots {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  padding: 2rem;
}

.about-image-placeholder-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate);
  display: block;
}

.about-image-placeholder-dots span.highlight {
  background: var(--coral);
}

.about-image-placeholder-dots span.teal {
  background: var(--teal);
}

.about-image-placeholder-dots span.gold-dot {
  background: var(--gold);
}

.about-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--coral);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(240, 76, 100, 0.3);
}

.about-float-card .big-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-float-card .big-number-label {
  font-size: 0.85rem;
  font-weight: 500;
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-medium);
  margin-bottom: 1.25rem;
}

.about-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-check {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
}

/* ---------- STATS COUNTERS ---------- */
.stats {
  background: var(--navy-dark);
  color: var(--white);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number.coral {
  color: var(--coral);
}

.stat-number.teal {
  color: var(--teal);
}

.stat-number.gold {
  color: var(--gold);
}

.stat-number.white {
  color: var(--white);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ---------- WHY CHOOSE US ---------- */
.why-us {
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-us-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-us-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  border-color: transparent;
}

.why-us-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.why-us-icon.red {
  background: #FDE8EC;
}

.why-us-icon.green {
  background: #D4F5EE;
}

.why-us-icon.yellow {
  background: #FEF3DC;
}

.why-us-icon.blue {
  background: #ECF0F5;
}

.why-us-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.why-us-text p {
  font-size: 0.93rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 3.5rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  border: 2px solid var(--light-gray);
  border-radius: 6px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(240, 76, 100, 0.1);
}

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

.form-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-message {
  font-size: 0.9rem;
  font-weight: 500;
}

.form-message.success {
  color: var(--teal);
}

.form-message.error {
  color: var(--coral);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-icon.coral {
  background: #FDE8EC;
}

.contact-info-icon.teal {
  background: #D4F5EE;
}

.contact-info-icon.gold {
  background: #FEF3DC;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  font-size: 0.93rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

.contact-info-text a {
  color: var(--text-medium);
}

.contact-info-text a:hover {
  color: var(--coral);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 201, 167, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(240, 76, 100, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4.5rem 1.5rem;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-dark);
  color: var(--text-light);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-links h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--text-light);
  font-size: 0.93rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

/* ---------- PAGE BANNER (INNER PAGES) ---------- */
.page-banner {
  background: var(--navy-deep);
  padding: 6rem 0 3rem;
  text-align: center;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-banner p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card-stack {
    max-width: 360px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-float-card {
    right: 0;
  }

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

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

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

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

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .section {
    padding: 3.5rem 0;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0.75rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    align-items: stretch;
    overflow-y: auto;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    text-align: center;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-card-stack {
    max-width: 300px;
  }

  .hero-card-secondary {
    display: none;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-card-stats {
    flex-direction: column;
    gap: 1rem;
  }
}
