*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d1b2e; --navy2: #132035; --red: #c0392b; --red2: #e74c3c;
  --white: #ffffff; --offwhite: #f7f8fa; --text: #1a1a2e;
  --muted: #5a6377; --border: #e2e6ef;
}
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Sora', sans-serif; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(13,27,46,0.93); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 46px; height: 46px; background: var(--white);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; padding: 4px; flex-shrink: 0;
}
.logo-text { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--white); letter-spacing: -0.02em; }
.logo-text span { color: var(--red2); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--red); color: var(--white) !important; padding: 9px 20px; border-radius: 8px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--red2) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* HERO */
#hero {
  min-height: 100vh;
  background-color: var(--navy);
  background-image:
    linear-gradient(to bottom, rgba(13,27,46,0.72) 0%, rgba(13,27,46,0.45) 50%, rgba(13,27,46,0.82) 100%),
    url('../images/pexels-lureofadventure-17219067.jpg');
  background-position: center center;
  background-size: auto, cover;
  background-repeat: no-repeat;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 5% 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px; padding: 6px 16px; color: var(--white);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px; width: fit-content;
}
.badge-dot { width: 8px; height: 8px; background: var(--red2); border-radius: 50%; display: inline-block; flex-shrink: 0; }
#hero h1 { font-size: clamp(2.6rem,6vw,5rem); font-weight: 800; color: var(--white); line-height: 1.08; letter-spacing: -0.03em; max-width: 780px; margin-bottom: 24px; }
#hero h1 .accent { color: var(--red2); }
#hero > p { font-size: clamp(1rem,1.8vw,1.2rem); color: rgba(255,255,255,0.82); max-width: 640px; line-height: 1.65; margin-bottom: 40px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white); padding: 15px 28px;
  border-radius: 10px; font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red2); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45); padding: 15px 28px;
  border-radius: 10px; font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.hero-pills { display: flex; flex-wrap: wrap; gap: 20px; }
.pill { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.pill-dot { width: 8px; height: 8px; background: #27ae60; border-radius: 50%; display: inline-block; flex-shrink: 0; }

/* SHARED */
.section-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.section-tag-light { color: var(--red2); }

/* ABOUT */
#about { background: var(--white); padding: 100px 5%; }
#about h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--text); letter-spacing: -0.03em; max-width: 700px; line-height: 1.1; margin-bottom: 28px; }
.about-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 920px; margin-bottom: 56px; }
.about-body p { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }
.about-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.about-card { border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; }
.about-card-icon { width: 42px; height: 42px; background: #fff0f0; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--red); }
.about-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.about-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* SERVICES */
#services { background: var(--offwhite); padding: 100px 5%; text-align: center; }
#services h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--text); letter-spacing: -0.03em; max-width: 680px; margin: 0 auto 16px; line-height: 1.1; }
#services .subtitle { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto 60px; line-height: 1.65; }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 980px; margin: 0 auto; text-align: left; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 36px 30px; transition: box-shadow 0.2s, transform 0.2s; }
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.service-icon { color: var(--text); margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: 0.93rem; color: var(--muted); line-height: 1.65; }
.more-link { display: inline-block; margin-top: 14px; font-size: 0.88rem; font-weight: 600; color: var(--red); text-decoration: none; }
.more-link:hover { text-decoration: underline; }

/* WHY */
#why { background: var(--navy); padding: 100px 5%; text-align: center; }
#why h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; max-width: 700px; margin: 0 auto 16px; line-height: 1.1; }
#why .subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 60px; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 960px; margin: 0 auto; text-align: left; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 36px 30px; }
.why-icon { color: var(--red2); margin-bottom: 20px; display: block; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.93rem; color: rgba(255,255,255,0.62); line-height: 1.65; }

/* PROCESS */
#process { background: var(--white); padding: 100px 5%; text-align: center; }
#process h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--text); letter-spacing: -0.03em; max-width: 600px; margin: 0 auto 60px; line-height: 1.1; }
.process-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px 60px; max-width: 860px; margin: 0 auto; text-align: left; }
.step-num { width: 52px; height: 52px; border: 2px solid var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora',sans-serif; font-weight: 700; font-size: 1rem; color: var(--red); margin-bottom: 20px; }
.process-step h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.process-step p { font-size: 0.93rem; color: var(--muted); line-height: 1.65; }

/* TESTIMONIALS */
#testimonials { background: var(--offwhite); padding: 100px 5%; text-align: center; }
#testimonials h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--text); letter-spacing: -0.03em; max-width: 700px; margin: 0 auto 60px; line-height: 1.1; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1060px; margin: 0 auto; text-align: left; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; position: relative; }
.testi-quote { font-size: 2.8rem; color: var(--border); position: absolute; top: 18px; right: 22px; font-family: Georgia,serif; line-height: 1; }
.testi-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; padding-right: 36px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.author-info strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); }
.author-info span { font-size: 0.82rem; color: var(--muted); }

/* FAQ */
#faq { background: var(--white); padding: 100px 5%; text-align: center; }
#faq h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--text); letter-spacing: -0.03em; max-width: 600px; margin: 0 auto 60px; line-height: 1.1; }
.faq-list { max-width: 780px; margin: 0 auto; text-align: left; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; font-family: 'Sora',sans-serif; font-size: 1rem; font-weight: 600; color: var(--text); }
.faq-arrow { color: var(--muted); transition: transform 0.3s; flex-shrink: 0; display: flex; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 28px 22px; font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* CONTACT */
#contact { background: var(--navy2); padding: 100px 5%; }
#contact h2 { font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 16px; }
#contact .subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 500px; line-height: 1.65; margin-bottom: 48px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px 22px; text-decoration: none; transition: background 0.2s; }
.contact-row:hover { background: rgba(255,255,255,0.08); }
.contact-icon { width: 42px; height: 42px; background: rgba(192,57,43,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red2); flex-shrink: 0; }
.contact-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.contact-value { font-size: 1rem; font-weight: 700; color: var(--white); }
.contact-form { background: var(--white); border-radius: 20px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea { padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 9px; font-family: 'Inter',sans-serif; font-size: 0.93rem; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #aab0bc; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-full { grid-column: 1/-1; }
.form-submit { width: 100%; background: var(--red); color: var(--white); border: none; padding: 15px; border-radius: 10px; font-family: 'Sora',sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; margin-top: 8px; transition: background 0.2s, transform 0.15s; }
.form-submit:hover { background: var(--red2); transform: translateY(-2px); }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.form-divider::before, .form-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.form-cal-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: transparent; color: var(--navy); border: 1.5px solid var(--navy); padding: 15px; border-radius: 10px; font-family: 'Sora',sans-serif; font-size: 1rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: background 0.2s, color 0.2s, transform 0.15s; }
.form-cal-btn:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* FOOTER */
footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon { width: 40px; height: 40px; background: var(--white); border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 3px; }
.footer-logo-text { font-family: 'Sora',sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); letter-spacing: -0.02em; }
.footer-logo-text span { color: var(--red2); }
footer p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* WA FLOAT */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 18px rgba(37,211,102,0.4); transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-svg { width: 28px; height: 28px; fill: white; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-body, .about-cards, .services-grid, .why-grid, .process-grid, .testimonials-grid, .contact-layout, .form-row { grid-template-columns: 1fr; }
  .process-grid { gap: 30px; }
}
@media (max-width: 600px) {
  nav, #hero, #about, #services, #why, #process, #testimonials, #faq, #contact { padding-left: 4%; padding-right: 4%; }
  #hero { background-position: center center, 72% center; }
}
