/* ==========================================================================
   Dexon Advisory - Design System & Stylesheet
   Primary: #0f2747 | Secondary: #b08d57 | Base Text: #757a86
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette */
  --primary: #0f2747;
  --primary-dark: #0a1b32;
  --primary-light: #183a67;
  --secondary: #b08d57;
  --secondary-hover: #967441;
  --secondary-light: #f5eedf;
  --base-text: #757a86;
  --heading-text: #0f2747;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  
  /* Typography */
  --font-heading: 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Layout */
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(15, 39, 71, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 39, 71, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 39, 71, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 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);
  color: var(--base-text);
  background-color: var(--light-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-text);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 82px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  position: relative;
  padding: 0.5rem 0;
}

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

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

.nav-link.active {
  color: var(--secondary);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

/* Hero Section with Video Background */
.hero-section {
  position: relative;
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 6.5rem 0 7.5rem;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: center;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 39, 71, 0.88) 0%, rgba(10, 27, 50, 0.82) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--secondary);
}

.hero-content p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(176, 141, 87, 0.2);
  border: 1px solid rgba(176, 141, 87, 0.5);
  color: var(--secondary-light);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-card-preview {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.hero-card-preview h3 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero-card-preview p {
  color: #e2e8f0;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

.stat-item .num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-item .label {
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* Page Banner (Subpages) */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #16365f 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.page-banner h1 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: var(--secondary-light);
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--base-text);
  font-size: 1.05rem;
}

/* Cards & Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(176, 141, 87, 0.4);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--secondary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--secondary);
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--base-text);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Contact Section & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(176, 141, 87, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--secondary);
}

.info-content .label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-content .value {
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-text);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--heading-text);
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
}

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

/* Map Section */
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #25d366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.7;
  z-index: -1;
  animation: pulse-wave 2s infinite;
}

@keyframes pulse-wave {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

/* Site Footer */
.site-footer {
  background-color: var(--primary);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 150px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: #cbd5e1;
  font-size: 0.95rem;
}

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

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-contact-item:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(176, 141, 87, 0.15);
  border: 1px solid rgba(176, 141, 87, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--secondary);
  fill: none;
}

.footer-reg-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1rem;
}

.footer-reg-box .reg-title {
  color: var(--secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.footer-reg-box .reg-val {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
}

/* Comprehensive Responsive Media Queries (Desktop, Tablet, Mobile) */
@media (max-width: 992px) {
  .hero-section {
    padding: 5rem 0;
    min-height: auto;
  }
  
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-card-preview {
    padding: 1.75rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .nav-wrapper {
    height: 90px;
  }

  .brand-logo img {
    height: 66px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Language Switcher Component */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
  margin-left: 0.5rem;
}

.lang-btn {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  color: var(--base-text);
  text-decoration: none;
  transition: var(--transition);
}

.lang-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 39, 71, 0.2);
}

.lang-btn:hover:not(.active) {
  color: var(--primary);
}

/* Image Card & Visual Assets System (Trust & Authority) */
.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  margin: -2.25rem -2.25rem 1.5rem -2.25rem;
  width: calc(100% + 4.5rem);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-img-badge {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background: rgba(15, 39, 71, 0.88);
  backdrop-filter: blur(8px);
  color: var(--secondary-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(176, 141, 87, 0.4);
}

/* Path Selector (Interactive Filters) */
.path-selector-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.path-selector-bar {
  display: inline-flex;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 5px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  gap: 0.5rem;
  flex-wrap: wrap;
}

.path-tab {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  color: var(--primary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.path-tab:hover {
  background: rgba(15, 39, 71, 0.05);
}

.path-tab.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

/* Trust Banner Block */
.trust-banner-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 3rem;
}

.trust-banner-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.trust-banner-content {
  padding: 2.5rem;
}

@media (max-width: 992px) {
  .trust-banner-block {
    grid-template-columns: 1fr;
  }
  .trust-banner-img {
    height: 220px;
  }
}

/* ==========================================================================
   Key Leadership Team (Key Persons) Component
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 980px;
  margin: 2.5rem auto 0 auto;
  align-items: stretch;
}

.team-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(176, 141, 87, 0.5);
}

.team-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5; /* Standard 4:5 portrait ratio */
  overflow: hidden;
  background: linear-gradient(135deg, #0a1b32 0%, #0f2747 100%);
}

.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* 0% top position - 100% visible heads! */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.team-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 39, 71, 0.88);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(176, 141, 87, 0.45);
  box-shadow: 0 4px 14px rgba(15, 39, 71, 0.35);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.team-card-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-card-name {
  font-size: 1.55rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.3px;
}

.team-card-role {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.team-card-focus {
  display: inline-block;
  background-color: var(--secondary-light);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--secondary);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.team-card-bio {
  font-size: 0.92rem;
  color: var(--base-text);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.team-achievements-box {
  background-color: #f8fafc;
  border-top: 1px solid var(--border-color);
  padding: 1.25rem 1.5rem;
  margin: auto -1.5rem -1.75rem -1.5rem;
}

.team-achievements-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team-achievements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.team-achievement-item {
  font-size: 0.86rem;
  color: var(--heading-text);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.team-achievement-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  color: var(--secondary);
}

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

/* ==========================================================================
   Social Media Buttons Component
   ========================================================================== */
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--secondary);
  border: 1px solid rgba(176, 141, 87, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

.social-icon-btn:hover {
  background: var(--secondary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(176, 141, 87, 0.35);
  border-color: var(--secondary);
}

.social-icon-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.35);
}

.social-icon-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.social-icon-btn.email:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
  color: #ffffff;
}

/* ==========================================================================
   Reviews / Testimonials Component (Slider & Carousel)
   ========================================================================== */
.reviews-slider-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
  padding: 0.5rem 0.25rem 1rem 0.25rem;
}

.reviews-slider-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.reviews-slider-track .review-card {
  flex: 0 0 calc((100% - 3.5rem) / 3);
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .reviews-slider-track .review-card {
    flex: 0 0 calc((100% - 1.75rem) / 2);
  }
}

@media (max-width: 640px) {
  .reviews-slider-track .review-card {
    flex: 0 0 100%;
  }
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
  box-shadow: 0 6px 16px rgba(176, 141, 87, 0.35);
  transform: translateY(-2px);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  background: #ffffff;
  color: #94a3b8;
  border-color: var(--border-color);
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(176, 141, 87, 0.4);
}

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

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b; /* Gold Stars */
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--secondary-light);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

.review-text {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border-color);
  margin-top: auto;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(15, 39, 71, 0.2);
}

.review-author-info .name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.review-author-info .role {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 2px;
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   FAQ Accordion Component
   ========================================================================== */
.faq-container {
  max-width: 900px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: 0 4px 14px rgba(176, 141, 87, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-question:hover {
  color: var(--secondary-hover);
  background: #f8fafc;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--secondary);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 1.5rem;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0.25rem 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  margin: 0;
}

/* ==========================================================================
   Bottom WhatsApp Call-To-Action (CTA) Component
   ========================================================================== */
.cta-whatsapp-section {
  background: linear-gradient(135deg, #0b1d38 0%, #15325b 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(176, 141, 87, 0.3);
}

.cta-whatsapp-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-whatsapp-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.cta-whatsapp-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-whatsapp-desc {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.7;
}

.cta-whatsapp-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-wa svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-wa-business {
  background: #25d366;
  color: #ffffff;
  border: 1px solid #25d366;
}

.btn-wa-business:hover {
  background: #20bd5a;
  border-color: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.btn-wa-personal {
  background: var(--secondary);
  color: #ffffff;
  border: 1px solid var(--secondary);
}

.btn-wa-personal:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(176, 141, 87, 0.4);
  color: #ffffff;
}

@media (max-width: 640px) {
  .cta-whatsapp-title {
    font-size: 1.65rem;
  }
  .cta-whatsapp-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-wa {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Cookie & Privacy Consent Banner Component
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  width: calc(100% - 3rem);
  background: rgba(15, 39, 71, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(176, 141, 87, 0.4);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  z-index: 9998;
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cookie-banner.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cookie-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.cookie-desc {
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-btn-accept {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

.cookie-btn-essential {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.cookie-btn-essential:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #ffffff !important;
}

/* Mobile Responsiveness for Cookie Banner */
@media (max-width: 640px) {
  .cookie-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: none;
    padding: 1.25rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
}

/* ==========================================================================
   Trust Banner & SSM Reg Badge Component (Full Width Cover Banner)
   ========================================================================== */
.trust-banner-block {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
}

.trust-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.trust-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 39, 71, 0.94) 0%, rgba(15, 39, 71, 0.88) 60%, rgba(15, 39, 71, 0.75) 100%);
  z-index: 2;
}

.trust-banner-content {
  position: relative;
  z-index: 3;
  padding: 3rem 2.5rem;
  color: #ffffff;
  max-width: 850px;
}

.trust-title {
  font-size: 1.75rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.trust-desc {
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.trust-ssm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(176, 141, 87, 0.2);
  border: 1px solid rgba(176, 141, 87, 0.5);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
  backdrop-filter: blur(6px);
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
}

.trust-ssm-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--secondary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-banner-content {
    padding: 2rem 1.5rem;
  }

  .trust-title {
    font-size: 1.35rem;
  }

  .trust-desc {
    font-size: 0.9rem;
  }

  .trust-ssm-badge {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
    line-height: 1.4;
    word-break: break-word;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   Path Selector (Interactive Tab Filter Menu) Component
   ========================================================================== */
.path-selector-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  width: 100%;
}

.path-selector-bar {
  display: inline-flex;
  background: #f1f5f9;
  padding: 0.35rem;
  border-radius: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  gap: 0.4rem;
  max-width: 100%;
  box-sizing: border-box;
}

.path-tab {
  padding: 0.65rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.path-tab:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.6);
}

.path-tab.active {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 12px rgba(15, 39, 71, 0.25);
}

/* Mobile Responsiveness for Path Selector Tab Menu */
@media (max-width: 640px) {
  .path-selector-wrapper {
    margin-bottom: 1.75rem;
    padding: 0 0.5rem;
  }

  .path-selector-bar {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0.25rem;
    gap: 0.25rem;
    border-radius: 12px;
  }

  .path-tab {
    padding: 0.6rem 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
  }
}








