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

/* ── Variables ── */
:root {
  --gold: #2557d6;
  --gold-hover: #1a44c0;
  --dark-navy: #1e2633;
  --dark-overlay: rgba(30, 38, 51, 0.92);
  --text-dark: #333;
  --text-mid: #555;
  --text-light: #fff;
  --bg-light: #f7f8fa;
  --border: #eaeaea;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── Top Bar ── */
.top-bar {
  background: var(--gold);
  color: #fff;
  padding: 8px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-right { display: flex; gap: 14px; }
.top-bar-right a {
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: background 0.25s;
}
.top-bar-right a:hover { background: rgba(255,255,255,0.2); }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  font-family: 'Times New Roman', serif;
  font-size: 46px;
  line-height: 1;
  display: flex;
}
.logo-icon .c { color: #888; }
.logo-icon .r { color: var(--gold); margin-left: -20px; }
.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.3px;
}
.logo-text .t1 { color: #888; }
.logo-text .t2 { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none; border: none;
  font-size: 1.4rem; cursor: pointer; color: var(--dark-navy);
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--dark-navy);
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: var(--font-head);
  letter-spacing: 0.6px;
  border: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--dark-navy);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 620px;
  background: url('hero.png') no-repeat center right / cover;
  display: flex;
  align-items: center;
  padding: 60px 6%;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30,38,51,0.95) 0%, rgba(30,38,51,0.82) 45%, rgba(30,38,51,0.1) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 560px;
  color: #fff;
}
.welcome-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; font-weight: 600;
  font-family: var(--font-head);
  margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 1px;
}
.welcome-line { width: 32px; height: 2px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 32px; opacity: 0.92; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Intro Section ── */
.intro-section {
  padding: 80px 6%;
  background: #fff;
  text-align: center;
}
.intro-inner { max-width: 820px; margin: 0 auto; }
.intro-inner h2 {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 16px;
}
.intro-sub {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.intro-inner p { color: var(--text-mid); line-height: 1.85; font-size: 0.97rem; }

/* ── Services Section ── */
.services-section {
  padding: 80px 6%;
  background: var(--bg-light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-top-color: var(--gold);
}
.service-card.featured {
  background: var(--dark-navy);
  border-top-color: var(--gold);
  color: #fff;
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,0.78); }
.service-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin: 0 auto 22px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 14px;
}
.service-card p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.75; }

/* ── Results Banner ── */
.results-banner {
  background: var(--dark-navy);
  padding: 80px 6%;
  color: #fff;
}
.results-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}
.results-text { flex: 1; min-width: 280px; }
.results-text h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.results-text p { font-size: 0.97rem; line-height: 1.85; opacity: 0.88; margin-bottom: 28px; }
.results-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  opacity: 0.75;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 80px 6%;
  background: #fff;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 10px;
}
.section-header p { color: var(--text-mid); font-size: 0.97rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-grid .testimonial-card:last-child:nth-child(3n - 1) {
  grid-column: span 1;
}
/* Center last row if 5 cards */
.testimonials-grid .testimonial-card:nth-child(4) { grid-column: 1; }
.testimonials-grid .testimonial-card:nth-child(5) { grid-column: 2; }

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
}
.stars { color: var(--gold); font-size: 0.85rem; display: flex; gap: 3px; }
.testimonial-card p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.75; font-style: italic; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer-avatar-img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.reviewer-name { font-weight: 600; color: var(--dark-navy); font-size: 0.9rem; }

/* ── Blog Section ── */
.blog-section {
  padding: 80px 6%;
  background: var(--bg-light);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

/* Hidden / reveal */
.blog-card.hidden { display: none; }
.blog-card.reveal { animation: fadeUp 0.4s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible;           /* let avatar overflow */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}

/* Image with badge overlay */
.blog-image {
  height: 210px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
  overflow: hidden;
}
.blog-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 3px;
}

/* Avatar straddling image / body boundary */
.blog-avatar-wrap {
  display: flex;
  padding: 0 24px;
  margin-top: -22px;
  position: relative;
  z-index: 2;
}
.blog-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-head);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.blog-avatar-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

/* Card body */
.blog-body {
  padding: 10px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--dark-navy);
  line-height: 1.45;
  margin-top: 4px;
}
.blog-card p { color: #666; font-size: 0.91rem; line-height: 1.72; flex: 1; }
.read-more {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  transition: color 0.2s;
  align-self: flex-start;
}
.read-more:hover { color: var(--gold-hover); }
.blog-footer {
  font-size: 0.78rem;
  color: #aaa;
  border-top: 1px solid #f1f1f1;
  padding-top: 10px;
  margin-top: 4px;
}

/* Image colour variants */
.blog-img-1 { background-image: linear-gradient(135deg, #3a6bba 0%, #5b8fd4 100%); }
.blog-img-2 { background-image: linear-gradient(135deg, #2e8b57 0%, #4caf7d 100%); }
.blog-img-3 { background-image: linear-gradient(135deg, #7b3f8c 0%, #b06faa 100%); }
.blog-img-4 { background-image: linear-gradient(135deg, #1a44c0 0%, #4f83f7 100%); }
.blog-img-5 { background-image: linear-gradient(135deg, #1a6b8a 0%, #3ab8d4 100%); }
.blog-img-6 { background-image: linear-gradient(135deg, #5a3090 0%, #9b6fd4 100%); }

.blog-cta { text-align: center; margin-top: 40px; }

/* ── Footer ── */
.site-footer { background: #fff; border-top: 1px solid var(--border); }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 40px;
  padding: 64px 6% 48px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo .logo-icon { font-family: 'Times New Roman', serif; font-size: 46px; line-height: 1; display: flex; }
.footer-logo .logo-icon .c { color: #888; }
.footer-logo .logo-icon .r { color: var(--gold); margin-left: -20px; }
.footer-logo .logo-text { display: flex; flex-direction: column; font-size: 13px; font-weight: 700; }
.footer-logo .logo-text .t1 { color: #888; }
.footer-logo .logo-text .t2 { color: var(--gold); }
.footer-desc { color: var(--text-mid); font-size: 0.88rem; line-height: 1.75; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: #666;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.footer-social a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.footer-links h4,
.footer-contact h4,
.footer-subscribe h4 {
  font-family: var(--font-head);
  color: var(--dark-navy);
  font-size: 1rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-links h4::after,
.footer-contact h4::after,
.footer-subscribe h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 34px; height: 2px;
  background: var(--gold);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-mid);
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.25s;
}
.footer-links a i { font-size: 0.65rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold); }

.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-mid); }
.contact-list li i { color: var(--gold); margin-top: 3px; width: 16px; text-align: center; }

.footer-subscribe p { color: var(--text-mid); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.7; }
.subscribe-form { display: flex; gap: 0; border-radius: 28px; overflow: hidden; border: 1px solid #c0d4fb; }
.subscribe-form input {
  flex: 1; padding: 11px 16px;
  border: none; outline: none;
  font-size: 0.88rem; font-family: var(--font-body);
  background: transparent;
}
.subscribe-form button {
  background: var(--gold); color: #fff;
  border: none; padding: 11px 18px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.25s;
}
.subscribe-form button:hover { background: var(--gold-hover); }

.footer-bottom {
  background: var(--dark-navy);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 16px 6%;
  font-size: 0.82rem;
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}
.footer-bottom a:hover { text-decoration: underline; }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 36px; right: 36px;
  background: #25d366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-badge {
  position: absolute; top: -3px; right: -3px;
  background: #e53935; color: #fff;
  width: 20px; height: 20px;
  border-radius: 50%; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

/* ── Scroll to Top ── */
.scroll-top {
  position: fixed;
  bottom: 100px; right: 36px;
  background: var(--gold); color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none; cursor: pointer;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:nth-child(4),
  .testimonials-grid .testimonial-card:nth-child(5) { grid-column: auto; }
  .testimonials-grid .testimonial-card:last-child:nth-child(odd) {
    grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%;
  }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .results-inner { flex-direction: column; gap: 40px; }
  .results-stats { justify-content: center; }
  .top-bar { font-size: 0.75rem; }
  .hero { min-height: 520px; }
  .hero h1 { font-size: 2.4rem; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); max-width: 860px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 6%;
    gap: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .navbar { position: relative; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 48px 6% 36px; }
  .results-stats { gap: 24px; }
  .top-bar-left { gap: 12px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .scroll-top { bottom: 88px; right: 20px; }
}
