/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #f8faff;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #0a2540;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #00a86b;
  margin: 10px auto 0;
  border-radius: 2px;
}
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #00a86b;
  color: #fff;
}
.btn-primary:hover {
  background: #008f5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 168, 107, 0.3);
}
.btn-outline {
  background: transparent;
  color: #0a2540;
  border: 2px solid #0a2540;
}
.btn-outline:hover {
  background: #0a2540;
  color: #fff;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
#main-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 48px;
  width: auto;
}
.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a2540;
}
.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  color: #1a1a2e;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00a86b;
  transition: width 0.3s;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.main-nav a.active {
  color: #00a86b;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.whatsapp-header {
  background: #25D366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
}
.whatsapp-header:hover {
  background: #1da851;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0a2540;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero-section {
  padding: 60px 0 80px;
  color: #fff;
}
.hero-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}
.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #a0c4e8;
}
.hero-desc {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-image {
  flex: 1;
}
.hero-image img {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  width: 100%;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 70px 0;
  background: #fff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: #f8faff;
  padding: 30px 24px;
  border-radius: 12px;
  border: 1px solid #e8edf5;
  transition: transform 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
}
.testimonial-card .stars {
  color: #f5b342;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-card h4 {
  font-weight: 600;
  color: #0a2540;
}
.testimonial-card span {
  font-size: 0.85rem;
  color: #6b7a8f;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  padding: 70px 0;
  background: #f8faff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-card h3 {
  padding: 16px 20px 6px;
  font-size: 1.1rem;
  color: #0a2540;
}
.service-card p {
  padding: 0 20px 20px;
  color: #4a5568;
  font-size: 0.92rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 50px 0 40px;
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
.page-hero .breadcrumb {
  margin-top: 10px;
  opacity: 0.8;
}
.page-hero .breadcrumb a {
  color: #a0c4e8;
}
.page-hero .breadcrumb a:hover {
  color: #fff;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  padding: 60px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 {
  font-size: 2rem;
  color: #0a2540;
  margin-bottom: 20px;
}
.about-text p {
  margin-bottom: 16px;
  color: #2d3748;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.stat-item {
  text-align: center;
  background: #f8faff;
  padding: 16px;
  border-radius: 10px;
}
.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #00a86b;
}
.stat-label {
  font-size: 0.85rem;
  color: #4a5568;
}
.about-buttons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.about-image img {
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 60px 0;
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item img:hover {
  transform: scale(1.05);
}

/* ===== STATUTORY ===== */
.statutory-section {
  padding: 60px 0;
  background: #f8faff;
}
.statutory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.statutory-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e8edf5;
}
.statutory-card i {
  font-size: 2rem;
  color: #00a86b;
  margin-bottom: 10px;
}
.statutory-card h4 {
  font-size: 0.85rem;
  color: #6b7a8f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.statutory-card p {
  font-weight: 600;
  color: #0a2540;
  margin-top: 4px;
}

/* ===== SERVICES DETAILED ===== */
.services-detailed {
  padding: 60px 0;
}
.services-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}
.services-intro h2 {
  font-size: 2rem;
  color: #0a2540;
  margin-bottom: 16px;
}
.service-category {
  margin-bottom: 50px;
}
.category-title {
  font-size: 1.6rem;
  color: #0a2540;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-title i {
  color: #00a86b;
}
.service-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.service-card-large {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.service-card-large img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-content {
  padding: 24px;
}
.service-content h4 {
  font-size: 1.2rem;
  color: #0a2540;
  margin-bottom: 10px;
}
.service-features {
  margin-top: 12px;
}
.service-features li {
  padding: 4px 0;
  font-size: 0.92rem;
  color: #2d3748;
}
.service-features i {
  color: #00a86b;
  margin-right: 8px;
}
.consultancy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.consultancy-card {
  background: #fff;
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e8edf5;
}
.consultancy-card i {
  font-size: 2.4rem;
  color: #00a86b;
  margin-bottom: 12px;
}
.consultancy-card h4 {
  color: #0a2540;
  margin-bottom: 6px;
}
.consultancy-card p {
  font-size: 0.9rem;
  color: #4a5568;
}
.consultants-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.type-card {
  background: #fff;
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e8edf5;
}
.type-card i {
  font-size: 2rem;
  color: #0a2540;
  margin-bottom: 12px;
}
.type-card h4 {
  color: #0a2540;
}
.type-card p {
  font-size: 0.9rem;
  color: #4a5568;
}
.cta-section {
  text-align: center;
  background: #0a2540;
  color: #fff;
  padding: 50px 30px;
  border-radius: 16px;
  margin-top: 40px;
}
.cta-section h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.cta-section .btn-primary {
  margin-top: 16px;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 60px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-form-wrapper h2 {
  font-size: 1.8rem;
  color: #0a2540;
  margin-bottom: 6px;
}
.contact-form-wrapper p {
  color: #4a5568;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: #0a2540;
  margin-bottom: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dce1eb;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00a86b;
}
.form-note {
  font-size: 0.85rem;
  color: #6b7a8f;
  margin-top: 12px;
}
.contact-info-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-info-wrapper h2 {
  font-size: 1.8rem;
  color: #0a2540;
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-item i {
  font-size: 1.4rem;
  color: #00a86b;
  width: 30px;
  margin-top: 4px;
}
.contact-item h4 {
  font-size: 0.95rem;
  color: #0a2540;
}
.contact-item p {
  color: #4a5568;
  font-size: 0.95rem;
}
.contact-item a {
  color: #00a86b;
}
.contact-whatsapp {
  margin: 20px 0;
}
.contact-whatsapp .btn {
  width: 100%;
  text-align: center;
}
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}

/* ===== LEAD POPUP ===== */
.lead-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}
.lead-popup-overlay.active {
  display: flex;
}
.lead-popup {
  background: #fff;
  max-width: 460px;
  width: 100%;
  padding: 36px 32px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: popIn 0.3s ease;
}
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lead-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #6b7a8f;
  cursor: pointer;
}
.lead-popup h3 {
  font-size: 1.5rem;
  color: #0a2540;
  margin-bottom: 4px;
}
.lead-popup p {
  color: #4a5568;
  margin-bottom: 20px;
}
.lead-popup input,
.lead-popup select,
.lead-popup textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dce1eb;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-family: inherit;
}
.lead-popup input:focus,
.lead-popup select:focus,
.lead-popup textarea:focus {
  border-color: #00a86b;
  outline: none;
}
.lead-popup .form-note {
  text-align: center;
}

/* ===== FOOTER ===== */
#main-footer {
  background: #0a1a2e;
  color: #c8d6e5;
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.footer-col ul li {
  padding: 4px 0;
}
.footer-col ul li a {
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: #00a86b;
}
.footer-logo {
  height: 44px;
  margin-bottom: 12px;
}
.footer-address {
  margin-bottom: 12px;
}
.footer-address i {
  margin-right: 8px;
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.social-icons a:hover {
  background: #00a86b;
}
.footer-small {
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.7;
}