/* Global Custom Properties */
:root {
  --primary: #04244d;
  --primary-dark: #02142b;
  --primary-rgb: 4, 36, 77;
  --secondary: #2aa056;
  --secondary-dark: #1e783f;
  --secondary-rgb: 42, 160, 86;
  --accent: #2aa056;
  --accent-light: #eaf6ee;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-dark: #061b2e;
  --white: #ffffff;
  --border-color: rgba(15, 59, 99, 0.08);
  --border-glass: rgba(255, 255, 255, 0.25);
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
  --shadow-premium: 0 24px 60px rgba(15, 59, 99, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --max-width: 1200px;
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

/* Container */
.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: rgba(15, 59, 99, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Header & Navbar */
/* Header & Navbar */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 59, 99, 0.06);
  border-bottom-color: rgba(15, 59, 99, 0.05);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .navbar {
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .brand-logo {
  height: 44px;
}

.footer-brand-col .brand-logo {
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--primary-dark);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Sliding active/hover underline */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--secondary);
  outline: none;
}

.nav-menu a.active {
  color: var(--secondary);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--primary) !important;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(15, 59, 99, 0.12);
  transition: all 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--secondary) !important;
  box-shadow: 0 6px 20px rgba(0, 166, 166, 0.22);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

/* Floating WhatsApp & Call Widget styling */
.floating-contact-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.floating-btn svg {
  width: 24px;
  height: 24px;
}

.call-btn {
  background: var(--primary);
  color: var(--white);
}

.call-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 59, 99, 0.25);
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}


.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  border-radius: 99px;
  background: var(--primary);
  transition: var(--transition);
}

/* Common Section Layout */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-muted {
  background-color: var(--bg-light);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 166, 166, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--primary-dark);
  background: var(--accent);
  box-shadow: 0 8px 20px rgba(246, 179, 27, 0.25);
}

.btn-primary:hover {
  background: #ffd05b;
  box-shadow: 0 10px 24px rgba(246, 179, 27, 0.35);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-secondary-outline {
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
}

.btn-secondary-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* 1. Hero Split Grid Layout */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Ken Burns effect on active background slide */
.hero-slide.is-active .hero-bg {
  animation: kenBurns 18s ease-out forwards;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 20, 43, 0.85);
}

.hero-bg-1 {
  background-image: url("../slider1.png");
}

.hero-bg-2 {
  background-image: url("../slider2.png");
}

.hero-bg-3 {
  background-image: linear-gradient(rgba(2, 20, 43, 0.9), rgba(2, 20, 43, 0.9)),
    url("data:image/svg+xml,%3Csvg width='1600' height='900' viewBox='0 0 1600 900' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1600' height='900' fill='%2302142b'/%3E%3Cpath d='M0 0h1600v900H0z' fill='%232aa056' opacity='.1'/%3E%3Ccircle cx='985' cy='365' r='200' fill='%232aa056' opacity='.15'/%3E%3Ccircle cx='200' cy='700' r='120' fill='%232aa056' opacity='.1'/%3E%3C/svg%3E");
}

.hero-overlay-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  height: 100%;
  padding-top: 80px;
  /* Offset for floating header */
}

.hero-slider-content {
  position: relative;
  height: 380px;
  /* Aligns slide text height */
}

.slide-text-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
}

.slide-text-block.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.slide-text-block .eyebrow {
  display: inline-block;
  color: var(--accent);
  background: rgba(42, 160, 86, 0.1);
  border: 1px solid rgba(42, 160, 86, 0.2);
  margin-bottom: 24px;
}

.slide-title {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.slide-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 36px;
  max-width: 650px;
  line-height: 1.6;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Glassmorphic Consultation Form Panel */
.hero-form-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-form-card {
  width: 100%;
  max-width: 390px;
  background: rgba(4, 36, 77, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  color: var(--white);
  animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-form-card .form-header {
  margin-bottom: 24px;
}

.hero-form-card .form-header h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin: 6px 0;
  font-weight: 800;
}

.hero-form-card .form-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin: 0;
}

.hero-form-card .eyebrow-accent {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: rgba(42, 160, 86, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
}

.hero-form-card .form-group {
  margin-bottom: 14px;
}

.hero-form-card input,
.hero-form-card select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.hero-form-card input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-form-card input:focus,
.hero-form-card select:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  outline: none;
}

.hero-form-card select option {
  background: var(--primary-dark);
  color: var(--white);
}

.hero-controls {
  position: absolute;
  left: 5%;
  bottom: 40px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.is-active {
  width: 32px;
  background: var(--accent);
}

@keyframes kenBurns {
  0% {
    transform: scale(1.02) translate(0, 0);
  }

  100% {
    transform: scale(1.09) translate(-1%, -0.5%);
  }
}

/* 2. Vision, Mission, Core Values Section */
.vision-mission-section {
  background: radial-gradient(circle at 10% 10%, rgba(0, 166, 166, 0.05), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(246, 179, 27, 0.05), transparent 40%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(0, 166, 166, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 166, 166, 0.08);
  color: var(--secondary);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.about-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* 2 (continued). About Us Section details */
.about-hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}

.about-hero-content h2 {
  color: var(--white);
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.about-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.about-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-stat-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-stat-card strong {
  font-size: 2.4rem;
  font-family: var(--font-headings);
  font-weight: 800;
  margin-block: 8px;
}

.about-stat-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-story-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 166, 166, 0.15);
}

.story-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--secondary);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(42, 160, 86, 0.2);
}

.about-story-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.about-story-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Redesigned About Us & Vision/Mission styling */
.about-section.white-theme {
  background-color: var(--white);
  padding-bottom: 50px;
}

.about-us-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.about-us-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-main-desc {
  font-size: 1.12rem;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.about-sub-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-us-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(42, 160, 86, 0.1);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.bullet-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.about-us-image-container {
  position: relative;
}

.about-us-img {
  width: 100%;
  height: 345px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color);
}

.about-us-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatBadge 6s ease-in-out infinite;
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(42, 160, 86, 0.1);
  color: var(--secondary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text strong {
  font-size: 1.1rem;
  color: var(--primary-dark);
  font-family: var(--font-headings);
  line-height: 1.2;
}

.badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.vision-mission-section.white-theme {
  background: var(--white);
  padding-top: 50px;
}

.vision-mission-section.white-theme .about-card {
  border: 1px solid var(--border-color);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.vision-mission-section.white-theme .about-card:hover {
  border-color: rgba(42, 160, 86, 0.3);
  box-shadow: var(--shadow-premium);
}

/* Responsiveness for new elements */
@media (max-width: 991px) {
  .about-us-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-us-img {
    height: 400px;
  }

  .about-us-floating-badge {
    left: 20px;
    bottom: -15px;
  }
}

@media (max-width: 576px) {
  .about-us-img {
    height: 300px;
  }

  .about-us-floating-badge {
    left: 10px;
    bottom: -10px;
    padding: 12px 18px;
    gap: 10px;
  }

  .badge-text strong {
    font-size: 0.95rem;
  }
}


/* 7. Founder’s Message Section */
.founder-section {
  background: radial-gradient(circle at right, rgba(0, 166, 166, 0.05), transparent 30%),
    radial-gradient(circle at left, rgba(246, 179, 27, 0.04), transparent 30%);
}

.founder-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-premium);
}

.founder-image-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  background: var(--primary-dark);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.founder-image-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  pointer-events: none;
}

.founder-initials {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-full);
  background: var(--secondary);
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(42, 160, 86, 0.25);
  letter-spacing: -0.05em;
  font-family: var(--font-headings);
}

.founder-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(6, 27, 46, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: var(--white);
}

.founder-badge span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}

.founder-badge strong {
  font-size: 1.15rem;
  font-family: var(--font-headings);
}

.founder-message blockquote {
  position: relative;
}

.founder-message blockquote::before {
  content: "“";
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 8rem;
  color: rgba(0, 166, 166, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.founder-message blockquote p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.founder-signature {
  margin-top: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.founder-signature strong {
  display: block;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.founder-signature span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* 3. Services Section */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(0, 166, 166, 0.2);
}

.service-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(0, 166, 166, 0.06);
  color: var(--secondary);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Expandable Services Container */
.services-more-container {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.directory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 30px;
}

.tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.directory-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.directory-list li {
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-light);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: var(--transition);
}

.directory-list li:hover {
  background: var(--white);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.directory-list li span {
  display: block;
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.services-toggle-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Why Choose Us Section */
.why-choose-section {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 20px;
}

.why-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 166, 166, 0.1);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.why-item h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  background: var(--white);
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-box h3 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 800;
}

.stat-box span {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* 4. Our Expertise Section */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.expertise-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(0, 166, 166, 0.2);
}

.expertise-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(15, 59, 99, 0.06);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.expertise-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.expertise-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* 5. News and Updates Section (6 Columns) */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 166, 166, 0.15);
}

.news-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.news-tag.gst {
  background: rgba(0, 166, 166, 0.1);
  color: var(--secondary);
}

.news-tag.tax {
  background: rgba(15, 59, 99, 0.1);
  color: var(--primary);
}

.news-tag.msme {
  background: rgba(246, 179, 27, 0.12);
  color: var(--accent);
}

.news-tag.compliance {
  background: #f1f5f9;
  color: var(--primary-dark);
}

.news-tag.disputes {
  background: #fee2e2;
  color: #ef4444;
}

.news-tag.digital {
  background: #e0f2fe;
  color: #0284c7;
}

.news-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.news-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
  flex-grow: 0;
}

.news-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
}

.read-more:hover {
  color: var(--primary-dark);
}

/* 6. Blog Section (6 Columns) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 166, 166, 0.15);
}

.blog-tag {
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
  flex-grow: 0;
}

.blog-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  font-size: 0.85rem;
}

.blog-footer span {
  color: var(--text-muted);
}

.blog-link {
  font-weight: 700;
  color: var(--primary);
}

.blog-link:hover {
  color: var(--secondary);
}

/* 8. Testimonials Section (Google Review style) */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 166, 166, 0.2);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.client-avatar.avatar-orange { background-color: #f4511e; }
.client-avatar.avatar-green { background-color: #0f9d58; }
.client-avatar.avatar-indigo { background-color: #3f51b5; }
.client-avatar.avatar-purple { background-color: #ab47bc; }

.client-meta-info {
  display: flex;
  flex-direction: column;
}

.testimonial-header strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #202124;
  line-height: 1.3;
  margin-bottom: 2px;
}

.testimonial-header span {
  font-size: 0.78rem;
  color: #70757a;
}

.local-guide-tag {
  color: #e37400;
  font-weight: 700;
  font-size: 0.76rem;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.google-review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--white);
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.stars {
  color: #fbbc05;
  font-size: 1.1rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.review-time {
  font-size: 0.78rem;
  color: #70757a;
}

.testimonial-card p {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #3c4043;
  margin-bottom: 0;
  flex-grow: 1;
}

/* 9. FAQs Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--secondary);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 10. Contact Details & Contact Form Section (Redesigned) */
.contact-section-redesigned {
  background: var(--primary-dark);
  color: var(--white);
  position: relative;
}

.contact-section-redesigned::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 166, 166, 0.1), transparent 40%);
  pointer-events: none;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-panel h2 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.contact-details-deck {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 166, 166, 0.15);
  color: var(--secondary);
  display: grid;
  place-items: center;
}

.contact-detail-item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-detail-item strong {
  font-size: 1.05rem;
  color: var(--white);
}

.contact-detail-item a:hover {
  color: var(--accent);
}

.contact-form-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(16px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 48px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-group select option {
  background-color: var(--primary-dark);
  color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 166, 166, 0.2);
}

/* Spinner for submit button */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 166, 166, 0.3);
  border-top-color: var(--primary-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast-success {
  margin-top: 15px;
  background: rgba(0, 166, 166, 0.15);
  border: 1px solid var(--secondary);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

/* White Theme Contact Section overrides */
.contact-section-redesigned.white-theme {
  background: #fafbfc;
  color: var(--text);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Background animated blobs */
.contact-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.contact-blob-1 {
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(0, 166, 166, 0.08);
  animation: floatContactBlob 12s infinite alternate ease-in-out;
}

.contact-blob-2 {
  bottom: -10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: rgba(42, 160, 86, 0.08);
  animation: floatContactBlob 15s infinite alternate-reverse ease-in-out;
}

@keyframes floatContactBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 40px) scale(1.1);
  }
}

.contact-section-redesigned.white-theme .contact-layout-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  position: relative;
  z-index: 3;
}

.contact-section-redesigned.white-theme .contact-info-panel h2 {
  color: var(--primary-dark);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 20px;
}

.contact-section-redesigned.white-theme .contact-info-panel p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 36px;
}

.contact-section-redesigned.white-theme .contact-details-deck {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-section-redesigned.white-theme .contact-detail-item {
  background: var(--white);
  border: 1px solid rgba(15, 59, 99, 0.05);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(15, 59, 99, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-section-redesigned.white-theme .contact-detail-item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 166, 166, 0.25);
  box-shadow: 0 20px 40px rgba(15, 59, 99, 0.06);
}

.contact-section-redesigned.white-theme .contact-detail-item .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(0, 166, 166, 0.06);
  color: var(--secondary);
  display: grid;
  place-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.contact-section-redesigned.white-theme .contact-detail-item:hover .icon-box {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 6px 15px rgba(0, 166, 166, 0.25);
}

.contact-section-redesigned.white-theme .contact-detail-item span {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  display: block;
}

.contact-section-redesigned.white-theme .contact-detail-item strong {
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.contact-section-redesigned.white-theme .contact-detail-item strong a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-section-redesigned.white-theme .contact-detail-item strong a:hover {
  color: var(--secondary);
}

.contact-section-redesigned.white-theme .contact-form-panel {
  background: var(--white);
  border: 1px solid rgba(15, 59, 99, 0.05);
  border-top: 4px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 24px 60px rgba(15, 59, 99, 0.08);
}

.contact-section-redesigned.white-theme .form-group label {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.contact-section-redesigned.white-theme .form-group input,
.contact-section-redesigned.white-theme .form-group select,
.contact-section-redesigned.white-theme .form-group textarea {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.94rem;
  transition: all 0.3s ease;
}

.contact-section-redesigned.white-theme .form-group select option {
  background-color: var(--white);
  color: var(--text);
}

.contact-section-redesigned.white-theme .form-group input::placeholder,
.contact-section-redesigned.white-theme .form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.contact-section-redesigned.white-theme .form-group input:focus,
.contact-section-redesigned.white-theme .form-group select:focus,
.contact-section-redesigned.white-theme .form-group textarea:focus {
  background: var(--white);
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 166, 166, 0.1);
}

/* Premium Button Submit Styles */
.contact-section-redesigned.white-theme .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border: none;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 166, 166, 0.25);
  transition: all 0.3s ease;
}

.contact-section-redesigned.white-theme .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 166, 166, 0.4);
}

.contact-section-redesigned.white-theme .btn-primary svg.btn-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.contact-section-redesigned.white-theme .btn-primary:hover svg.btn-icon {
  transform: translate(6px, -6px) scale(1.15);
}

.contact-section-redesigned.white-theme .toast-success {
  background: rgba(42, 160, 86, 0.08);
  border: 1px solid var(--secondary);
  color: var(--secondary-dark);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}


/* 11. Footer Section */
.site-footer {
  padding: 80px 0 40px;
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

/* Premium Footer CTA Banner */
.footer-cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 60px;
  margin-bottom: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.footer-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 166, 166, 0.15);
  filter: blur(50px);
  pointer-events: none;
}

.cta-banner-text {
  max-width: 600px;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-banner-text h2 {
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-banner-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.6;
}

.cta-banner-buttons {
  flex-shrink: 0;
}

.cta-banner-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 166, 166, 0.3);
}

.cta-banner-buttons .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 166, 166, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.85fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-col .brand {
  margin-bottom: 24px;
  display: inline-block;
  background: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-brand-col .brand-logo {
  filter: none !important;
  display: block;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-socials a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 166, 166, 0.25);
}

.footer-links-col h3,
.footer-contact-col h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 8px;
}

.footer-links-col h3::after,
.footer-contact-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background-color: var(--secondary);
  border-radius: var(--radius-full);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}

.footer-links-col a:hover {
  color: var(--secondary);
  transform: translateX(6px);
}

/* Contact Item Card Styling */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.3s ease;
}

.contact-item-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 166, 166, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-text strong {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item-text span,
.contact-item-text a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item-text a:hover {
  color: var(--secondary);
}

.copyright-wrapper {
  padding-top: 36px;
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.copyright-links {
  display: flex;
  gap: 24px;
}

.copyright-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.25s ease;
}

.copyright-links a:hover {
  color: var(--secondary);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {

  .about-grid,
  .service-grid,
  .expertise-grid,
  .news-grid,
  .blog-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .directory-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .founder-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Hero Slider responsiveness */
  .hero {
    height: auto;
    min-height: auto;
    padding: 120px 0 100px 0;
  }

  .hero-overlay-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    height: auto;
    padding-top: 0;
  }

  .hero-slider-content {
    height: auto;
  }

  .slide-text-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }

  .slide-text-block.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
  }

  .hero-form-panel {
    justify-content: center;
  }

  .hero-form-card {
    max-width: 480px;
  }

  .hero-controls {
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    justify-content: center;
    width: 100%;
  }

  .about-grid,
  .service-grid,
  .expertise-grid,
  .news-grid,
  .blog-grid,
  .testimonial-grid,
  .why-choose-grid,
  .contact-layout-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .founder-image-card {
    height: 300px;
  }

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

  .contact-form-panel {
    padding: 24px;
  }

  /* Hero responsiveness on tablet */
  .hero {
    padding: 110px 0 80px 0;
  }

  .slide-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .slide-desc {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }

  .hero-form-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .directory-list {
    grid-template-columns: 1fr;
  }

  .directory-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn {
    text-align: center;
  }

  /* Hero responsiveness on mobile */
  .hero {
    padding: 100px 0 70px 0;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slide-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .slide-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-form-card {
    padding: 20px 16px;
  }

  .hero-form-card .form-header h3 {
    font-size: 1.3rem;
  }
}

/* Reduced Motion Settings */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-delay: 0s !important;
    transition-delay: 0s !important;
    transition-duration: 0s !important;
  }

  .hero-slide.is-active .hero-bg {
    animation: none !important;
  }
}

/* Page Header Section */
.page-header {
  position: relative;
  background: var(--primary-dark);
  color: var(--white);
  padding: 160px 0 90px 0;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(42, 160, 86, 0.15), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(4, 36, 77, 0.5), transparent 50%);
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-header .eyebrow {
  margin-bottom: 16px;
  background: rgba(42, 160, 86, 0.15);
  color: var(--accent);
  border: 1px solid rgba(42, 160, 86, 0.25);
}

/* Horizontal Category Directory Layout */
.directory-layout {
  display: block;
}

.directory-sidebar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
}

.directory-sidebar .tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.directory-sidebar .tab-btn svg {
  transition: var(--transition);
}

.directory-sidebar .tab-btn:hover {
  color: var(--primary);
  background: var(--bg-light);
}

.directory-sidebar .tab-btn.active {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(4, 36, 77, 0.15);
}

.directory-sidebar .tab-btn.active svg {
  color: var(--accent);
}

.directory-contents {
  min-width: 0;
}

.directory-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.directory-service-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.directory-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: var(--transition);
}

.directory-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42, 160, 86, 0.2);
}

.directory-service-card:hover::before {
  height: 100%;
}

.dsc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dsc-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(42, 160, 86, 0.08);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.dsc-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  font-family: var(--font-headings);
}

.directory-service-card h4 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  line-height: 1.4;
  font-weight: 700;
  margin: 0;
}

.directory-service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.dsc-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-top: 8px;
  transition: var(--transition);
}

.dsc-more-link svg {
  transition: var(--transition);
}

.dsc-more-link:hover {
  color: var(--primary);
}

.dsc-more-link:hover svg {
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .directory-sidebar {
    flex-direction: row;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 12px;
    gap: 8px;
    white-space: nowrap;
  }

  .directory-sidebar .tab-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* Modal Overlay Styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 36, 77, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  width: 90%;
  max-width: 460px;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.is-open .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary);
}

.modal-header {
  margin-bottom: 28px;
}

.modal-header h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin: 8px 0;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.modal-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.modal-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.modal-form input,
.modal-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  color: var(--text-color);
  font-size: 0.95rem;
  transition: var(--transition);
}

.modal-form input:focus,
.modal-form select:focus {
  background: var(--white);
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(42, 160, 86, 0.15);
}

/* Responsive Footer Extensions */
@media (max-width: 768px) {
  .footer-cta-banner {
    flex-direction: column;
    padding: 36px 24px;
    text-align: center;
    gap: 28px;
    margin-bottom: 48px;
  }
  .cta-banner-text h2 {
    font-size: 1.65rem;
  }
  .cta-banner-text p {
    font-size: 0.92rem;
  }
  .cta-banner-buttons {
    width: 100%;
  }
  .cta-banner-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .contact-item-card {
    padding: 12px;
    gap: 12px;
  }
  .copyright-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .copyright-links {
    justify-content: center;
    width: 100%;
  }
}