/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: repeating-linear-gradient(
    45deg,
    #f7f7f7,
    #f7f7f7 10px,
    #eeeeee 10px,
    #eeeeee 20px
  );
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.2s;
}

.btn-login:hover {
  color: #1a6ea8;
}

.login-icon {
  font-size: 20px;
  color: #aad4f0;
}

.logo-link {
  display: block;
}

.site-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.btn-register {
  background: #1c3a5e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-register:hover {
  background: #1a6ea8;
}

/* ===== NAVIGATION ===== */
.site-nav {
  background: rgba(43, 43, 43, 0.92);
  padding: 0 40px;
  position: relative;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-list li {
  position: relative;
}

.nav-link {
  display: block;
  padding: 18px 28px;
  color: #f2f2f2;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,0.08);
  color: #aad4f0;
}

/* Dropdown */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(43, 43, 43, 0.97);
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}

.dropdown li a:hover {
  background: rgba(255,255,255,0.15);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 14px 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 30, 55, 0.45) 0%,
    rgba(10, 30, 55, 0.25) 60%,
    rgba(10, 30, 55, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 1100px;
}

.hero-heading {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  letter-spacing: 1px;
}

.hero-line {
  display: block;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
}

.hero-line-italic {
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.4rem, 4.5vw, 2.9rem);
  margin-top: 10px;
}

.btn-cta {
  display: inline-block;
  background: rgba(126, 200, 227, 0.88);
  color: #fff;
  padding: 15px 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.btn-cta:hover {
  background: rgba(126, 200, 227, 1);
  transform: translateY(-2px);
}

/* ===== SPECIALTY SECTION ===== */
.specialty-section {
  background: #1c3a5e;
  padding: 36px 40px;
  text-align: center;
}

.specialty-heading {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== SUMMIT SECTION ===== */
.summit-section {
  background: #f8f9fb;
  padding: 70px 40px;
}

.summit-content {
  max-width: 820px;
  margin: 0 auto;
}

.summit-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1c3a5e;
  margin-bottom: 20px;
}

.summit-content p {
  color: #444;
  margin-bottom: 16px;
  font-size: 15px;
}

.summit-register-note {
  background: #e8f0f8;
  border-left: 4px solid #1c3a5e;
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 28px !important;
  font-size: 14px !important;
  color: #1c3a5e !important;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== INTRO VIDEO SECTION ===== */
.intro-video-section {
  padding: 60px 40px;
  background: #fff;
}

.intro-video-section .video-wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 40px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
}

.about-text p {
  font-size: 15px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.75;
}

.about-text blockquote {
  border-left: 4px solid #1c3a5e;
  padding: 16px 20px;
  background: #f4f7fb;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #444;
  font-size: 15px;
  margin-top: 24px;
}

.about-text blockquote footer {
  margin-top: 12px;
  font-style: normal;
  font-size: 14px;
  color: #1c3a5e;
}

.about-image-wrap {
  flex-shrink: 0;
  width: 300px;
  text-align: center;
}

.president-photo {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.years-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #1c3a5e;
  color: #fff;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  justify-content: center;
  margin: 24px auto 0;
  padding: 10px;
  text-align: center;
}

.years-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.years-label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 4px;
  opacity: 0.9;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
  background: #f0f4f8;
  padding: 60px 40px;
  text-align: center;
}

.clients-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #1c3a5e;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.clients-grid img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}

.clients-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 80px 40px;
  text-align: center;
  background: #fff;
}

.services-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1c3a5e;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.service-card {
  background: #f4f7fb;
  border-radius: 8px;
  padding: 36px 28px;
  text-align: left;
  border: 1px solid #dce6f0;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(28, 58, 94, 0.12);
  transform: translateY(-3px);
}

.service-icon {
  width: 56px;
  height: auto;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1c3a5e;
  margin-bottom: 16px;
  line-height: 1.35;
}

.service-card ul {
  list-style: disc;
  padding-left: 20px;
}

.service-card ul li {
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.services-cta {
  margin-top: 20px;
}

.btn-explore {
  display: inline-block;
  border: 2px solid #1c3a5e;
  color: #1c3a5e;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}

.btn-explore:hover {
  background: #1c3a5e;
  color: #fff;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-bg-wrap {
  position: absolute;
  inset: 0;
}

.testimonials-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 30, 55, 0.75);
}

.testimonials-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.testimonials-title span {
  color: #aad4f0;
}

.slideshow {
  position: relative;
  min-height: 180px;
}

.slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.review-text {
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  color: #e8f0f8;
  margin-bottom: 20px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}

.reviewer-company {
  font-size: 13px;
  color: #aad4f0;
  margin-bottom: 24px;
}

.slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.slide-btn {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.slide-btn:hover {
  background: rgba(255,255,255,0.3);
}

.slide-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: #fff;
}

.google-reviews-link {
  margin-top: 32px;
  display: inline-block;
}

.google-reviews-link img {
  border-radius: 6px;
  max-width: 220px;
  margin: 0 auto;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}

.google-reviews-link img:hover {
  transform: scale(1.04);
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
  padding: 80px 40px;
  background: #fff;
}

.community-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.community-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 14px;
  line-height: 1.75;
}

.community-content ul {
  list-style: none;
  margin: 12px 0 20px;
  padding: 0;
}

.community-content ul li {
  font-size: 15px;
  color: #444;
  padding: 6px 0 6px 28px;
  position: relative;
  text-align: left;
}

.community-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1c3a5e;
  font-weight: 700;
}

.community-cta-text {
  font-size: 15px;
  color: #1c3a5e !important;
  font-weight: 600;
  margin-bottom: 24px !important;
}

.fb-group-link {
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.fb-group-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.fb-group-link img {
  max-width: 500px;
  border-radius: 8px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0d2240;
  color: #cdd9e8;
  padding: 60px 40px 0;
}

.footer-inner {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-bottom: 2px solid #1c3a5e;
  padding-bottom: 8px;
}

.footer-col p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #aac0d8;
}

.footer-col a {
  color: #aad4f0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-social .social-icons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-icons a {
  color: #aac0d8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.social-icons a:hover {
  background: #1c3a5e;
  color: #fff;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-copy p {
  font-size: 12px;
  color: #7a94b0;
  letter-spacing: 0.5px;
}

/* ===== LIVE TESTIMONY POPUP ===== */
.live-testimony-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 999;
  font-family: 'Open Sans', sans-serif;
}

.testimony-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  line-height: 1;
}

.testimony-close-btn:hover {
  color: #333;
}

.testimony-content {
  min-height: 140px;
  padding-right: 8px;
}

.testimony-item {
  display: none;
  animation: fadeIn 0.4s ease;
  text-align: center;
}

.testimony-item.active {
  display: block;
}

.testimony-text {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 12px;
  font-style: italic;
}

.testimony-name {
  font-weight: 700;
  font-size: 13px;
  color: #1c3a5e;
  margin-bottom: 2px;
}

.testimony-company {
  font-size: 11px;
  color: #aad4f0;
  margin-bottom: 12px;
}

.testimony-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.testimony-prev,
.testimony-next {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  color: #1c3a5e;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}

.testimony-prev:hover,
.testimony-next:hover {
  background: #1c3a5e;
  color: #fff;
  border-color: #1c3a5e;
}

@media (max-width: 768px) {
  .live-testimony-popup {
    width: 280px;
    bottom: 15px;
    left: 15px;
    padding: 16px;
  }

  .testimony-text {
    font-size: 12px;
  }

  .testimony-name {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .live-testimony-popup {
    width: calc(100% - 30px);
    bottom: 15px;
    left: 15px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
  }

  .about-image-wrap {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .header-top {
    padding: 10px 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn-register {
    font-size: 11px;
    padding: 8px 12px;
  }

  .site-nav {
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 10px;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 10px;
    width: 100%;
  }

  .has-dropdown .dropdown {
    position: static;
    box-shadow: none;
    padding-left: 20px;
  }

  .has-dropdown:hover .dropdown {
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 50px 20px;
  }

  .summit-section,
  .clients-section,
  .services-section,
  .community-section {
    padding: 50px 20px;
  }

  .testimonials-section {
    padding: 60px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .site-footer {
    padding: 40px 20px 0;
  }

  .specialty-section {
    padding: 28px 20px;
  }
}
