/* =============================================
   VORO Co Pty Ltd — Main Stylesheet
   Color Scheme: Deep Teal #0D7377 + Coral #FF6B6B
   ============================================= */

:root {
  --teal:       #0D7377;
  --teal-dark:  #084C50;
  --teal-light: #14BDCB;
  --coral:      #FF6B6B;
  --coral-dark: #e85555;
  --off-white:  #F7FAFA;
  --white:      #FFFFFF;
  --text:       #1A2B2B;
  --text-muted: #5A7070;
  --border:     #D0E8E8;
  --shadow:     0 4px 24px rgba(13,115,119,0.10);
  --radius:     10px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
}

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral); }

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--teal-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p  { margin-bottom: 1rem; }

/* ---- LAYOUT ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--alt { background: var(--white); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn--primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,107,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--teal);
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(13,115,119,0.08);
  padding: 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal-dark);
}
.navbar__logo span { color: var(--coral); }
.navbar__logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; font-weight: 900;
}
.navbar__nav { display: flex; align-items: center; gap: 32px; }
.navbar__nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
}
.navbar__nav a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}
.navbar__nav a:hover::after,
.navbar__nav a.active::after { width: 100%; }
.navbar__nav a:hover { color: var(--teal); }
.navbar__cta { margin-left: 16px; }
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.navbar__hamburger span { display: block; width: 26px; height: 3px; background: var(--teal-dark); border-radius: 2px; transition: all var(--transition); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
  color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--coral); font-style: normal; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 36px; }
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero__stat {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.hero__stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--coral); }
.hero__stat span { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.75);
  padding: 16px 0;
  font-size: 0.9rem;
}
.trust-bar__inner { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; align-items: center; }
.trust-bar__item { display: flex; align-items: center; gap: 8px; }
.trust-bar__item svg { color: var(--coral); flex-shrink: 0; }

/* ---- SERVICES ---- */
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 48px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13,115,119,0.15);
  border-color: var(--teal-light);
}
.service-card__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 { color: var(--teal-dark); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ---- ABOUT STRIP ---- */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-strip__list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.about-strip__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.about-strip__list li::before { content: '✓'; color: var(--coral); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.about-strip__visual {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 16px;
  padding: 40px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-strip__kpi { text-align: center; }
.about-strip__kpi strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--coral); }
.about-strip__kpi span { font-size: 0.85rem; opacity: 0.85; }

/* ---- TESTIMONIALS ---- */
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--coral);
  position: relative;
}
.testimonial-card__stars { color: var(--coral); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { color: var(--text-muted); font-style: italic; font-size: 0.95rem; margin-bottom: 20px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.testimonial-card__name strong { display: block; font-size: 0.9rem; color: var(--text); }
.testimonial-card__name span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 36px; }
.cta-banner__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 0; }
.section-header__tag {
  display: inline-block;
  background: rgba(13,115,119,0.1);
  color: var(--teal);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header p { color: var(--text-muted); margin-top: 12px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.footer__brand p { font-size: 0.9rem; margin-top: 12px; color: rgba(255,255,255,0.6); }
.footer__brand .navbar__logo { margin-bottom: 8px; }
.footer__brand .navbar__logo-icon { background: rgba(255,255,255,0.15); }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--coral); }
.footer__contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer__contact a { color: var(--coral); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a { color: rgba(255,255,255,0.45); }
.footer__bottom a:hover { color: var(--coral); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); }

/* ---- CONTENT PROSE ---- */
.prose h2 { color: var(--teal-dark); margin: 2rem 0 0.75rem; font-size: 1.5rem; }
.prose h3 { color: var(--teal); margin: 1.5rem 0 0.5rem; font-size: 1.15rem; }
.prose p, .prose li { color: var(--text-muted); }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--coral); }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info__item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white;
}
.contact-info__text strong { display: block; color: var(--teal-dark); margin-bottom: 2px; }
.contact-info__text span { font-size: 0.9rem; color: var(--text-muted); }
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--teal-dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero__inner       { grid-template-columns: 1fr; }
  .hero__visual      { display: none; }
  .about-strip       { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .navbar__nav       { display: none; }
  .navbar__hamburger { display: flex; }
  .hero              { padding: 80px 0 60px; }
  .section           { padding: 56px 0; }
  .footer__grid      { grid-template-columns: 1fr; }
  .footer__bottom    { flex-direction: column; text-align: center; }
  .hero__btns        { flex-direction: column; }
  .cta-banner__btns  { flex-direction: column; align-items: center; }
}
