/* Reset and base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #04061B;
  color: #ffffff;
  overflow-x: hidden;
}

/* Layout container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* NAV / HEADER */
.header {
  background: #04051b;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { height: 42px; width: auto; display: block; }
.nav-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 600; font-size: 15px; }

/* HERO */
.hero {
  background: #04051b;
  padding: 60px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: center;
}
.hero-left { padding-right: 10px; }
.hero-sub {
  color: #00D2D1;
  margin: 0 0 14px;
  font-weight: 600;
}
.hero-title {
  color: #FF1369;
  font-size: 60px;
  line-height: 1.08;
  margin: 0 0 22px;
  font-weight: 800;
}
.btn-primary {
  background: #00D2D1;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}

/* hero image sizing */
.hero-right img {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
}

/* UNIQUE SECTION */
.unique {
 background: #ffffff;
  color: #04051b;
  padding-top: 60px;
  padding-bottom: 60px;
}
.unique-title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 14px;
}
.unique-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: center;
}
.unique-img img {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
}

/* SERVICES *//* SERVICES */
.services {
  background: #04051b;
  padding: 80px 0;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 50px;
}

.services-intro-grid p {
  font-size: 20px;
  /* color: #000; */
  line-height: 1.6;
}

.services-intro-grid h2 {
  font-size: 30px;
  font-weight: 700;
  /* color: #000; */
  line-height: 1.4;
}

/* 4-column service */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* service cards */
.service-card {
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
}

.service-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* bg colors in order */
.sc-red { background: #e60f4e; }
.sc-dark { background: #04051b; }
.sc-white { background: #ffffff; color: #000; }
.sc-cyan { background: #00c6cf; }

/* service content */
.service-card h3 {
  margin: 16px;
  font-size: 20px;
}

.service-card p {
  margin: 0 16px 16px;
  font-size: 14px;
  line-height: 1.5;
}

/* buttons */
.btn-dark, .btn-dark-light {
  display: inline-block;
  margin: 0 16px 20px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

.btn-dark {
  background: #000;
  color: #fff;
}

.btn-dark-light {
  background: #ffffff;
  color: #04051b;
}

/* responsive */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-intro-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}


/* TESTIMONIAL */
.testimonial {
  background: #ffffff;
  padding: 80px 0;
  color: #000;
}

.testimonial .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.testimonial h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #04051b;
}

/* testimonial grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 10px;
}

.testimonial-card {
  background: #04051b;
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.25s ease;
  min-height: 200px;
}

.testimonial-card:hover {
  transform: scale(1.03);
}

.testimonial-card .stars {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

/* responsive */
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* responsive */
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

  

/* FAQ */
.faq {
  background: #04051b;
  padding: 60px 0;
  text-align: center;
}
.faq-title{
   font-size: 60px;
}

.faq-intro { 
  color: #b8c0c8; 
  margin-bottom: 18px; 
  
}

.faq-box { 
  display: grid; 
  gap: 10px; 
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

details {
  background: #ffffff;
  color: #000;
  padding: 12px 16px;
  border-radius: 8px;
  position: relative;
}

/* ─── Toggle icon ─── */
details summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* icon default: ➕ */
details summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 700;
  color: #04051b;
}

/* icon when open: ✖ */
details[open] summary::after {
  content: "×";
  font-size: 22px;
  font-weight: 700;
  color: #04051b;
}

/* answer text */
details p { 
  margin: 10px 0 0; 
  color: #222; 
  line-height: 1.45;
}



/* CTA */
.cta {
  background: #00D2D1;
  color: #fff;
  padding: 48px 0;
  text-align: center;
}

.cta-inner {
  display:flex;
  gap:40px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}

.cta-title {
  font-size: 60px;
  font-weight: 700;
  margin: 0;
}

/* Bigger button, fixed size */
.cta .btn-dark {
  background: #04051b;
  color: #fff;
  padding: 18px 28px;
  font-size: 18px;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
}


/* notion popup form */
/* MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 750px;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
}
/* End notion popup style */

/* FOOTER */
.footer {
  background: #04051b;
  color: #fff;
  padding: 60px 0;
  font-size: 46px;

}

.footer-grid {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start; /* align items from top */
}

/* LEFT COLUMN */
.footer-left {
  width: 40%;
  display: flex;
  flex-direction: column; /* stack logo on top of text */
  align-items: flex-start; /* align to left */
  gap: 14px;
}

.footer-logo { 
  width: 140px; 
  height: auto; 
  display: block; 
}

.footer-text { 
  margin: 0; 
  color: #cbd5df; 
  line-height: 1.5; 
  max-width: 90%;
  font-size: 15px;
}

/*Footer Link */
.footer a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #cbd5df;
}


/* RIGHT COLUMN (NOTION FORM) */
.footer-right { 
  width: 60%; 
  display: flex; 
  align-items: flex-start; /* align from top */
  justify-content: center; 
}

.form-placeholder {
  width: 100%;
  min-height: 120px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bfc8d2;
  font-size: 15px;
}


/* Responsive breakpoints */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 380px; }
  .unique-grid { grid-template-columns: 1fr 360px; }
  .testimonial-grid { grid-template-columns: repeat(2, 45%); }
}
@media (max-width: 900px) {
  .nav-links { gap: 14px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .unique-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-left { width: 100%; align-items: flex-start; }
  .footer-right { width: 100%; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 32px; }
  .service-media { height: 140px; }
  .container { padding: 24px 16px; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
