/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}
a { color: #0D7DBC; text-decoration: none; transition: color 0.3s; }
a:hover { color: #F4A361; text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; line-height: 1.3; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== UTILITY BAR ===== */
.utility-bar {
  background-color: #14212B;
  padding: 8px 0;
  font-size: 14px;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-bar .social a {
  color: #fff;
  font-size: 16px;
  margin-right: 10px;
  background: rgba(255,255,255,0.15);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.3s;
}
.utility-bar .social a:hover {
  background: #0077B5;
  text-decoration: none;
}
.utility-bar .contact-info {
  display: flex;
  gap: 25px;
  align-items: center;
}
.utility-bar .contact-info a,
.utility-bar .contact-info span {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.utility-bar .contact-info i {
  font-size: 13px;
  color: #F4A361;
}
.utility-bar .contact-info a:hover { color: #F4A361; text-decoration: none; }

/* ===== HEADER ===== */
.site-header {
  background-color: #002D57;
  padding: 15px 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo img { height: 90px; width: auto; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
}
.main-nav {
  list-style: none;
  display: flex;
  gap: 5px;
}
.main-nav li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s;
}
.main-nav li a:hover,
.main-nav li.active a {
  color: #F4A361;
  text-decoration: none;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(20,33,43,0.85), rgba(20,33,43,0.85)),
    url('../images/unsplash-office.jpg') center/cover no-repeat;
  padding: 100px 0 80px;
  text-align: center;
  color: #fff;
}
.hero h1 {
  font-size: 52px;
  margin-bottom: 10px;
}
.hero h2 {
  font-size: 52px;
  margin-bottom: 20px;
}
.hero .tagline {
  color: #0D7DBC;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 10px;
}
.hero .sub-tagline {
  color: #F4A361;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 30px;
}
.btn-primary {
  display: inline-block;
  background-color: #0D7DBC;
  color: #fff;
  padding: 14px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 5px;
}
.btn-primary:hover {
  background-color: #096a9e;
  color: #fff;
  text-decoration: none;
}
.btn-outline {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  margin: 5px;
}
.btn-outline:hover {
  background-color: #fff;
  color: #002D57;
  text-decoration: none;
}
.btn-outline-orange {
  display: inline-block;
  border: 2px solid #F4A361;
  color: #F4A361;
  padding: 14px 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline-orange:hover {
  background-color: #F4A361;
  color: #fff;
  text-decoration: none;
}

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section-dark { background-color: #14212B; color: #fff; }
.section-blue { background-color: #002D57; color: #fff; }
.section-light { background-color: #F4F9FE; }
.section-white { background-color: #fff; }

.section-label {
  color: #0D7DBC;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #14212B;
}
.section-title-light {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}
.section-text {
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 20px;
}
.text-center { text-align: center; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background-color: #14212B;
  padding: 50px 0;
  text-align: center;
}
.cta-banner h2 {
  color: #0D7DBC;
  font-size: 28px;
  margin-bottom: 15px;
}
.cta-banner p {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

/* ===== HIGHLIGHTS / FEATURES ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.highlight-card {
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.highlight-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #F4F9FE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-card .card-icon i {
  font-size: 36px;
  color: #0D7DBC;
}
.highlight-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
}
.highlight-card h3 {
  font-size: 20px;
  color: #14212B;
  margin-bottom: 10px;
}
.highlight-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: #14212B;
  padding: 70px 0;
  color: #fff;
}
.about-section .container {
  display: flex;
  gap: 50px;
  align-items: center;
}
.about-section .about-img {
  flex: 0 0 45%;
}
.about-section .about-img img {
  border-radius: 8px;
  width: 100%;
}
.about-section .about-content {
  flex: 1;
}
.about-section h3 {
  color: #F4A361;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.about-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
.about-section p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #ccc;
}

/* ===== FEATURES ROW (3 cols) ===== */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: background 0.3s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.1);
}
.feature-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: rgba(13,125,188,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card .card-icon i {
  font-size: 28px;
  color: #0D7DBC;
}
.feature-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* ===== SERVICES CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: #14212B;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card .card-body { padding: 25px; }
.service-card h3 {
  font-size: 20px;
  color: #F4A361;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}
.service-card .learn-more {
  color: #F4A361;
  font-weight: 700;
  font-size: 14px;
}
.service-card .learn-more:hover {
  color: #fff;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 70px 0;
  background: #F4F9FE;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.why-card {
  padding: 30px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.why-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: #F4F9FE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card .card-icon i {
  font-size: 28px;
  color: #0D7DBC;
}
.why-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}
.why-card h3 {
  font-size: 18px;
  color: #14212B;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(rgba(20,33,43,0.92), rgba(20,33,43,0.92)),
    url('../images/unsplash-meeting.jpg') center/cover no-repeat;
  padding: 70px 0;
  color: #fff;
}
.testimonial-carousel {
  max-width: 700px;
  margin: 30px auto 0;
  position: relative;
  min-height: 200px;
}
.testimonial-slide {
  display: none;
  text-align: center;
  padding: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  animation: fadeIn 0.5s ease-in-out;
}
.testimonial-slide.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-slide .stars {
  color: #f5c518;
  font-size: 22px;
  margin-bottom: 15px;
  letter-spacing: 3px;
}
.testimonial-slide .quote {
  font-size: 17px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  color: #e0e0e0;
}
.testimonial-slide .author {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  display: block;
}
.testimonial-slide .role {
  font-size: 14px;
  color: #999;
  display: block;
  margin-top: 3px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}
.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}
.testimonial-dots .dot.active {
  background: #0D7DBC;
}

/* Keep old grid as fallback */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}
.testimonial-card {
  padding: 25px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}
.testimonial-card .stars {
  color: #f5c518;
  font-size: 18px;
  margin-bottom: 10px;
}
.testimonial-card p {
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 15px;
  color: #ddd;
}
.testimonial-card .author {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.testimonial-card .role {
  font-size: 13px;
  color: #999;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #002D57;
  padding: 50px 0 20px;
  color: #ccc;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 5px;
}
.footer-col a { color: #ccc; font-size: 14px; }
.footer-col a:hover { color: #F4A361; text-decoration: none; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col .logo-footer { margin-bottom: 15px; }
.footer-col .logo-footer img { height: 80px; }
.footer-col .social-links {
  margin-top: 8px;
}
.footer-col .social-links a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  background: rgba(255,255,255,0.1);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.3s;
}
.footer-col .social-links a:hover {
  background: #0077B5;
  text-decoration: none;
}
.footer-col .contact-list { list-style: none; }
.footer-col .contact-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-col .contact-list li i {
  color: #F4A361;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-bottom a { color: #ccc; }
.footer-bottom a:hover { color: #F4A361; }

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
  background: linear-gradient(rgba(0,45,87,0.88), rgba(0,45,87,0.88)),
    url('../images/unsplash-meeting.jpg') center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
}
.page-header .container {
  text-align: left;
}
.page-header .page-label {
  color: #0D7DBC;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.page-header h1 {
  font-size: 42px;
}
.page-header p {
  color: #ccc;
  font-size: 16px;
  margin-top: 10px;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 60px 0;
  background: #fff;
}
.content-section h2 {
  font-size: 28px;
  color: #14212B;
  margin-bottom: 15px;
}
.content-section h3 {
  font-size: 22px;
  color: #14212B;
  margin-bottom: 10px;
}
.content-section p {
  margin-bottom: 15px;
  line-height: 1.8;
}
.content-section ul { margin: 15px 0 15px 25px; }
.content-section ul li { margin-bottom: 8px; line-height: 1.6; }

/* About page with founder photo */
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  align-items: center;
}
.about-content-grid .founder-photo {
  text-align: center;
}
.about-content-grid .founder-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Claim Status Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeInOverlay 0.3s ease;
}
.modal-overlay.active {
  display: flex;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-content {
  background: #002D57;
  border-radius: 12px;
  padding: 40px 35px;
  max-width: 550px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  animation: slideUp 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-content .modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #999;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}
.modal-content .modal-close:hover {
  color: #fff;
}
.modal-content .modal-logo {
  text-align: center;
  margin-bottom: 15px;
}
.modal-content .modal-logo img {
  height: 60px;
  margin: 0 auto;
}
.modal-content h2 {
  color: #fff;
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
}
.modal-content .form-group label {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.modal-content .form-group input,
.modal-content .form-group textarea {
  background: #e9ecef;
  border: none;
  border-radius: 5px;
  color: #000;
}
.modal-content .form-group input::placeholder,
.modal-content .form-group textarea::placeholder {
  color: #666;
}
.modal-content .modal-submit {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 10px auto 0;
  padding: 14px 30px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.modal-content .modal-submit:hover {
  background: #333;
}

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #14212B;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  background: #f8f9fa;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0D7DBC;
  outline: none;
  background: #fff;
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== FAQ SECTION ===== */
.faq-section { padding: 60px 0; }
.faq-controls {
  text-align: right;
  margin-bottom: 15px;
}
.faq-controls button {
  background: #fff;
  border: 1.5px solid #ccc;
  color: #0D7DBC;
  padding: 8px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}
.faq-controls button:hover {
  background: #0D7DBC;
  color: #fff;
  border-color: #0D7DBC;
}
.faq-item {
  margin-bottom: 12px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
  background: #fff;
}
.faq-item:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.faq-item.active {
  border-color: #0D7DBC;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #fff;
  transition: background 0.3s;
  user-select: none;
}
.faq-question:hover {
  background: #f9fafb;
}
.faq-question h3 {
  font-size: 16px;
  color: #111827;
  margin: 0;
  flex: 1;
  padding-right: 15px;
  font-weight: 600;
}
.faq-question .faq-chevron {
  font-size: 14px;
  color: #9ca3af;
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-question .faq-chevron {
  transform: rotate(180deg);
  color: #0D7DBC;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
}
.faq-item.active .faq-answer {
  max-height: 600px;
}
.faq-answer-inner {
  padding: 0 25px 20px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* ===== USEFUL LINKS ===== */
.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.links-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #002D57;
  font-weight: 600;
  transition: all 0.3s;
}
.links-grid a i {
  color: #0D7DBC;
}
.links-grid a:hover {
  background: #0D7DBC;
  color: #fff;
  text-decoration: none;
  border-color: #0D7DBC;
}
.links-grid a:hover i {
  color: #fff;
}

/* ===== CONTACT PAGE ===== */
.contact-hero-banner {
  background: linear-gradient(135deg, #002D57, #0D7DBC);
  padding: 30px 0;
  text-align: center;
  color: #fff;
}
.contact-hero-banner h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}
.contact-section {
  background: linear-gradient(135deg, #002D57 0%, #14212B 100%);
  padding: 60px 0;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 0;
}
.contact-details p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #ccc;
}
.contact-details strong { color: #fff; }
.contact-details a { color: #F4A361; }
.contact-details a:hover { color: #fff; }
.contact-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}
.contact-details .detail-item i {
  color: #F4A361;
  font-size: 18px;
  margin-top: 3px;
  width: 20px;
  flex-shrink: 0;
}
.contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.contact-form-card h2 {
  font-size: 24px;
  color: #14212B;
  margin-bottom: 25px;
}
.contact-form-card .form-group input,
.contact-form-card .form-group textarea {
  background: #f8f9fa;
}

/* ===== SERVICES DETAIL ===== */
.service-detail {
  padding: 60px 0;
}
.service-detail:nth-child(even) { background: #F4F9FE; }
.service-detail:nth-child(odd) { background: #fff; }
.service-detail .container {
  display: flex;
  gap: 50px;
  align-items: center;
}
.service-detail:nth-child(even) .container {
  flex-direction: row-reverse;
}
.service-detail .service-img { flex: 0 0 40%; }
.service-detail .service-img img { border-radius: 8px; width: 100%; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.service-detail .service-content { flex: 1; }
.service-detail h2 { font-size: 28px; color: #0D7DBC; margin-bottom: 10px; }
.service-detail h3 { font-size: 18px; color: #555; margin-bottom: 15px; font-weight: 400; }
.service-detail p { margin-bottom: 15px; line-height: 1.7; }

/* Green checkmark list */
.check-list {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}
.check-list li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
  margin-bottom: 5px;
}
.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 8px;
  color: #37ca37;
  font-size: 18px;
  font-weight: 700;
}

/* ===== WHY CHOOSE DETAIL (services page) ===== */
.why-detail-section {
  background: #14212B;
  padding: 70px 0;
  color: #fff;
}
.why-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}
.why-detail-card {
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  text-align: center;
  transition: background 0.3s;
}
.why-detail-card:hover {
  background: rgba(255,255,255,0.1);
}
.why-detail-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: rgba(13,125,188,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-detail-card .card-icon i {
  font-size: 28px;
  color: #0D7DBC;
}
.why-detail-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
.why-detail-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #002D57;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }
  .main-nav.active { display: flex; }
  .site-header .container { position: relative; }

  .hero h1, .hero h2 { font-size: 32px; }
  .hero .tagline { font-size: 18px; }

  .utility-bar .container { flex-direction: column; gap: 8px; }
  .utility-bar .contact-info { gap: 15px; flex-wrap: wrap; justify-content: center; }

  .highlights-grid,
  .services-grid,
  .why-grid,
  .testimonials-grid,
  .features-row,
  .why-detail-grid { grid-template-columns: 1fr; }

  .about-section .container { flex-direction: column; }
  .about-section .about-img { flex: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  .service-detail .container,
  .service-detail:nth-child(even) .container { flex-direction: column; }
  .service-detail .service-img { flex: none; }

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

  .about-content-grid { grid-template-columns: 1fr; }
  .about-content-grid .founder-photo { order: -1; max-width: 300px; margin: 0 auto; }

  .page-header { padding: 50px 0; }
  .page-header h1 { font-size: 32px; }
}
