/* Base reset & typography */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, -system-ui,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background-color: #f5f5f7;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Global layout */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 52px; /* space for fixed header */
}

/* Header */

.site-header-root {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(245, 245, 247, 0.94);
  border-bottom: 1px solid rgba(210, 210, 215, 0.7);
}

.nav-bar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-logo img {
  height: 26px;
  width: auto;
}

.nav-logo-text {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.nav-menu a {
  color: #1d1d1f;
  opacity: 0.8;
  transition: opacity 0.18s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  opacity: 1;
}

.nav-menu a.is-active {
  font-weight: 600;
}

/* Hamburger */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle-box {
  position: relative;
  width: 18px;
  height: 14px;
}

.nav-toggle-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #1d1d1f;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.nav-toggle-line:nth-child(1) {
  top: 0;
}

.nav-toggle-line:nth-child(2) {
  top: 6px;
}

.nav-toggle-line:nth-child(3) {
  bottom: 0;
}

/* When nav is open */

.site-header-root.nav-open .nav-toggle-line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.site-header-root.nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header-root.nav-open .nav-toggle-line:nth-child(3) {
  bottom: 6px;
  transform: rotate(-45deg);
}

/* Mobile menu */

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    background: rgba(245, 245, 247, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(210, 210, 215, 0.7);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 1.25rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.2s ease, opacity 0.2s ease;
  }

  .site-header-root.nav-open .nav-menu {
    max-height: 260px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* Desktop only tweaks */
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
}

/* Hero */

.hero {
  padding: 4.5rem 1.5rem 3.5rem;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6e6e73;
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 0.9rem;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.5;
  color: #515154;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-meta {
  font-size: 0.8rem;
  color: #6e6e73;
}

/* Hero visual */

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

.hero-orbit {
  position: relative;
  width: 260px;
  height: 260px;
}

.hero-logo-orbit {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #f5f5f7 40%, #d6e1ff 75%, #ffd1a6 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.hero-logo-orbit-glow {
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 120deg, #0071e3, #34c759, #ff9f0a, #ff375f, #0071e3);
  opacity: 0.6;
  mix-blend-mode: soft-light;
}

.hero-logo {
  position: relative;
  width: 80px;
  height: auto;
  z-index: 1;
}

/* Orbit rings */

.hero-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  animation: orbit 16s linear infinite;
}

.hero-orbit-ring-1 {
  border-color: rgba(0, 113, 227, 0.18);
}

.hero-orbit-ring-2 {
  inset: 16px;
  border-color: rgba(255, 159, 10, 0.16);
  animation-duration: 22s;
}

.hero-orbit-ring-3 {
  inset: 32px;
  border-color: rgba(52, 199, 89, 0.14);
  animation-duration: 28s;
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Buttons */

.btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  transition: background 0.16s ease, transform 0.08s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.btn-primary {
  background: #0071e3;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 122, 255, 0.35);
}

.btn-primary:hover {
  background: #0077ed;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 122, 255, 0.45);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(60, 60, 67, 0.18);
  color: #1d1d1f;
}

.btn-ghost:hover {
  border-color: rgba(60, 60, 67, 0.32);
  background: rgba(255, 255, 255, 0.8);
}

/* Sections */

.section {
  padding: 3.75rem 1.5rem;
}

.section-light {
  background: #ffffff;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-header {
  /* max-width: 40rem; */
  
}

.section-header h1,
.section-header h2 {
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
}

.section-header p {
  margin: 0;
  color: #515154;
}

/* Services */

.services-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}


.service-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(210, 210, 215, 0.6);
  overflow: hidden;
  max-width: 360px;
  width: 100%;
}


/* .service-card h2,
.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
} */

.service-card h3 {
  margin: 0;
  padding: 1rem 1.25rem;
  background: #f2f3f5; /* distinct from body */
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* .service-card p {
  margin: 0 0 0.75rem;
  color: #515154;
} */

.service-card p {
  margin: 0;
  padding: 1.25rem 1.5rem 1.5rem;
  color: #515154;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card h3 {
  margin: 0;
  padding: 1.1rem 1.5rem;
  background: #f1f2f4;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* About */

.section-split {
  display: grid;
  gap: 2rem;
}

.about-meta ul,
.about-meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-meta li,
.about-meta-list li {
  margin-bottom: 0.5rem;
  color: #1d1d1f;
}

/* Contact */

.section-contact {
  display: grid;
  gap: 2rem;
}

.contact-form {
  background: #f5f5f7;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(210, 210, 215, 0.7);
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.field-group label {
  font-size: 0.9rem;
  font-weight: 500;
}

.field-group input,
.field-group textarea {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(210, 210, 215, 0.9);
  font: inherit;
  background: #fff;
}

.field-group input:focus,
.field-group textarea:focus {
  outline: 2px solid rgba(0, 113, 227, 0.45);
  outline-offset: 1px;
}

/* Footer */

.site-footer-root {
  background: #001820;
  color: #f5f5f7;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  justify-content: space-between;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 0.9rem;
}

.footer-brand-name {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #d2d2d7;
}

.footer-contact {
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.footer-contact a {
  display: block;
  color: #f5f5f7;
}

.footer-columns {
  display: grid;
  gap: 2.5rem;
}

.footer-heading {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-links a {
  color: #d2d2d7;
  transition: color 0.16s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

/* Social icons using Font Awesome */

.footer-social-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icon {
  width: 36px;
  aspect-ratio: 1 / 1;      /* always a square */
  flex: 0 0 36px;           /* don’t let flex stretch it */
  border-radius: 50%;       /* perfect circle */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;           /* avoid vertical distortion from line-height */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* Platform colors */
.social-icon--facebook   { background: #1877f2; }
.social-icon--instagram  { background: #E4405F; }
.social-icon--whatsapp   { background: #25D366; }
.social-icon--x          { background: #000000; }
.social-icon--google     { background: #4285F4; }

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Footer bottom */

.footer-bottom {
  border-top: 1px solid rgba(245, 245, 247, 0.12);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: #a1a1a6;
}

/* Footer layout responsive */

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 3rem;
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .footer-social-row {
    margin-top: 0.75rem;
  }
}

/* Responsive adjustments */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .hero-visual {
    order: -1;
  }

  .hero-inner {
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3.5rem;
  }

  .section {
    padding: 3rem 1.25rem;
  }

  .contact-form {
    padding: 1.2rem;
  }
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  aspect-ratio: 1 / 1;           /* keeps it perfectly round */
  border-radius: 50%;
  background-color: #25D366;     /* WhatsApp green */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp i {
  line-height: 1;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Optional: slightly closer to edges on very small screens */
@media (max-width: 480px) {
  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 54px;
    font-size: 28px;
  }
}

/* Only apply the band-header card style inside .services-band */
.services-band .service-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(210, 210, 215, 0.6);
  overflow: hidden;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

/* header strip for h3 OR h2 (since your other page uses h2) */
.services-band .service-card h3,
.services-band .service-card h2 {
  margin: 0;
  padding: 1.1rem 1.5rem;
  background: #eef0f3;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.services-band .service-card p {
  margin: 0;
  padding: 1.25rem 1.5rem 1.5rem;
  color: #515154;
  line-height: 1.55;
}

/* Only in your band-style services section */
.services-band .service-card .about-meta-list {
  padding: 0 1.5rem 1.5rem; /* matches your <p> padding */
  margin: -0.5rem 0 0;      /* pulls it a bit closer to the paragraph (optional) */
}

.services-band .service-card .about-meta-list li {
  margin: 0.5rem 0 0;
  line-height: 1.5;
  color: #1d1d1f;
}

.services-band .service-card .about-meta-list li {
  position: relative;
  padding-left: 1.25rem;
}

.services-band .service-card .about-meta-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.55;
}
/* ---------- APPLE STYLE HERO ---------- */
/* .apple-hero{
  background:
    radial-gradient(1200px 600px at 70% 35%, rgba(0,0,0,0.06), transparent 55%),
    radial-gradient(900px 500px at 20% 65%, rgba(0,0,0,0.04), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  overflow: hidden;
} */

.apple-hero{
  position: relative;
  background:
    radial-gradient(900px 520px at 75% 45%, rgba(0,0,0,0.08), transparent 60%),
    radial-gradient(800px 520px at 25% 60%, rgba(0,0,0,0.05), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

/* progress bar under menu */
.hero-rotator__topbar{
  height: 3px;
  width: 100%;
  background: rgba(0,0,0,0.10);
  overflow: hidden;
}
.hero-rotator__bar{
  display:block;
  height:100%;
  width:0%;
  background: rgba(0,0,0,0.75);
  transform: translateZ(0);
}

.hero-rotator__layout{
  display: grid;
  grid-template-columns: 1.1fr 2.2fr; /* text / visual */
  min-height: 560px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 22px;
  gap: 28px;
  align-items: center;
}

/* TEXT */
.hero-rotator__content{
  padding: 18px 8px;
}
.hero-rotator__kicker{
  letter-spacing: 0.18em;
  font-size: 12px;
  opacity: 0.7;
  font-weight: 700;
}
.hero-rotator__title{
  margin: 12px 0 10px;
  font-size: 40px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.hero-rotator__desc{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.82;
  max-width: 40ch;
}
.hero-rotator__ctaRow{
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hero-rotator__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px; /* Apple pill */
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  color: #111;
  background: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.hero-rotator__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}
.hero-rotator__btn--primary{
  background: #111;
  color: #fff;
  border-color: #111;
}
.hero-rotator__btn--ghost{
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
}

/* VISUAL AREA */
.hero-rotator__visual{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 8px;
}

/* .hero-rotator__visual::before{
  content:"";
  position:absolute;
  width: 80%;
  height: 60%;
  background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.14), transparent 70%);
  filter: blur(28px);
  opacity: 0.25;
  transform: translateY(24px);
  z-index: 0;
} */

/* Apple “floating card” */
.hero-rotator__card{
  position: relative;
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;

  /* premium card */
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.14),
    0 14px 28px rgba(0,0,0,0.10);

  transform: translateY(-6px);
  z-index: 1;
}

/* Apple-ish glossy sheen */
/* .hero-rotator__card::before{
  content:"";
  position:absolute;
  inset:-40% -25%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.75), transparent 60%);
  opacity: .75;
  pointer-events:none;
  z-index: 4;
} */

/* Soft vignette for depth */
/* .hero-rotator__card::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 40%, transparent 60%, rgba(0,0,0,0.06));
  pointer-events:none;
  z-index: 3;
} */

/* ---------- PREMIUM SLIDE ANIMATION: swipe + parallax ---------- */
.hero-rotator__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: contain;          /* ✅ show full image */
  object-position: center;
  background: #fff;             /* looks clean if empty space appears */

  opacity:0;
  transform: translateX(6%) scale(1.02);
  transition: transform 650ms cubic-bezier(.22,.61,.36,1),
              opacity 450ms ease;
}
.hero-rotator__img.is-active{
  opacity:1;
  transform: translateX(0%) scale(1.0);
}
.hero-rotator__img.is-leaving{
  opacity:0;
  transform: translateX(-6%) scale(1.0);
}

.hero-rotator__card{
  background:
    radial-gradient(circle at 30% 20%, rgba(0,0,0,0.05), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.04), transparent 60%),
    #fff;
    
}

/* mobile stack */
@media (max-width: 900px){
  .hero-rotator__layout{
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 26px 14px;
  }
  .hero-rotator__title{ font-size: 34px; }
  .hero-rotator__card{ border-radius: 18px; }
}

@keyframes textPop{
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0px); }
}
