/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #F0FFF4; /* Honeydew */
  color: #2A2A2A;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}


/* ================= NAVBAR : UNIQUE ================= */
.nav-unique {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 248, 240, 0.92); /* Unbleached Silk */
  backdrop-filter: blur(12px);
  z-index: 999;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.nav-unique.shrink {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: 1300px;
  margin: auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #6B5B95; /* Orchid */
}

.nav-brand span {
  color: #7EC8C3; /* Aero Blue */
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 42px;
}

.nav-menu a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #2A2A2A;
  text-decoration: none;
  padding-bottom: 6px;
}

/* Editorial underline */
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #F08080; /* Light Coral */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

/* CTA */
.nav-cta a {
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  background: #6B5B95;
  color: #FFF8F0;
  transition: all 0.3s ease;
}

.nav-cta a:hover {
  background: #F08080;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #6B5B95;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 40px;
    background: #FFF8F0;
    flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    gap: 26px;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}


/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  padding: 20px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #6B5B95; /* Orchid */
}

.hero-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
}

.hero-btn {
  padding: 14px 36px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  background: #6B5B95;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #F08080;
  transform: translateY(-3px);
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #FFF8F0;
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }

  .hero-content h1 {
    font-size: 40px;
  }
}
/* ================= SERVICES : UNIQUE ================= */
.services-unique {
  position: relative;
  padding: 140px 24px;
  background: #FFF8F0; /* Unbleached Silk */
  overflow: hidden;
}

.services-intro {
  max-width: 700px;
  margin: 0 auto 100px;
  text-align: center;
}

.services-intro h2 {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  color: #6B5B95; /* Light Medium Orchid */
  margin-bottom: 16px;
}

.services-intro p {
  font-size: 17px;
  color: #555;
}

/* Flow layout */
.services-flow {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Service row */
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

.service-row.left {
  justify-content: flex-start;
}

.service-row.right {
  justify-content: flex-end;
}

/* Index */
.service-index {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  color: #7EC8C3; /* Aero Blue */
  line-height: 1;
  min-width: 90px;
}

/* Content */
.service-content {
  background: #F0FFF4; /* Honeydew */
  padding: 40px 44px;
  border-radius: 28px;
  max-width: 520px;
  transition: transform 0.6s ease;
}

.service-row:hover .service-content {
  transform: translateY(-8px);
}

.service-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: #2A2A2A;
}

.service-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Divider */
.services-divider {
  margin-top: 120px;
  width: 100%;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .service-row,
  .service-row.left,
  .service-row.right {
    justify-content: flex-start;
  }

  .service-index {
    font-size: 48px;
  }

  .service-content {
    max-width: 100%;
  }
}

/* ================= ABOUT ================= */
.about {
  position: relative;
  padding: 130px 24px;
  background: #F0FFF4; /* Honeydew */
  overflow: hidden;
}

.about-header {
  max-width: 720px;
  margin: 0 auto 90px;
  text-align: center;
}

.about-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  color: #6B5B95; /* Light Medium Orchid */
  margin-bottom: 16px;
}

.about-header p {
  font-size: 17px;
  color: #555;
}

/* Timeline */
.timeline {
  max-width: 900px;
  margin: auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #E6FAF5; /* Soft Aero Blue */
}

/* Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-dot {
  position: absolute;
  left: -2px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: #F08080; /* Light Coral */
  border-radius: 50%;
}

.timeline-content {
  background: #FFF8F0; /* Unbleached Silk */
  padding: 30px;
  border-radius: 22px;
  margin-left: 40px;
  transition: transform 0.6s ease;
}

.timeline-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: #2A2A2A;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Hover Motion */
.timeline-item:hover .timeline-content {
  transform: translateX(10px);
}

/* Decorative SVG */
.about-svg {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 300px;
  z-index: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .timeline {
    padding-left: 20px;
  }

  .timeline-content {
    margin-left: 30px;
  }
}
/* ================= WHY CHOOSE US ================= */
.why-us {
  padding: 130px 24px;
  background: #FFF8F0; /* Unbleached Silk */
}

.why-header {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}

.why-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  color: #6B5B95; /* Light Medium Orchid */
  margin-bottom: 16px;
}

.why-header p {
  font-size: 17px;
  color: #555;
}

/* Grid */
.why-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.why-card {
  position: relative;
  background: #F0FFF4; /* Honeydew */
  border-radius: 26px;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
}

/* SVG */
.why-svg {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  fill: #7EC8C3; /* Aero Blue */
  opacity: 0.35;
  transition: transform 0.8s ease;
}

.why-card:hover .why-svg {
  transform: translateX(-50%) rotate(15deg) scale(1.1);
}

/* Numbers */
.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  color: #2A2A2A;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: #555;
}

/* Bottom Accent */
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #F08080; /* Light Coral */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover::after {
  transform: scaleX(1);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= UNIQUE CONTACT ================= */
.contact-unique {
  position: relative;
  display: flex;
  min-height: 90vh;
  background: #F0FFF4; /* Honeydew */
  overflow: hidden;
}

/* Left vertical brand strip */
.contact-strip {
  width: 30%;
  background: #6B5B95; /* Light Medium Orchid */
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-strip h2 {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: #FFF8F0; /* Unbleached Silk */
}

.strip-line {
  width: 80px;
  height: 4px;
  background: #F08080; /* Light Coral */
  margin-top: 40px;
}

/* Right content */
.contact-main {
  width: 70%;
  padding: 140px 80px;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Cards */
.contact-card {
  background: #FFF8F0;
  padding: 50px;
  border-radius: 28px;
  min-width: 320px;
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease;
}

.contact-card:hover {
  transform: translateY(-12px);
}

.contact-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  margin-bottom: 16px;
  color: #2A2A2A;
}

.contact-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.contact-card a {
  color: #6B5B95;
  font-weight: 500;
  text-decoration: none;
}

.contact-card a:hover {
  color: #F08080;
}

/* Accent card */
.contact-card.accent {
  background: #E6FAF5; /* Aero Blue soft */
}

/* Floating blobs */
.contact-blob {
  position: absolute;
  fill: #7EC8C3; /* Aero Blue */
  opacity: 0.35;
  animation: float 12s ease-in-out infinite;
}

.blob-1 {
  width: 260px;
  right: 120px;
  top: 60px;
}

.blob-2 {
  width: 220px;
  right: 40px;
  bottom: 80px;
  animation-delay: 4s;
}

/* Motion */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
  100% { transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .contact-unique {
    flex-direction: column;
  }

  .contact-strip,
  .contact-main {
    width: 100%;
  }

  .contact-main {
    flex-direction: column;
    padding: 80px 30px;
  }

  .contact-strip h2 {
    font-size: 48px;
  }
}

/* ================= FOOTER (STRIP LOCKED) ================= */
.footer-lock {
  position: relative;
  display: flex;
  background: #6B5B95; /* Light Medium Orchid */
  overflow: hidden;
}

/* Vertical strip */
.footer-strip {
  width: 25%;
  padding: 120px 40px;
  background: #5A4A86;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-strip h2 {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  color: #FFF8F0;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Content */
.footer-content {
  width: 75%;
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-block h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  color: #FFF8F0;
  margin-bottom: 16px;
}

.footer-block p,
.footer-block li {
  font-size: 14px;
  line-height: 1.8;
  color: #E6FAF5;
}

.footer-block ul {
  list-style: none;
  padding: 0;
}

.footer-block a {
  color: #E6FAF5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-block a:hover {
  color: #F08080;
}

/* Footer base */
.footer-base {
  position: absolute;
  bottom: 30px;
  right: 80px;
  font-size: 13px;
  color: #E6FAF5;
}

/* Organic accent */
.footer-blob {
  position: absolute;
  width: 260px;
  right: -60px;
  bottom: -80px;
  fill: #7EC8C3;
  opacity: 0.25;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-lock {
    flex-direction: column;
  }

  .footer-strip,
  .footer-content {
    width: 100%;
  }

  .footer-strip {
    padding: 60px;
  }

  .footer-strip h2 {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    padding: 80px 30px;
  }

  .footer-base {
    position: static;
    padding: 20px 30px;
  }
}

