/* ============================================================
   Coquet Holdings Limited — static replica stylesheet
   Colours/typography taken from the original Elementor kit:
   navy #04304D · blue #005C8C · action #0088D2 · pale #B6E7FF
   panels #EFF9FF / #F1FAFF / #F8FCFF · text grey #848484
   Headings: Clash Display · Body: Roboto · Buttons: Poppins
   ============================================================ */

@font-face {
  font-family: "Clash Display";
  src: url("../../wp-content/uploads/2024/07/ClashDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../../wp-content/uploads/2024/07/ClashDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../../wp-content/uploads/2024/07/ClashDisplay-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --navy: #04304D;
  --blue: #005C8C;
  --action: #0088D2;
  --pale: #B6E7FF;
  --panel: #EFF9FF;
  --panel-2: #F1FAFF;
  --panel-3: #F8FCFF;
  --grey: #848484;
  --line: #D9D9D9;
  --heading: "Clash Display", sans-serif;
  --body: "Roboto", sans-serif;
  --btn-font: "Poppins", sans-serif;
  --container: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  background: #fff;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h6 { font-family: var(--heading); font-weight: 500; line-height: 1.25; }

.kicker {
  font-size: 15px;
  letter-spacing: .5px;
  color: #000;
  margin-bottom: 8px;
}
.kicker.center { text-align: center; }
.kicker.light { color: #fff; }

.section-title { font-size: 40px; color: var(--blue); }
.section-title.center { text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--btn-font);
  font-size: 20px;
  color: #fff;
  background: var(--action);
  padding: 10px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background .3s;
}
.btn:hover { background: var(--navy); }
.btn-lg { font-size: 22px; padding: 14px 36px; }

/* ---------- header ---------- */
.site-header {
  background: linear-gradient(45deg, var(--navy) 0%, var(--blue) 100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 95px;
  max-width: 1320px;
}
.logo img { width: 290px; height: auto; }
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 34px; }
.main-nav a {
  font-family: var(--heading);
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  transition: color .3s;
}
.main-nav a:hover { color: #F2FBF3; }
.btn-cta { font-size: 18px; padding: 9px 24px; white-space: nowrap; }

/* mobile nav (CSS only) */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; }
.nav-toggle-label span {
  display: block; width: 26px; height: 3px; margin: 5px 0;
  background: var(--pale); border-radius: 2px;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: url("../../wp-content/uploads/2024/07/527_66a9b1a58a67f.webp") center/cover no-repeat;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: -1;
}
.hero-inner { padding: 90px 20px 110px; max-width: 1320px; }
.hero h1 {
  font-size: 60px;
  color: #fff;
  max-width: 720px;
  margin-bottom: 24px;
}
.hero-accent { color: var(--pale); }
.hero p {
  color: #fff;
  max-width: 640px;
  margin-bottom: 36px;
  font-size: 17px;
}

/* ---------- offer strip ---------- */
.offer { position: relative; padding: 70px 0; }
.offer::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 67%;
  background: var(--panel);
  z-index: -1;
}
.offer { isolation: isolate; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(4, 48, 77, .08);
  padding: 44px 30px 50px;
  text-align: center;
}
.offer-card h2 { font-size: 25px; color: var(--navy); margin: 18px 0 14px; }
.offer-card p { color: var(--grey); font-size: 15.5px; }
.offer-card--feature {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}
.offer-card--feature h2 { color: #fff; }
.offer-card--feature p { color: #D9D9D9; }
.icon-bubble {
  width: 64px; height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--pale);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.icon-bubble svg { width: 34px; height: 34px; }
.offer-card--feature .icon-bubble { background: #fff; }

/* ---------- about ---------- */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 47% 1fr;
  gap: 50px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.about-images img { border-radius: 6px; }
.about-images img:last-child { margin-top: 40px; }
.about-content h2 { font-size: 40px; color: var(--blue); margin-bottom: 18px; }
.about-content p:not(.kicker) { color: #333; margin-bottom: 28px; }

/* ---------- mission ---------- */
.mission { background: var(--panel); padding: 100px 0; }
.mission-inner {
  display: flex;
  gap: 26px;
  max-width: 880px;
}
.mission-quote { width: 52px; height: auto; flex: none; align-self: flex-start; }
.mission-content h2 { font-size: 40px; color: var(--blue); margin-bottom: 18px; }

/* ---------- services ---------- */
.services { padding: 90px 0; }
.services .section-title { margin-bottom: 40px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 28px 44px;
  text-align: center;
}
.icon-line { color: var(--navy); }
.icon-line svg { width: 44px; height: 44px; margin: 0 auto; }
.service-card h3 { font-size: 25px; color: var(--navy); margin: 14px 0 12px; }
.service-card p { color: var(--grey); font-size: 15px; }

/* ---------- FAQ ---------- */
.faq { padding: 50px 0 90px; }
.faq-grid {
  display: grid;
  grid-template-columns: 47% 1fr;
  gap: 50px;
  align-items: start;
}
.faq-image img { border-radius: 6px; width: 100%; }
.faq-content .section-title { margin-bottom: 24px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 17px;
  color: rgba(4, 48, 77, .85);
  padding: 16px 40px 16px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: #444; padding: 0 8px 18px 0; }

/* ---------- reviews ---------- */
.reviews { background: var(--panel-3); padding: 90px 0; }
.reviews .section-title { margin-bottom: 40px; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.review-card {
  position: relative;
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 30px 34px;
}
.stars { color: #37B34A; font-size: 18px; letter-spacing: 3px; margin-bottom: 12px; }
.review-name { font-family: var(--heading); font-size: 20px; color: #000; }
.review-role { font-size: 13.5px; color: var(--grey); margin-bottom: 12px; }
.review-text { color: #555; font-size: 15px; }
.review-mark {
  position: absolute;
  top: 26px; right: 30px;
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: .6;
  color: #E8E8E8;
  user-select: none;
}

/* ---------- contact ---------- */
.contact-banner {
  position: relative;
  background: url("../../wp-content/uploads/2024/07/13295060_5172661_66a9cb90b6ef1-scaled.webp") center/cover no-repeat;
  isolation: isolate;
  padding: 90px 0;
  text-align: center;
}
.contact-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: -1;
}
.contact-banner .kicker { margin-bottom: 10px; }
.contact-banner h2 { font-size: 40px; color: #fff; }
.contact-body {
  text-align: center;
  padding: 70px 20px;
  max-width: 760px;
}
.contact-body p { margin-bottom: 26px; color: #333; font-size: 17px; }

/* ---------- footer ---------- */
.site-footer {
  background: linear-gradient(45deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 60px 20px 50px;
}
.footer-brand img { width: 200px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 18px; height: 18px; }
.footer-col h6 { font-size: 22px; margin-bottom: 16px; color: #fff; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #fff; text-decoration: none; }
.footer-col a:hover { color: var(--pale); }
.footer-bottom { background: var(--blue); }
.footer-bottom-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 20px;
  font-size: 14.5px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .section-title, .about-content h2, .mission-content h2, .contact-banner h2 { font-size: 30px; }
  .hero h1 { font-size: 40px; }
}

@media (max-width: 980px) {
  .hero h1 { font-size: 30px; }
  .offer-grid, .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .about-grid, .faq-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .main-nav a { font-size: 20px; }
}

@media (max-width: 767px) {
  .header-inner { height: 80px; }
  .logo img { width: 220px; }

  /* hamburger menu */
  .nav-toggle-label { display: block; margin-left: auto; }
  .main-nav {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--navy);
    z-index: 50;
    padding: 10px 20px 20px;
  }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid rgba(255,255,255,.15); }
  .main-nav a { display: block; padding: 12px 4px; font-size: 18px; }
  .site-header { position: relative; }
  .nav-toggle:checked ~ .main-nav { display: block; }
  .btn-cta { font-size: 15px; padding: 8px 16px; }

  .hero h1 { font-size: 25px; }
  .hero-inner { padding: 60px 20px 70px; }
  .section-title, .about-content h2, .mission-content h2, .contact-banner h2 { font-size: 25px; }
  .offer { padding: 50px 0; }
  .about, .services, .reviews { padding: 60px 0; }
  .mission { padding: 60px 0; }
  .mission-inner { flex-direction: column; gap: 14px; }
  .mission-quote { width: 40px; }
  .about-images img:last-child { margin-top: 24px; }
  .review-mark { font-size: 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 44px 20px 36px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}
