@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy: #1B2D4F;
  --navy-light: #243d6a;
  --gold: #C9A84C;
  --gold-dark: #a8893b;
  --gold-bg: rgba(201,168,76,0.10);
  --light-bg: #F8F8F5;
  --white: #FFFFFF;
  --text-dark: #111827;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  height: 84px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar-nav a {
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: color 0.15s;
  white-space: nowrap;
}

.navbar-nav a:hover { color: var(--navy); }

.lang-btn {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--navy);
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s !important;
}

.lang-btn:hover { background: var(--navy) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  border: none;
  font-family: inherit;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-gold { background: #ffbf23; color: var(--text-dark); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-outline-gold { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: var(--white); }

/* ── HERO ── */
.hero {
  background: var(--white);
  color: var(--text-dark);
  padding: 4rem 0 2.5rem;
  margin-top: 84px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 3rem;
  align-items: center;
}

.hero-text { max-width: 600px; }

.hero-image {
  width: 100%;
  margin-left: 5rem;
  aspect-ratio: 3 / 2;
  background: transparent;
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-dark);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

/* ── SECTIONS ── */
section { padding: 5rem 0; }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

.section-header { margin-bottom: 3rem; }

/* ── TRUST BAND ── */
.trust-band {
  background: #ffbf23;
  padding: 10rem 0 5rem;
  position: relative;
}

.trust-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: block;
}

.trust-band p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.trust-band p:first-child {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

/* ── SERVICES ── */
#services { background: #fdfdfd; }

.services-intro {
  max-width: 640px;
  margin-bottom: 3rem;
}

.services-carousel {
  overflow: hidden;
  width: 100%;
}

.services-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.services-track .service-card {
  flex: 0 0 calc(20% - 0.8rem);
  min-width: calc(20% - 0.8rem);
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--white);
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #E5E7EB;
  overflow: hidden;
  position: relative;
  border: 3px solid #000;
  border-radius: 10px 10px 0 0;
}

.service-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card-body { padding: 0.875rem 1rem 1.25rem; }

.service-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.service-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── MISSION ── */
.mission-section {
  background: #fdfdfd;
  padding: 2rem 0 5rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.8fr;
  gap: 3rem;
  align-items: center;
}

.mission-image {
  width: 100%;
  aspect-ratio: 1314 / 1197;
  border-radius: 12px;
  overflow: hidden;
  background: var(--light-bg);
  margin-left: 1.5rem;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--light-bg);
  border: 4px solid #ffbf23;
  border-radius: 12px;
  padding: 1.5rem;
  display: block;
  text-decoration: none;
  color: inherit;
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── CLIENTS FROM ── */
.clients-from {
  margin-top: 3rem;
  text-align: center;
}

.clients-from-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.75rem;
}

.clients-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.client-chip {
  background: var(--white);
  border: 2px solid #ffbf23;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ── PACKAGES CTA ── */
.packages-cta {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 0;
  text-align: center;
  position: relative;
}

.packages-cta-inner {
  padding-bottom: 12.5rem;
}

.packages-wave-bottom {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  line-height: 0;
}

.packages-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.packages-cta p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FAQ ── */
#faq { background: var(--light-bg); margin-top: -2rem; }

.faq-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.faq-right {
  position: relative;
  margin-right: -18rem;
}

.faq-image {
  position: sticky;
  top: 5rem;
  height: calc(100vh - 20rem);
  overflow: hidden;
  border-radius: 12px 0 0 12px;
}

.faq-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center;
}

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-category-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  padding: 2.5rem 0 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: block;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.78;
}

.faq-answer ul { margin: 0.75rem 0 0.75rem 1.25rem; }
.faq-answer li { margin-bottom: 0.3rem; }
.faq-item.open .faq-answer { display: block; }

/* ── PARTNERS ── */
#partners {
  background: #2655aa;
  padding: 10rem 0 5rem;
  position: relative;
}

.partners-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: block;
}

#partners .section-label { color: rgba(255,255,255,0.7); }
#partners .section-title { color: var(--white); }
#partners .section-subtitle { color: rgba(255,255,255,0.8); }

.partners-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.partner-logo {
  flex: 1;
  max-width: 380px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

.partner-logo-lg { height: 210px; }


/* ── CONTACT ── */
#contact { background: #ffbf23; color: var(--text-dark); position: relative; padding-top: 6rem; }

.contact-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: block;
}

.contact-grid { display: none; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-intro {
  margin-bottom: 2rem;
}

.contact-intro h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.contact-intro p { color: var(--text-dark); font-size: 0.95rem; }

.contact-form-wrap {
  max-width: 480px;
}

.contact-info h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-info p { color: var(--text-dark); margin-bottom: 0.5rem; font-size: 0.95rem; }

.contact-details {
  margin-top: 3rem;
  padding-top: 2.5rem;
}

.contact-details-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.contact-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-detail-item a {
  color: var(--text-dark);
  text-decoration: none;
}

.contact-detail-item a:hover { text-decoration: underline; }

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.social-btn-fb {
  background: #1877F2;
  color: #fff;
}

.social-btn-li {
  background: #0A66C2;
  color: #fff;
}

.social-btn:hover { opacity: 0.88; }

.contact-map {
  margin-top: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  display: block;
  border: 0;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

label {
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--navy);
}

textarea { resize: vertical; min-height: 120px; }

.checkboxes-label {
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.checkbox-group { display: flex; flex-direction: column; gap: 0.5rem; }

.checkbox-item, .radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

.radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.req { color: #DC2626; }

/* ── FOOTER ── */
footer {
  background: #111827;
  color: rgba(255,255,255,0.68);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-complaints-img {
  height: 60px;
  width: auto;
  display: block;
  margin-top: 2.5rem;
  margin-left: -3px;
}

.footer-logo-img {
  height: 130px;
  width: auto;
  flex-shrink: 0;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.188rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  transition: color 0.15s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--white);
  color: var(--text-dark);
  padding: 4rem 0 2rem;
  margin-top: 84px;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

/* ── ABOUT ── */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.about-text {
  text-align: center;
  max-width: 680px;
}

.about-text p {
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-photo {
  width: 100%;
  max-width: 680px;
  border-radius: 12px;
  overflow: hidden;
}

.about-photo img { width: 100%; height: auto; display: block; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.team-card { text-align: center; }

.team-photo {
  width: 350px;
  height: 350px;
  border-radius: 16px;
  background: var(--light-bg);
  margin: 0 auto 1rem;
  overflow: hidden;
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 5px 14px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}

.linkedin-btn:hover { background: var(--navy); color: var(--white); }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  background: #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  overflow: hidden;
}

.blog-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.blog-card-body { padding: 1.5rem; }

.blog-tag {
  display: inline-block;
  background: var(--gold-bg);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-body h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.blog-meta { font-size: 0.8rem; color: var(--text-muted); }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 0.75rem;
  transition: gap 0.15s;
}

.read-more:hover { gap: 0.5rem; }

/* ── ARTICLE ── */
.article-hero {
  background: #ffbf23;
  color: var(--text-dark);
  padding: 3rem 0 5rem;
  margin-top: 84px;
  position: relative;
}

.article-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 740px;
  margin-bottom: 1.25rem;
}

.article-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }
.article-meta span { margin-right: 1rem; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.article-body p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.85;
  font-size: 1rem;
}

.article-img {
  width: 100%;
  border-radius: 10px;
  margin: 2rem 0;
  overflow: hidden;
}

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

.article-cta {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.article-cta p {
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--navy);
}

/* ── BOOK ONLINE ── */
.book-section { padding: 5rem 0 4rem; background: #2655aa; color: var(--white); }

.book-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 5rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.book-services-grid .service-card {
  border: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

.book-services-grid .service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

.book-services-grid .service-card-img {
  aspect-ratio: 5/6;
}

.book-services-grid .service-card-body h3 {
  font-size: 1.1rem;
}

.book-section p { color: rgba(255,255,255,0.85); }

.book-section h2 { color: var(--white); }

.book-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.book-intro p { color: var(--text-muted); margin-top: 1rem; }

.calendly-inline-widget { height: 900px !important; }

.calendly-placeholder {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── COMPLAINTS ── */
.complaints-section { padding: 5rem 0; }

.complaints-form-wrap { max-width: 720px; }

.form-section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.tutor-notice {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .navbar-nav {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    align-items: flex-start;
    z-index: 999;
  }

  .navbar-nav.open { display: flex; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .mission-grid,
  .contact-grid,
  .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-wrap { max-width: 100%; }
  .contact-details { margin-top: 1rem; }
  #contact { overflow: hidden; }
  #contact iframe { width: 100% !important; height: 300px; }
  #contact .fb-page, #contact .fb-page span, #contact .fb-page iframe { width: 100% !important; max-width: 100% !important; }
  .contact-form-card { padding: 1.25rem; }
  .contact-details-grid { flex-direction: column; gap: 1rem; }
  .contact-social { width: 100%; }
  .social-btn { width: 100%; box-sizing: border-box; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-col ul { padding-left: 0; list-style: none; }
  .footer-col a { display: flex; justify-content: center; }
  .footer-complaints-img { margin-top: 0.5rem; }

  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .hero { padding: 6.5rem 0 1.5rem; }
}

/* ── HERO IMAGE MOBILE/DESKTOP TOGGLE ── */
.hero-image-mobile { display: none; }
.hero-image-desktop { display: block; }

@media (max-width: 600px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-image-desktop { display: none; }
  .faq-right { display: none; }
  .faq-layout { grid-template-columns: 1fr; }
  #faq { padding-top: 2rem; }
  .packages-cta-inner { padding-bottom: 9rem; }
  .services-track .service-card { flex: 0 0 calc(33.33% - 0.67rem); min-width: calc(33.33% - 0.67rem); }
  .book-services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
  .calendly-inline-widget { margin: 2rem 0 0 !important; height: 1000px !important; }
  .blog-grid { grid-template-columns: 1fr; max-width: 100% !important; }
  .hero-text { text-align: center; }
  .hero-text .btn { display: inline-block; }
  .trust-band { padding-top: 6.5rem; margin-top: -1px; }
  .hero-image-mobile {
    display: block;
    width: 100%;
    margin: 1rem 0;
    margin-left: 0;
    aspect-ratio: 3 / 2;
    border-radius: 12px;
    overflow: hidden;
  }
  .hero-image-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.hidden { display: none; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ── FLOATING WHATSAPP BUTTON ── */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.wa-float svg { width: 32px; height: 32px; fill: #ffffff; }
@media (max-width: 600px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 30px; height: 30px; }
}

/* ── GUARANTEE CAROUSEL (vertical auto-rotate) ── */
.guarantee-carousel { overflow: hidden; position: relative; }
.guarantee-track { display: flex; flex-direction: column; gap: 1rem; }
.guarantee-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  border-left: 4px solid var(--gold);
  box-sizing: border-box;
  flex-shrink: 0;
}
.guarantee-card p.g-title { font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.guarantee-card p.g-desc { font-size: 0.875rem; color: var(--text-muted); }
