/* ============================================================
   ARK PRIVATE EQUITY — Master Stylesheet
   Version: 1.0.0
   Last Updated: 2026-06-12
   ============================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* --- Colors --- */
  --color-navy:        #0A2342;
  --color-navy-dark:   #071a33;
  --color-navy-light:  #143d6b;
  --color-gold:        #C9A227;
  --color-gold-dark:   #b08d1e;
  --color-gold-light:  rgba(201, 162, 39, 0.1);
  --color-white:       #FFFFFF;
  --color-light-gray:  #F5F7FA;
  --color-dark-gray:   #333333;
  --color-text:        #555555;
  --color-text-muted:  #666666;
  --color-error:       #e74c3c;
  --color-success:     #27ae60;

  /* --- Typography --- */
  --font-primary:      'Inter', sans-serif;
  --font-heading:      'Playfair Display', serif;
  --font-size-base:    16px;
  --line-height-base:  1.7;

  /* --- Spacing --- */
  --spacing-xs:        0.5rem;
  --spacing-sm:        1rem;
  --spacing-md:        1.5rem;
  --spacing-lg:        2rem;
  --spacing-xl:        3rem;
  --spacing-2xl:       4rem;
  --spacing-3xl:       5rem;
  --spacing-4xl:       6rem;

  /* --- Transitions --- */
  --transition-fast:   0.2s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.4s ease;
  --transition-smooth: 0.8s ease;

  /* --- Shadows --- */
  --shadow-sm:         0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md:         0 5px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg:         0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl:         0 15px 50px rgba(0, 0, 0, 0.15);

  /* --- Border Radius --- */
  --radius-sm:         4px;
  --radius-md:         6px;
  --radius-lg:         8px;
  --radius-xl:         12px;
  --radius-full:       50%;
}

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-dark-gray);
  line-height: var(--line-height-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-primary);
}

/* ===== UTILITY CLASSES ===== */

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Section Spacing --- */
.section-padding {
  padding: 6rem 0;
}

/* --- Section Background --- */
.section-bg {
  background: var(--color-light-gray);
}

/* --- Section Title --- */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1.2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
}

/* --- Section Subtitle --- */
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Dark Section Overrides --- */
.dark-section {
  background: var(--color-navy);
}

.dark-section .section-title {
  color: var(--color-white);
}

.dark-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-gold);
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 2px solid var(--color-gold);
  cursor: pointer;
  transition: background var(--transition-base),
              color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
}

/* --- Button Group --- */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Highlight Text --- */
.highlight-text {
  color: var(--color-gold);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-base),
              box-shadow var(--transition-base);
}

.header.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--color-gold);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  border-radius: var(--radius-sm);
}

.logo-text h1 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.header.scrolled .logo-text h1 {
  color: var(--color-navy);
}

.logo-text span {
  font-size: 0.7rem;
  color: var(--color-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

/* --- Navigation Menu --- */
.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color var(--transition-base);
}

.header.scrolled .nav-menu a {
  color: var(--color-navy);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--color-gold);
}

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

.nav-menu a.active::after {
  width: 100%;
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition-base),
              opacity var(--transition-base);
  border-radius: 2px;
  display: block;
}

.header.scrolled .hamburger span {
  background: var(--color-navy);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 35, 66, 0.92), rgba(10, 35, 66, 0.75));
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  color: var(--color-white);
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  opacity: 0;
  animation: slideUp 1s ease 0.2s forwards;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: slideUp 1s ease 0.4s forwards;
}

.hero .btn-group {
  margin-top: 0.5rem;
  opacity: 0;
  animation: slideUp 1s ease 0.6s forwards;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  overflow: hidden;
  padding-top: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 35, 66, 0.92), rgba(10, 35, 66, 0.75));
  z-index: 1;
}

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

.page-hero h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--color-white);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  font-size: 0.9rem;
}

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

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== ABOUT SECTION (Home) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-image img {
  width: 100%;
  height: auto;
}

/* --- About Image Collage (Inner Pages) --- */
.about-image-collage {
  position: relative;
  padding-right: 40px;
  padding-bottom: 40px;
}

.about-image-collage .img-main {
  width: 85%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-image-collage .img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  border-radius: var(--radius-lg);
  border: 6px solid var(--color-white);
  box-shadow: var(--shadow-xl);
  z-index: 2;
  transition: transform var(--transition-base);
}

.about-image-collage:hover .img-sub {
  transform: translateY(-5px);
}

.about-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image .experience-badge h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-image .experience-badge p {
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.about-content h3 {
  font-size: 1.8rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

/* --- About Stats --- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-gold);
}

.stat-item .stat-number {
  font-size: 2.2rem;
  color: var(--color-navy);
  font-weight: 700;
  font-family: var(--font-heading);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: block;
}

/* ===== WHY CHOOSE US / FEATURES SECTION ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
  border-bottom: 3px solid transparent;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--color-gold-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-gold);
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 0.8rem;
}

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

/* ===== INVESTMENT SECTORS SECTION ===== */
.sectors-section {
  background: var(--color-navy);
}

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

.sector-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--color-white);
  transition: background var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-base);
}

.sector-card:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

.sector-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-card h3 {
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.sector-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== VALUE CREATION / PROCESS SECTION ===== */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-gold);
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.step-number {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: var(--color-gold);
  color: var(--color-navy);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  text-align: center;
  padding: 5rem 2rem;
  color: var(--color-white);
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}

/* ===== SERVICES PAGE ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card-header {
  padding: 2rem 2rem 1rem;
  position: relative;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--color-gold-light);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--color-navy);
}

.service-card-body {
  padding: 0 2rem 2rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.service-benefits {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-benefits li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--color-text);
}

.service-benefits li::before {
  content: '✓';
  color: var(--color-gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.service-card .learn-more {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-base),
              color var(--transition-base);
}

.service-card .learn-more:hover {
  gap: 0.8rem;
}

/* ===== ABOUT PAGE SPECIFICS ===== */

/* --- Mission & Vision --- */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mv-card {
  padding: 3rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.mv-card.mission {
  background: var(--color-navy);
  color: var(--color-white);
}

.mv-card.vision {
  background: var(--color-gold);
  color: var(--color-navy);
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- Core Values --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
  border-left: 4px solid var(--color-gold);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

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

/* --- Company Timeline --- */
#journey {
  background: linear-gradient(180deg, var(--color-white) 0%, #edf1f7 50%, var(--color-white) 100%);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--color-gold) 0%, var(--color-navy-light) 100%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  width: 46px;
  height: 46px;
  background: var(--color-navy-dark);
  border: 3px solid var(--color-gold);
  border-radius: var(--radius-full);
  position: absolute;
  left: calc(50% - 23px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--color-gold);
  transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}

.timeline-dot i {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.15) rotate(5deg);
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
}

.timeline-content {
  width: 44%;
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 35, 66, 0.05);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -12px;
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent var(--color-white);
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -12px;
  border-width: 10px 12px 10px 0;
  border-color: transparent var(--color-white) transparent transparent;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-gold-light);
}

.timeline-content .year {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
}

.timeline-content h3 {
  color: var(--color-navy);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-family: var(--font-primary);
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

/* --- Team Section --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
  text-align: center;
}

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

.team-image {
  height: 280px;
  background: var(--color-navy);
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}

.team-info .position {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

.team-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  transition: background var(--transition-base),
              color var(--transition-base);
}

.team-social a:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

/* ===== CONTACT PAGE ===== */

/* --- Contact Grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

/* --- Contact Info Panel --- */
.contact-info {
 background:
        linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.0)),
        url('../img/contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  color: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-xl);
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

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

.info-item .info-icon {
  width: 45px;
  height: 45px;
  background: rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.info-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Contact Form --- */
.contact-form-wrapper {
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-navy);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base);
  outline: none;
  color: var(--color-dark-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* --- Form Validation States --- */
.form-group .error-message {
  color: var(--color-error);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: none;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--color-error);
}

.form-group.error .error-message {
  display: block;
}

/* --- Form Success State --- */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 80px;
  height: 80px;
  background: rgba(39, 174, 96, 0.1);
  border-radius: var(--radius-full);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-success);
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

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

/* --- Map Placeholder --- */
.map-placeholder {
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-navy);
  transition: color var(--transition-base);
}

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

.faq-question .faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--color-navy-dark);
  color: var(--color-white);
  padding-top: 5rem;
}

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

.footer-col h3 {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-col h3::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* --- Footer About Column --- */
.footer-about p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--transition-base),
              color var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

/* --- Footer Links --- */
.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base),
              padding-left var(--transition-base);
}

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

/* --- Footer Contact Column --- */
.footer-contact .contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact .contact-item i {
  color: var(--color-gold);
  margin-top: 0.2rem;
}

.footer-contact .contact-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Footer Bottom --- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== ANIMATIONS & KEYFRAMES ===== */

/* --- Reveal on Scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* --- Fade In Utility --- */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

/* --- Keyframes --- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE — 1024px ===== */
@media (max-width: 1024px) {
  .about-grid,
  .mission-vision-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero h2 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {

  /* --- Mobile Navigation --- */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right var(--transition-slow);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    color: var(--color-white) !important;
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  /* --- Hero Adjustments --- */
  .hero {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  /* --- Grid Collapses --- */
  .features-grid,
  .sectors-grid,
  .services-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  /* --- Process Timeline Mobile --- */
  .process-timeline::before {
    left: 20px;
  }

  /* --- About Timeline Mobile --- */
  .timeline::before {
    left: 20px;
    transform: none;
  }

  .timeline-item {
    flex-direction: row !important;
    margin-bottom: 2.5rem;
  }

  .timeline-content {
    width: calc(100% - 60px);
    padding: 1.8rem;
    margin-left: 40px;
  }

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

  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -12px;
    right: auto;
    border-width: 10px 12px 10px 0;
    border-color: transparent var(--color-white) transparent transparent;
  }

  /* --- Buttons Stack --- */
  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  /* --- Section Spacing --- */
  .section-padding {
    padding: 4rem 0;
  }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }
}
