/* --- Font Declarations --- */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../assets/fonts/BricolageGrotesque-VariableFont_opsz,wdth,wght.ttf') format('truetype-variations'),
    url('../assets/fonts/BricolageGrotesque-VariableFont_opsz,wdth,wght.ttf') format('truetype');
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../assets/fonts/Manrope-VariableFont_wght.ttf') format('truetype-variations'),
    url('../assets/fonts/Manrope-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 800;
  font-display: swap;
}

/* --- Root Variables & Design System --- */
:root {
  /* Color Palette derived from SC DMC Logo */
  --primary-emerald: #006B68;
  --primary-emerald-dark: #004D4A;
  --primary-emerald-deeper: #032A28;
  --primary-emerald-light: #009692;
  --primary-emerald-glow: rgba(0, 107, 104, 0.15);

  --gold-accent: #D4AF37;
  --gold-light: #F0D685;
  --gold-dark: #9A7B38;
  --gold-gradient: linear-gradient(135deg, #E5C158 0%, #D4AF37 50%, #A3822B 100%);
  --emerald-gradient: linear-gradient(135deg, #004D4A 0%, #006B68 50%, #008E89 100%);
  --dark-hero-gradient: linear-gradient(180deg, rgba(3, 42, 40, 0.85) 0%, rgba(3, 42, 40, 0.95) 100%);

  --bg-main: #F8FAF9;
  --bg-card: #FFFFFF;
  --bg-alt: #F0F5F4;
  --bg-dark: #041E1D;
  --bg-dark-card: #082927;

  --text-dark: #0F1E1D;
  --text-muted: #526361;
  --text-light: #F1F7F6;
  --text-light-muted: #A3B8B6;

  --border-light: rgba(0, 107, 104, 0.12);
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-dark: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Elevation Shadows & Transitions */
  --shadow-sm: 0 4px 12px rgba(0, 50, 48, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 50, 48, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 50, 48, 0.14);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Global Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-emerald-deeper);
  line-height: 1.2;
  font-weight: 700;
}

p {
  color: var(--text-muted);
}

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

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

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 6rem 0;
}

/* --- Typography & Badges --- */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(0, 107, 104, 0.08);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: var(--primary-emerald);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.badge-tag.gold {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--border-gold);
  color: var(--gold-dark);
}

.section-title-wrap {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-emerald-deeper);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--emerald-gradient);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 107, 104, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 107, 104, 0.45);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--primary-emerald-deeper);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  border-color: var(--primary-emerald);
  color: var(--primary-emerald);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-emerald);
  color: #FFFFFF;
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  background: transparent;
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--primary-emerald-deeper);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.navbar-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: #FFFFFF;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-accent);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--gold-light);
}

.navbar.scrolled .nav-link:hover {
  color: var(--primary-emerald);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Language Switcher Dropdown */
.lang-switcher-dropdown {
  position: relative;
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.navbar.scrolled .lang-switcher-btn {
  background: var(--bg-alt);
  border-color: var(--border-light);
  color: var(--text-dark);
}

.lang-switcher-btn:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 155px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 1050;
  padding: 0.4rem 0;
  list-style: none;
}

.lang-switcher-dropdown:hover .lang-dropdown-menu,
.lang-switcher-dropdown:focus-within .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.lang-dropdown-menu li a:hover,
.lang-dropdown-menu li a.active {
  background: var(--primary-emerald-glow);
  color: var(--primary-emerald-deeper);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #FFFFFF;
  cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
  color: var(--primary-emerald-deeper);
}

/* --- Hero Banner --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: var(--bg-dark);
  overflow: hidden;
  color: #FFFFFF;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: brightness(0.9) contrast(1.1);
  transform: scale(1.05);
  animation: heroPulse 20s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 42, 40, 0.92) 0%, rgba(4, 30, 29, 0.85) 60%, rgba(0, 107, 104, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.hero-tag {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-accent);
  color: var(--gold-light);
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  margin-bottom: 40px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 107, 104, 0.4);
  border: 1px solid var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.hero-badge-text h4 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
}

.hero-badge-text p {
  color: var(--text-light-muted);
  font-size: 0.85rem;
}

/* --- Global DMC Group At A Glance --- */
.glance-section {
  background: var(--bg-dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold-accent);
}

.glance-bg-shape {
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 107, 104, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.glance-header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 4rem auto;
}

.glance-header h3.tagline {
  color: var(--gold-accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.glance-header h2 {
  color: #FFFFFF;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.glance-header p.glance-desc {
  font-size: 1.2rem;
  color: var(--text-light-muted);
  line-height: 1.8;
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.glance-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.glance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.glance-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.glance-card:hover::before {
  opacity: 1;
}

.glance-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}

.glance-title {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.glance-info {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Who We Are & Mission / Vision --- */
.about-section {
  background: var(--bg-main);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition);
}

.about-image-wrap:hover .about-img {
  transform: scale(1.03);
}

.about-overlay-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(3, 42, 40, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-accent);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  color: #FFFFFF;
  max-width: 320px;
}

.about-overlay-badge h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.about-overlay-badge p {
  color: var(--text-light-muted);
  font-size: 0.85rem;
}

.about-tabs-nav {
  display: flex;
  gap: 0.8rem;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 2rem;
}

.about-tab-btn {
  background: none;
  border: none;
  padding: 0.8rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.about-tab-btn.active {
  color: var(--primary-emerald-deeper);
}

.about-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-emerald);
  border-radius: 3px 3px 0 0;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-pane.active {
  display: block;
}

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

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

.tab-pane h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-emerald-deeper);
}

.tab-pane p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--primary-emerald-deeper);
}

.feature-list li i {
  color: var(--gold-dark);
  font-size: 1.1rem;
}

/* --- Services Section --- */
.services-section {
  background: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 107, 104, 0.3);
}

.service-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.12);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--primary-emerald-glow);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--emerald-gradient);
  color: #FFFFFF;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary-emerald-deeper);
}

.service-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-emerald);
}

/* --- Our Advantage Section --- */
.advantage-section {
  background: var(--bg-main);
  position: relative;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.advantage-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  position: relative;
  transition: var(--transition);
}

.advantage-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

.advantage-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.advantage-box:hover::after {
  width: 80%;
}

.adv-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.advantage-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--primary-emerald-deeper);
}

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

/* --- Pipeline & Network Section --- */
.network-section {
  background: var(--bg-dark);
  color: #FFFFFF;
}

.network-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.network-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-dark);
}

.destinations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.dest-chip {
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dest-chip.active-hub {
  background: var(--emerald-gradient);
  border-color: var(--primary-emerald-light);
  font-weight: 700;
}

.dest-chip.pipeline {
  border-color: var(--border-gold);
}

.dest-chip i {
  color: var(--gold-light);
}

/* --- Contact & Map Section --- */
.contact-section {
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.contact-grid>div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-grid .contact-info-card {
  height: 100%;
  margin-bottom: 0;
  padding: 2.8rem 2.2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.contact-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex-grow: 1;
  justify-content: flex-start;
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin: 20px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-emerald-glow);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  color: var(--primary-emerald-deeper);
  margin-bottom: 0.2rem;
}

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

.contact-form-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.8rem 2.2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-emerald-deeper);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid rgba(0, 107, 104, 0.2);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  background: var(--bg-main);
}

.form-control:focus {
  border-color: var(--primary-emerald);
  box-shadow: 0 0 0 3px var(--primary-emerald-glow);
  background: #FFFFFF;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.map-container {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-top: 3rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: #FFFFFF;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid var(--border-dark);
}

/* Footer Newsletter Box */
.footer-newsletter-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.2rem 2.5rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-newsletter-content h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.footer-newsletter-content p {
  color: var(--text-light-muted);
  font-size: 0.92rem;
  margin: 0;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 380px;
  flex-grow: 1;
  max-width: 520px;
}

.footer-newsletter-input {
  flex-grow: 1;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.footer-newsletter-input::placeholder {
  color: var(--text-light-muted);
}

.footer-newsletter-input:focus {
  border-color: var(--gold-accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 2.2fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-services-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  max-width: 340px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-accent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-light-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact-list li i {
  color: var(--gold-accent);
  font-size: 0.95rem;
  width: 18px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--text-light-muted);
  transition: var(--transition);
}

.footer-contact-list a:hover {
  color: var(--gold-light);
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social-icon:hover {
  background: var(--gold-gradient);
  color: #032A28;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-light-muted);
  font-size: 0.85rem;
}

/* --- Toast Notification --- */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-emerald-deeper);
  color: #FFFFFF;
  border-left: 4px solid var(--gold-accent);
  padding: 1rem 1.6rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.toast-msg.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .glance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .about-grid,
  .network-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    color: var(--text-dark);
  }

  .mobile-toggle {
    display: block;
  }

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

  .page-hero-title {
    font-size: 2.2rem;
  }

  .timeline-wrap::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-dot {
    left: 11px !important;
  }

  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SUBPAGE & ABOUT US SPECIFIC STYLES
   ========================================================================== */

/* Page Hero Banner */
.page-hero {
  position: relative;
  background: var(--primary-emerald-deeper);
  padding: 8rem 0 4rem 0;
  overflow: hidden;
  color: var(--text-light);
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.7) contrast(1.1);
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(3, 42, 40, 0.7) 0%, rgba(4, 30, 29, 0.95) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--gold-light);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

.breadcrumb i {
  font-size: 0.75rem;
  color: var(--border-gold);
}

.page-hero-title {
  font-size: 3rem;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero-title span {
  color: var(--gold-accent);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero-desc {
  font-size: 1.2rem;
  max-width: 760px;
  color: var(--text-light-muted);
  line-height: 1.7;
}

/* Values Card Matrix */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-emerald);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.value-card:hover::before {
  background: var(--gold-accent);
}

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(0, 107, 104, 0.08);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--gold-gradient);
  color: var(--primary-emerald-deeper);
}

.value-title {
  font-size: 1.2rem;
  color: var(--primary-emerald-deeper);
  margin-bottom: 0.75rem;
}

.value-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.team-section {
  background: var(--bg-alt);

}

/* Corporate Timeline Roadmap */
.timeline-section {
  background: var(--bg-alt);
  position: relative;
}

.timeline-wrap {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0 auto;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 2.5rem 2.5rem 2.5rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-accent);
  border: 4px solid var(--bg-card);
  box-shadow: 0 0 0 3px var(--primary-emerald);
  z-index: 5;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-card {
  background: var(--bg-card);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.12);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.timeline-title {
  font-size: 1.15rem;
  color: var(--primary-emerald-deeper);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Executive Leadership Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.team-avatar-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--primary-emerald-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar-icon {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.2);
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-avatar-img {
  transform: scale(1.06);
}

.team-role-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(4, 30, 29, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-gold);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  color: var(--primary-emerald-deeper);
  margin-bottom: 0.25rem;
}

.team-title {
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.team-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bg-alt);
  padding-top: 0.8rem;
}

.team-badge-text {
  font-size: 0.78rem;
  color: var(--primary-emerald);
  font-weight: 600;
}

.team-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 107, 104, 0.08);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.team-social-link:hover {
  background: var(--gold-accent);
  color: var(--primary-emerald-deeper);
}

/* Dark Corporate Stats Band */
.corp-stats-band {
  background: var(--emerald-gradient);
  color: #FFFFFF;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.corp-stats-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.corp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.corp-stat-item h3 {
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.corp-stat-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Call to Action Box */
.cta-banner {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-banner-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {

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

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

/* ==========================================================================
   SERVICES & CONTACT US SPECIFIC STYLES
   ========================================================================== */

/* Detailed Service Cards Grid */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-detail-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.service-detail-card:hover::after {
  opacity: 1;
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(0, 107, 104, 0.08);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-detail-card:hover .service-detail-icon {
  background: var(--gold-gradient);
  color: var(--primary-emerald-deeper);
}

.service-detail-title {
  font-size: 1.35rem;
  color: var(--primary-emerald-deeper);
  margin-bottom: 0.85rem;
}

.service-detail-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-detail-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  border-top: 1px dashed var(--border-light);
  padding-top: 1.25rem;
}

.service-detail-features li {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-detail-features li i {
  color: var(--gold-dark);
  font-size: 0.85rem;
}

/* Service Process Workflow */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-accent);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.process-step-title {
  font-size: 1.15rem;
  color: var(--primary-emerald-deeper);
  margin-bottom: 0.6rem;
}

.process-step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Info Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.25rem auto;
}

.contact-info-title {
  font-size: 1.1rem;
  color: var(--primary-emerald-deeper);
  margin-bottom: 0.5rem;
}

.contact-info-detail {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-info-detail a {
  color: var(--primary-emerald);
  font-weight: 600;
}

.contact-info-detail a:hover {
  color: var(--gold-dark);
}

/* Department Matrix */
.dept-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.dept-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.dept-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.dept-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--primary-emerald-glow);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.dept-info h3 {
  font-size: 1.2rem;
  color: var(--primary-emerald-deeper);
  margin-bottom: 0.4rem;
}

.dept-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.dept-email {
  font-size: 0.9rem;
  color: var(--primary-emerald);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dept-email:hover {
  color: var(--gold-dark);
}

/* FAQ Accordion */
.faq-wrap {
  max-width: 860px;
  margin: 3rem auto 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.75rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-emerald-deeper);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--gold-dark);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.75rem;
  background: var(--bg-main);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.75rem 1.5rem 1.75rem;
  transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {

  .service-detail-grid,
  .process-grid,
  .contact-cards-grid,
  .dept-matrix-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BLOG LISTING & BLOG DETAILS SPECIFIC STYLES
   ========================================================================== */

/* Search Bar */
.blog-controls-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.blog-search-box {
  position: relative;
  width: 100%;
}

.blog-search-input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.blog-search-input:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.blog-search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Featured Post Card */
.featured-post-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 3.5rem;
  transition: var(--transition);
}

.featured-post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.featured-post-img-wrap {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.featured-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.featured-post-card:hover .featured-post-img {
  transform: scale(1.05);
}

.featured-post-content {
  padding: 2.5rem 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post-title {
  font-size: 1.8rem;
  color: var(--primary-emerald-deeper);
  margin: 0.8rem 0 1rem 0;
  line-height: 1.3;
}

.featured-post-title a:hover {
  color: var(--gold-dark);
}

.featured-post-excerpt {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Blog Grid & Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.blog-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(4, 30, 29, 0.85);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-card-meta i {
  color: var(--gold-dark);
}

.blog-card-title {
  font-size: 1.2rem;
  color: var(--primary-emerald-deeper);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-title a:hover {
  color: var(--gold-dark);
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.blog-author-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-emerald);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.read-more-link {
  color: var(--primary-emerald);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

/* Pagination Bar */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary-emerald);
  color: #FFFFFF;
  border-color: var(--primary-emerald-dark);
}

/* Newsletter Section */
.newsletter-box {
  background: var(--emerald-gradient);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.newsletter-box h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.newsletter-form {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  gap: 0.8rem;
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

/* Article Details Page Styling */
.article-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  margin-top: 3rem;
}

.article-main-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-main-body h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem 0;
  color: var(--primary-emerald-deeper);
}

.article-main-body h3 {
  font-size: 1.4rem;
  margin: 1.6rem 0 0.8rem 0;
  color: var(--primary-emerald-deeper);
}

.article-main-body p {
  margin-bottom: 1.4rem;
  color: #334155;
}

.article-blockquote {
  background: rgba(0, 107, 104, 0.06);
  border-left: 4px solid var(--gold-accent);
  padding: 1.5rem 1.8rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary-emerald-deeper);
  font-weight: 500;
}

.article-takeaways {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  color: #FFFFFF;
  margin: 2.2rem 0;
}

.article-takeaways h4 {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.article-takeaways ul {
  list-style: none;
  padding: 0;
}

.article-takeaways li {
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
  color: var(--text-light-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.article-takeaways li i {
  color: var(--gold-accent);
  margin-top: 0.3rem;
}

/* Author Bio Card */
.author-bio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 3rem 0;
  box-shadow: var(--shadow-sm);
}

.author-bio-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-emerald-deeper);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.author-bio-info h4 {
  font-size: 1.25rem;
  color: var(--primary-emerald-deeper);
  margin-bottom: 0.25rem;
}

.author-bio-role {
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.author-bio-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 1.15rem;
  color: var(--primary-emerald-deeper);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(0, 107, 104, 0.1);
}

.toc-list {
  list-style: none;
  padding: 0;
}

.toc-list li {
  margin-bottom: 0.75rem;
}

.toc-list a {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.toc-list a:hover {
  color: var(--primary-emerald);
  transform: translateX(4px);
}

.sidebar-cta-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  color: #FFFFFF;
  text-align: center;
}

.sidebar-cta-card h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.sidebar-cta-card p {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .featured-post-card {
    grid-template-columns: 1fr;
  }

  .featured-post-content {
    padding: 2rem;
  }

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

  .article-layout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .author-bio-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   AOS ANIMATION FINE-TUNING & MOBILE OVERRIDE (UNIPULSE STYLE)
   ========================================================================== */

/* Subtle Section Separator Line */
section {
  position: relative;
}

section:not(.hero-section):not(.page-hero)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  z-index: 10;
}

/* Disable All Animations on Mobile Devices */
@media (max-width: 768px) {
  [data-aos],
  [data-aos].aos-animate,
  .reveal-on-scroll,
  .reveal-left,
  .reveal-right,
  .reveal-zoom,
  section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}