/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  background: #fcf9f5;
  color: #1e1e2a;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}
a { text-decoration: none; }
ul { list-style: none; }

/* ===== COLORS (brighter orange-red accent) ===== */
:root {
  --dark: #1e1e2a;
  --orange-red: #d4652b;
  --light-bg: #fcf9f5;
  --white: #ffffff;
  --shadow: 0 20px 40px -12px rgba(0,0,0,0.08);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, .fancy {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-title {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--dark);
}
.section-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: #3d3d4a;
  max-width: 700px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  overflow: hidden;
}

/* ===== HEADER (100% STICKY) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--dark);
  padding: 16px 0;
  z-index: 99999;
  border-bottom: 3px solid var(--orange-red);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.brand:hover {
  transform: scale(1.02);
}

/* Logo - Matching Footer Style */
.logo-abbr {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--orange-red);
  color: var(--white);
  padding: 2px 12px;
  border-radius: 40px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 101, 43, 0.2);
}

.logo-abbr:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 101, 43, 0.4);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
  opacity: 0.95;
}

.brand-name:hover {
  color: var(--orange-red);
}
.nav-menu {
  display: flex;
  gap: 2rem;
  font-weight: 500;
  align-items: center;
}
.nav-menu a {
  color: #f0ece6;
  font-size: 0.95rem;
  transition: 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-red);
  transition: width 0.3s ease;
}
.nav-menu a:hover {
  color: var(--orange-red);
}
.nav-menu a:hover::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  transition: transform 0.3s ease;
  position: relative;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 4px;
  transition: 0.3s ease;
  position: absolute;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 18px;
}
.hamburger span:nth-child(3) {
  top: 26px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 18px;
  background: var(--orange-red);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
  background: var(--orange-red);
}
.hamburger:hover span {
  background: var(--orange-red);
}

/* ===== PUSH CONTENT DOWN ===== */
body {
  padding-top: 80px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 100px 0;
  margin-top: -80px;
  background: url('../images/1.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 30, 42, 0.82) 0%, rgba(30, 30, 42, 0.58) 50%, rgba(30, 30, 42, 0.72) 100%);
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 5s ease-in-out infinite reverse;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}
.hero-badge {
  display: inline-block;
  background: rgba(212, 101, 43, 0.15);
  border: 1px solid rgba(212, 101, 43, 0.3);
  color: var(--orange-red);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease 0.2s both;
}
.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  color: white;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero h1 span {
  color: var(--orange-red);
  text-shadow: 0 0 40px rgba(212, 101, 43, 0.3);
}
.hero p {
  font-size: 1.4rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.6s both;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.8s both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange-red);
  font-family: 'Playfair Display', serif;
}
.hero-stat-label {
  font-size: 0.85rem;
  opacity: 0.7;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease 1s both;
}
.btn {
  padding: 16px 44px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn i {
  font-size: 1rem;
}
.btn-primary {
  background: var(--orange-red);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(212, 101, 43, 0.35);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 40px rgba(212, 101, 43, 0.5);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: white;
  color: var(--dark);
  border-color: white;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
  cursor: pointer;
}
.hero-scroll-indicator i {
  font-size: 1.2rem;
  animation: bounceArrow 2s ease-in-out infinite;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}





/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--white);
  padding: 70px 0 50px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.02) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Column - Image */
.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover {
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.about-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover .about-image-img {
  transform: scale(1.05);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 30, 42, 0.15) 0%, rgba(30, 30, 42, 0.03) 100%);
  pointer-events: none;
}

/* Right Column - Content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-description {
  color: #555;
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.about-description:last-of-type {
  margin-bottom: 0;
}

.about-description.highlight-text {
  color: var(--dark);
  font-weight: 500;
  background: rgba(212, 101, 43, 0.05);
  padding: 20px 26px;
  border-radius: 18px;
  border-left: 4px solid var(--orange-red);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.about-description.highlight-text::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-cta {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-cta .btn-primary {
  padding: 16px 40px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-cta .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(212, 101, 43, 0.4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(0,0,0,0.1);
  padding: 16px 36px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* ===== ABOUT RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper {
    aspect-ratio: 16/9;
    max-height: 400px;
  }

  .about-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0 35px 0;
  }

  .about-wrapper {
    gap: 30px;
  }

  .about-image-wrapper {
    aspect-ratio: 4/3;
    max-height: 320px;
    border-radius: 22px;
  }

  .about-description {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 14px;
  }

  .about-description.highlight-text {
    padding: 16px 20px;
    font-size: 0.95rem;
    border-radius: 16px;
  }

  .about-cta {
    flex-direction: column;
    margin-top: 24px;
  }

  .about-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 0 25px 0;
  }

  .about-image-wrapper {
    aspect-ratio: 4/3;
    max-height: 260px;
    border-radius: 18px;
  }

  .about-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .about-description.highlight-text {
    padding: 14px 16px;
    font-size: 0.9rem;
    border-radius: 14px;
  }

  .about-cta .btn-primary,
  .about-cta .btn-outline-dark {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}




/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
  width: 100%;
}

/* ===== GRID SYSTEMS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  margin-top: 40px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 40px;
}

/* ===== MODEL SECTION ===== */
.model-section {
  background: var(--white);
  padding: 80px 0;
}

.model-header {
  margin-bottom: 40px;
}

.model-header .section-sub {
  max-width: 700px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 12px;
}

/* Challenge Cards - 4 cards grid */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.challenge-card {
  background: var(--light-bg);
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid rgba(212, 101, 43, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.challenge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange-red);
  border-radius: 4px 0 0 4px;
}

.challenge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: rgba(212, 101, 43, 0.2);
}

.challenge-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  color: var(--orange-red);
}

.challenge-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.challenge-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile Responsive for 4 cards */
@media (max-width: 768px) {
  .challenge-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Model Box */
.model-box {
  margin-top: 20px;
}

.model-box-inner {
  background: linear-gradient(135deg, #f8f6f2 0%, #f0ece6 100%);
  border-radius: 40px;
  padding: 50px 55px;
  border: 1px solid rgba(212, 101, 43, 0.06);
  position: relative;
  overflow: hidden;
}

/* Animated grid background overlay */
.model-box-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(212, 101, 43, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 101, 43, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.model-badge {
  display: inline-block;
  background: var(--orange-red);
  color: var(--white);
  padding: 4px 18px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.model-header-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.model-header-text p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
}

/* ===== HIGH-TECH MODEL FRAMEWORK ===== */
.model-framework {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 50px 0 40px;
  position: relative;
}

.framework-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 35px 22px 28px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(212, 101, 43, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.framework-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(212, 101, 43, 0.12);
  border-color: rgba(212, 101, 43, 0.25);
}

/* Glowing aura behind each card */
.framework-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.framework-step:hover .framework-glow {
  opacity: 1;
  animation: frameworkPulse 2s ease-in-out infinite;
}

/* Circular step indicator */
.framework-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 18px;
  transition: all 0.4s ease;
  z-index: 2;
}

.framework-circle .circle-number {
  position: relative;
  z-index: 3;
  transition: transform 0.3s ease;
}

.framework-step:hover .framework-circle .circle-number {
  transform: scale(1.15);
}

/* Rotating ring around the circle */
.circle-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 50%;
  border: 2px dashed rgba(212, 101, 43, 0.2);
  animation: ringRotate 12s linear infinite;
  z-index: 1;
}

.framework-step:hover .circle-ring {
  border-color: rgba(212, 101, 43, 0.5);
  animation-duration: 6s;
}

/* Dark and Orange circle variants */
.dark-circle {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(30, 30, 42, 0.25);
}

.orange-circle {
  background: var(--orange-red);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(212, 101, 43, 0.3);
}

/* Framework details */
.framework-details h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.framework-step:hover .framework-details h4 {
  color: var(--orange-red);
}

.framework-desc {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange-red);
  margin-bottom: 0;
  line-height: 1.5;
}

/* High-tech connector between steps */
.framework-connector {
  position: absolute;
  top: 50%;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 3;
  transform: translateY(-50%);
}

.connector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-red);
  box-shadow: 0 0 12px rgba(212, 101, 43, 0.6);
  animation: dotPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.connector-line {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-red), rgba(212, 101, 43, 0.2));
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.connector-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  animation: lineShimmer 2s ease-in-out infinite;
}

/* Animations */
@keyframes frameworkPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(212, 101, 43, 0.6); }
  50% { transform: scale(1.4); box-shadow: 0 0 20px rgba(212, 101, 43, 0.9); }
}

@keyframes lineShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Model Quote */
.model-quote {
  background: var(--white);
  padding: 30px 35px;
  border-radius: 20px;
  border-left: 4px solid var(--orange-red);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.model-quote p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

.model-quote p:first-child {
  font-style: italic;
  color: #555;
}

/* ===== HIGH-TECH FRAMEWORK RESPONSIVE ===== */
@media (max-width: 992px) {
  .model-framework {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .framework-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .model-framework {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 35px 0 30px;
  }

  .framework-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    padding: 22px 24px;
    border-radius: 18px;
  }

  .framework-circle {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .circle-ring {
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
  }

  .framework-details h4 {
    font-size: 1.15rem;
  }

  .framework-desc {
    font-size: 0.85rem;
  }

  .framework-connector {
    display: none;
  }
}

@media (max-width: 480px) {
  .framework-step {
    padding: 18px 20px;
    gap: 16px;
    border-radius: 16px;
  }

  .framework-circle {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .circle-ring {
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-width: 1.5px;
  }

  .framework-details h4 {
    font-size: 1.05rem;
  }

  .framework-desc {
    font-size: 0.8rem;
  }
}






/* ===== ROLES / SERVICES SECTION ===== */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.role-card {
  background: var(--white);
  padding: 38px 30px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-red), var(--dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.role-card:hover::before {
  transform: scaleX(1);
}

.role-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.role-card:hover::after {
  opacity: 1;
}

.role-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  border-color: rgba(212, 101, 43, 0.12);
}

.role-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange-red);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

.role-icon {
  font-size: 2.4rem;
  color: var(--orange-red);
  margin-bottom: 18px;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.role-card:hover .role-icon {
  transform: scale(1.12) rotate(-4deg);
}

.role-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1.35;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.role-card:hover h4 {
  color: var(--orange-red);
}

.role-card p {
  color: #3d3d4a;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Highlight Badge - Used across sections */
.highlight-badge {
  background: var(--orange-red);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

/* Stat Card - Used in Nairobi section */
.stat-card {
  background: var(--white);
  padding: 30px 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.stat-card .number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange-red);
  font-family: 'Playfair Display', serif;
}

/* ===== ROLES RESPONSIVE ===== */
@media (max-width: 1200px) {
  .roles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .role-card {
    padding: 32px 26px;
  }

  .role-card h4 {
    font-size: 1.1rem;
  }

  .role-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .role-card {
    padding: 30px 24px;
  }

  .role-icon {
    font-size: 2.1rem;
  }
}

@media (max-width: 768px) {
  .roles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .role-card {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .role-card h4 {
    font-size: 1.1rem;
  }

  .role-icon {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .role-card p {
    font-size: 0.88rem;
  }

  .role-number {
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .role-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .role-card h4 {
    font-size: 1rem;
  }

  .role-card p {
    font-size: 0.85rem;
  }

  .role-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .role-number {
    font-size: 0.65rem;
  }
}





/* ===== WHO WE SERVE SECTION ===== */
.whoweserve-section {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.whoweserve-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.whoweserve-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.whoweserve-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.whoweserve-header .section-sub {
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin-top: 12px;
}

/* 3-column grid for 5 cards (3 + 2 layout) */
.whoweserve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* Center the last two cards on the second row */
.whoweserve-grid > .whoweserve-card:nth-child(4) {
  grid-column: 1 / 2;
  margin-left: auto;
  margin-right: 0;
  width: 100%;
}

.whoweserve-grid > .whoweserve-card:nth-child(5) {
  grid-column: 2 / 3;
}

.whoweserve-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 35px 30px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.whoweserve-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whoweserve-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.whoweserve-card:hover::before {
  transform: scaleX(1);
}

.whoweserve-card:hover::after {
  opacity: 1;
}

.whoweserve-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(212, 101, 43, 0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.whoweserve-icon {
  font-size: 2.5rem;
  color: var(--orange-red);
  margin-bottom: 16px;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.whoweserve-card:hover .whoweserve-icon {
  transform: scale(1.1) rotate(-3deg);
}

.whoweserve-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.whoweserve-card:hover h4 {
  color: var(--orange-red);
}

.whoweserve-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

/* ===== WHO WE SERVE RESPONSIVE ===== */
@media (max-width: 992px) {
  .whoweserve-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Reset special positioning on tablets */
  .whoweserve-grid > .whoweserve-card:nth-child(4),
  .whoweserve-grid > .whoweserve-card:nth-child(5) {
    grid-column: auto;
    margin-left: 0;
    margin-right: 0;
  }

  /* Make the last card span both columns and center it */
  .whoweserve-grid > .whoweserve-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .whoweserve-section {
    padding: 60px 0;
  }

  .whoweserve-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .whoweserve-grid > .whoweserve-card:last-child:nth-child(odd) {
    max-width: 100%;
  }

  .whoweserve-card {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .whoweserve-icon {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .whoweserve-card h4 {
    font-size: 1.1rem;
  }

  .whoweserve-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .whoweserve-section {
    padding: 40px 0;
  }

  .whoweserve-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .whoweserve-icon {
    font-size: 1.8rem;
  }

  .whoweserve-card h4 {
    font-size: 1rem;
  }

  .whoweserve-card p {
    font-size: 0.85rem;
  }
}






/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.02) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.why-header .section-sub {
  color: #555;
  max-width: 700px;
  margin-top: 12px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* 2x2 Grid for 4 cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: var(--light-bg);
  padding: 38px 34px;
  border-radius: 28px;
  border: 1px solid rgba(212, 101, 43, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-red), var(--dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.why-card:hover::after {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  border-color: rgba(212, 101, 43, 0.15);
  background: var(--white);
}

.why-icon {
  font-size: 2.4rem;
  color: var(--orange-red);
  margin-bottom: 20px;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.why-card:hover .why-icon {
  transform: scale(1.12) rotate(-4deg);
}

.why-content {
  position: relative;
  z-index: 1;
}

.why-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.why-card:hover .why-content h4 {
  color: var(--orange-red);
}

.why-content p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Tagline styling */
.why-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange-red);
  margin-top: 16px;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 101, 43, 0.12);
  position: relative;
  z-index: 1;
}

/* CTA Section */
.why-cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(212, 101, 43, 0.04) 0%, rgba(212, 101, 43, 0.08) 100%);
  border-radius: 32px;
  border: 1px solid rgba(212, 101, 43, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.why-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.why-cta-sub {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.why-cta .btn-primary {
  position: relative;
  z-index: 1;
  padding: 16px 44px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ===== WHY CHOOSE US RESPONSIVE ===== */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .why-card {
    padding: 32px 28px;
  }

  .why-content h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .why-icon {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .why-content h4 {
    font-size: 1.2rem;
  }

  .why-content p {
    font-size: 0.92rem;
  }

  .why-tagline {
    font-size: 0.75rem;
    margin-top: 12px;
    padding-top: 12px;
  }

  .why-cta {
    padding: 36px 24px;
    margin-top: 40px;
    border-radius: 24px;
  }

  .why-cta-text {
    font-size: 1.4rem;
  }

  .why-cta-sub {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .why-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .why-choose-section {
    padding: 40px 0;
  }

  .why-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .why-icon {
    font-size: 1.8rem;
  }

  .why-content h4 {
    font-size: 1.1rem;
  }

  .why-content p {
    font-size: 0.88rem;
  }

  .why-tagline {
    font-size: 0.7rem;
  }

  .why-cta {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .why-cta-text {
    font-size: 1.2rem;
  }

  .why-cta-sub {
    font-size: 0.88rem;
  }
}






/* Slider Section */
.too-slider-section {
  width: 100%;
  overflow: hidden;
  background: #fcf9f5;
  position: relative;
}

/* Image Slider Styling */
.about-photo-slider {
    position: relative;
    width: 100%; /* Full viewport width */
    height: 600px; /* Increased height */
    overflow: hidden;
    border-radius: 0; /* Optional: full-width feel */
    margin: 0 auto;
    background-color: #000000;
}

.about-photo-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-photo-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the container and crop if needed */
    transition: transform 0.3s ease;
    border-radius: 0;
}

/* Hover effect for the images */
.about-photo-slider .slide img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-photo-slider {
        height: 400px; /* Adjusted height for mobile */
    }
}





/* ===== NUMBERS SECTION ===== */
.numbers-section {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.numbers-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.numbers-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.numbers-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.numbers-header .section-sub {
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin-top: 12px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.number-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 35px 28px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.number-item:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(212, 101, 43, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.number-icon {
  font-size: 2.5rem;
  color: var(--orange-red);
  margin-bottom: 16px;
  display: block;
}

.number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.number-count {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--orange-red);
  line-height: 1;
}

.number-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange-red);
  line-height: 1;
}

.number-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.number-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== NUMBERS RESPONSIVE ===== */
@media (max-width: 992px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .number-item {
    padding: 28px 20px;
  }

  .number-count {
    font-size: 2.8rem;
  }

  .number-suffix {
    font-size: 1.4rem;
  }

  .number-icon {
    font-size: 2rem;
  }

  .number-item h4 {
    font-size: 1rem;
  }

  .number-item p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .number-item {
    padding: 24px 20px;
  }

  .number-count {
    font-size: 2.5rem;
  }

  .number-suffix {
    font-size: 1.2rem;
  }
}




/* ===== MEET THE LEADERSHIP SECTION ===== */
.leadership-section {
  background: var(--light-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.leadership-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.leadership-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.leadership-header .section-sub {
  color: #555;
  max-width: 700px;
  margin-top: 12px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.leadership-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leadership-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(212, 101, 43, 0.1);
}

.leadership-image {
  position: relative;
  padding: 40px 35px 30px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a3a 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.leadership-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--orange-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(212, 101, 43, 0.3);
  transition: transform 0.3s ease;
}

.leadership-card:hover .leadership-avatar {
  transform: scale(1.05);
}

.leadership-avatar.orange-avatar {
  background: var(--orange-red);
  box-shadow: 0 8px 30px rgba(212, 101, 43, 0.3);
}

.leadership-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.leadership-badge.orange-badge {
  background: rgba(212, 101, 43, 0.2);
  border-color: rgba(212, 101, 43, 0.3);
  color: var(--orange-red);
}

.leadership-content {
  padding: 30px 35px 35px;
}

.leadership-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.leadership-role {
  color: var(--orange-red);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.leadership-location {
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.leadership-location i {
  color: var(--orange-red);
  margin-right: 6px;
  width: 16px;
}

.leadership-divider {
  width: 40px;
  height: 3px;
  background: var(--orange-red);
  border-radius: 2px;
  margin: 16px 0 18px;
}

.leadership-bio {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.leadership-bio:last-of-type {
  margin-bottom: 0;
}

.leadership-bio.highlight-bio {
  color: var(--dark);
  font-weight: 500;
  background: rgba(212, 101, 43, 0.04);
  padding: 12px 16px;
  border-radius: 10px;
  border-left: 3px solid var(--orange-red);
  margin-top: 4px;
}

.leadership-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.skill-tag {
  background: rgba(212, 101, 43, 0.08);
  color: var(--orange-red);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: var(--orange-red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== LEADERSHIP RESPONSIVE ===== */
@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .leadership-image {
    padding: 30px 28px 24px;
  }

  .leadership-content {
    padding: 24px 28px 28px;
  }
}

@media (max-width: 768px) {
  .leadership-section {
    padding: 60px 0;
  }

  .leadership-image {
    padding: 24px 20px 20px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .leadership-avatar {
    width: 64px;
    height: 64px;
    font-size: 1.2rem;
  }

  .leadership-content {
    padding: 20px 22px 24px;
  }

  .leadership-content h3 {
    font-size: 1.3rem;
  }

  .leadership-bio {
    font-size: 0.9rem;
  }

  .leadership-bio.highlight-bio {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .skill-tag {
    font-size: 0.7rem;
    padding: 3px 12px;
  }
}

@media (max-width: 480px) {
  .leadership-section {
    padding: 40px 0;
  }

  .leadership-image {
    padding: 20px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .leadership-avatar {
    width: 56px;
    height: 56px;
    font-size: 1rem;
  }

  .leadership-content {
    padding: 16px 18px 20px;
  }

  .leadership-content h3 {
    font-size: 1.1rem;
  }

  .leadership-role {
    font-size: 0.85rem;
  }

  .leadership-bio {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .leadership-bio.highlight-bio {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .leadership-divider {
    margin: 12px 0 14px;
    width: 30px;
  }

  .leadership-skills {
    gap: 6px;
    margin-top: 14px;
  }

  .skill-tag {
    font-size: 0.65rem;
    padding: 2px 10px;
  }
}

.leadership-email {
  color: #777;
  font-size: 0.85rem;
  margin-top: 4px;
  margin-bottom: 0;
  word-break: break-word;
}

.leadership-email i {
  color: var(--orange-red);
  margin-right: 6px;
  width: 16px;
}

.leadership-email a {
  color: var(--orange-red);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.leadership-email a:hover {
  opacity: 0.75;
  text-decoration: underline;
}




/* ===== PILOT SECTION ===== */
.pilot-section {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pilot-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.pilot-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.pilot-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.pilot-header .section-sub {
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin-top: 12px;
}

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.pilot-step {
  position: relative;
  text-align: center;
  padding: 30px 20px 25px;
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pilot-step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(212, 101, 43, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-red);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 25px rgba(212, 101, 43, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.pilot-step:hover .step-circle {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(212, 101, 43, 0.5);
}

.step-connector {
  position: absolute;
  top: 43px;
  right: -10px;
  width: calc(100% - 28px);
  height: 3px;
  background: linear-gradient(90deg, var(--orange-red), rgba(212, 101, 43, 0.2));
  z-index: 1;
  opacity: 0.5;
}

.pilot-step:last-child .step-connector {
  display: none;
}

.step-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.step-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Pilot CTA */
.pilot-cta {
  background: linear-gradient(135deg, rgba(212, 101, 43, 0.08) 0%, rgba(212, 101, 43, 0.02) 100%);
  border: 1px solid rgba(212, 101, 43, 0.15);
  border-radius: 32px;
  padding: 50px 55px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.pilot-cta-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.pilot-cta-content > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 25px;
}

.pilot-cta-contacts {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 28px;
}

.pilot-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pilot-contact-label {
  background: var(--orange-red);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pilot-contact a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.pilot-contact a:hover {
  color: var(--orange-red);
}

.pilot-cta .btn-primary {
  background: var(--orange-red);
  color: var(--white);
  padding: 16px 44px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.pilot-cta .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 40px rgba(212, 101, 43, 0.5);
}

/* ===== PILOT RESPONSIVE ===== */
@media (max-width: 992px) {
  .pilot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .step-connector {
    display: none;
  }

  .pilot-cta {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .pilot-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pilot-step {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
  }

  .step-circle {
    margin: 0;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    flex-shrink: 0;
  }

  .step-content h4 {
    font-size: 1.1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  .step-connector {
    display: none;
  }

  .pilot-cta {
    padding: 30px 24px;
  }

  .pilot-cta-content h3 {
    font-size: 1.6rem;
  }

  .pilot-cta-contacts {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .pilot-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pilot-step {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }

  .step-circle {
    margin: 0 auto 12px;
  }

  .pilot-cta {
    padding: 24px 18px;
  }

  .pilot-cta-content h3 {
    font-size: 1.3rem;
  }

  .pilot-cta-content > p {
    font-size: 0.9rem;
  }
}







/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: var(--light-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.testimonials-header .section-sub {
  color: #555;
  max-width: 700px;
  margin-top: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-red), var(--dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px 4px 0 0;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(212, 101, 43, 0.1);
}

.testimonial-rating {
  margin-bottom: 14px;
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testimonial-rating i {
  margin-right: 2px;
}

.testimonial-quote {
  position: relative;
  margin-bottom: 20px;
}

.testimonial-quote i {
  color: var(--orange-red);
  font-size: 1.2rem;
  opacity: 0.3;
  margin-right: 4px;
}

.testimonial-quote p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  display: inline;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-avatar.gold {
  background: var(--orange-red);
}

.author-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.author-info p {
  color: #777;
  font-size: 0.8rem;
  font-weight: 400;
}

/* ===== TESTIMONIALS RESPONSIVE ===== */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-quote p {
    font-size: 0.9rem;
  }

  .testimonial-author {
    gap: 12px;
  }

  .author-avatar {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .author-info h4 {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-quote p {
    font-size: 0.85rem;
  }

  .testimonial-rating {
    font-size: 0.75rem;
  }

  .author-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  .author-info h4 {
    font-size: 0.9rem;
  }

  .author-info p {
    font-size: 0.75rem;
  }
}




/* ===== HOW WE ENGAGE SECTION ===== */
.engage-section {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.engage-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.engage-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.engage-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.engage-header .section-sub {
  color: rgba(255,255,255,0.7);
  max-width: 750px;
  margin-top: 12px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.engage-content {
  position: relative;
  z-index: 2;
}

.engage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.engage-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 30px 24px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.engage-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.engage-feature:hover::before {
  transform: scaleX(1);
}

.engage-feature:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(212, 101, 43, 0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.engage-icon {
  font-size: 2.2rem;
  color: var(--orange-red);
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s ease;
}

.engage-feature:hover .engage-icon {
  transform: scale(1.1) rotate(-3deg);
}

.engage-feature h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.engage-feature p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Engage Quote */
.engage-quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid var(--orange-red);
  padding: 30px 40px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.engage-quote:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212, 101, 43, 0.2);
}

.engage-quote p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  flex: 1;
  text-align: center;
  font-style: italic;
}

.engage-quote i {
  flex-shrink: 0;
}

/* ===== HOW WE ENGAGE RESPONSIVE ===== */
@media (max-width: 992px) {
  .engage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .engage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .engage-feature {
    padding: 24px 20px;
  }

  .engage-icon {
    font-size: 1.8rem;
  }

  .engage-feature h4 {
    font-size: 1rem;
  }

  .engage-feature p {
    font-size: 0.85rem;
  }

  .engage-quote {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
  }

  .engage-quote p {
    font-size: 1rem;
  }

  .engage-quote i {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .engage-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .engage-feature {
    padding: 20px 16px;
  }

  .engage-icon {
    font-size: 1.6rem;
  }

  .engage-feature h4 {
    font-size: 0.95rem;
  }

  .engage-feature p {
    font-size: 0.8rem;
  }

  .engage-quote {
    padding: 20px 16px;
  }

  .engage-quote p {
    font-size: 0.9rem;
  }
}




/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--light-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* ===== LEFT COLUMN - CONTACT INFO ===== */
.contact-info {
  padding-top: 10px;
}

.contact-description {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 450px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.contact-detail-item:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-color: rgba(212, 101, 43, 0.1);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 101, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange-red);
  font-size: 1.1rem;
}

.contact-detail-content {
  display: flex;
  flex-direction: column;
}

.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
}

.contact-detail-content a,
.contact-detail-content span {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-detail-content a:hover {
  color: var(--orange-red);
}

/* Social Icons */
.contact-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.02);
}

.social-icons a:hover {
  background: var(--orange-red);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(212, 101, 43, 0.3);
}

/* ===== RIGHT COLUMN - CONTACT FORM ===== */
.contact-form-wrapper {
  width: 100%;
}

.form-card {
  background: var(--white);
  padding: 40px 38px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.form-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid rgba(0,0,0,0.06);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--light-bg);
  color: var(--dark);
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-red);
  box-shadow: 0 0 0 4px rgba(212, 101, 43, 0.08);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.submit-btn {
  margin-top: 4px;
  padding: 16px 36px;
  border-radius: 60px;
  background: var(--orange-red);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(212, 101, 43, 0.4);
}

.submit-btn i {
  font-size: 1rem;
}

/* ===== CONTACT RESPONSIVE ===== */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-description {
    max-width: 100%;
  }

  .contact-info {
    padding-top: 0;
  }

  .form-card {
    padding: 32px 28px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .form-card h3 {
    font-size: 1.3rem;
  }

  .contact-detail-item {
    padding: 14px 16px;
  }

  .contact-detail-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .contact-detail-content a,
  .contact-detail-content span {
    font-size: 0.85rem;
  }

  .submit-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: 20px 16px;
  }

  .form-card h3 {
    font-size: 1.1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .contact-detail-item {
    padding: 12px 14px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .submit-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}


/* ===== CONTACT STATUS MESSAGES ===== */
.contact-status {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.status-success {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
    color: #1a7a44;
}

.status-error {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
    color: #a93226;
}







/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
  border-top: 3px solid var(--orange-red);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 101, 43, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-abbr {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--orange-red);
  color: var(--white);
  padding: 2px 12px;
  border-radius: 40px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.04);
}

.footer-social a:hover {
  background: var(--orange-red);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 101, 43, 0.3);
  border-color: var(--orange-red);
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--orange-red);
  border-radius: 2px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--orange-red);
  transform: translateX(6px);
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-contact ul li i {
  width: 18px;
  color: var(--orange-red);
  font-size: 0.85rem;
}

.footer-contact ul li a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-contact ul li a:hover {
  color: var(--orange-red);
}

.footer-contact ul li span {
  color: rgba(255,255,255,0.6);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.footer-bottom span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-credit {
  color: rgba(255,255,255,0.4);
}

.footer-credit i {
  color: var(--orange-red);
}

/* ===== WHATSAPP BUTTON (Theme Color - Fixed Bottom Right) ===== */
.wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--orange-red);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(212, 101, 43, 0.35);
  z-index: 99998;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-size: 2.2rem;
  text-decoration: none;
  position: fixed;
  cursor: pointer;
  overflow: hidden;
}

.wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(212, 101, 43, 0.15);
  animation: waPulse 2s ease-in-out infinite;
}

.wa-btn:hover {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 12px 45px rgba(212, 101, 43, 0.5);
  background: var(--orange-red);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--dark);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.wa-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(-8px);
}

@keyframes waPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-logo-abbr {
    font-size: 1.5rem;
  }

  .footer-logo-name {
    font-size: 1rem;
  }

  .footer-tagline {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom span {
    font-size: 0.75rem;
  }

  .wa-btn {
    width: 52px;
    height: 52px;
    font-size: 1.8rem;
    bottom: 20px;
    right: 20px;
  }

  .wa-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 12px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1rem;
  }

  .footer-links ul li a,
  .footer-contact ul li {
    font-size: 0.85rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .wa-btn {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    bottom: 16px;
    right: 16px;
  }
}

/* ===== ANIMATIONS ===== */
.anim {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.anim.visible {
  opacity: 1;
  transform: translate(0,0) scale(1) rotate(0) !important;
}
.slide-left { transform: translateX(-60px); }
.slide-right { transform: translateX(60px); }
.slide-up { transform: translateY(60px); }
.slide-down { transform: translateY(-60px); }
.bounce-in { transform: scale(0.8); }
.spin-in { transform: rotate(-10deg) scale(0.9); }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    padding: 12px 0;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .brand-name {
    font-size: 1rem;
  }
  .logo-abbr {
    font-size: 1.6rem;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 30px 0 20px;
    gap: 1.5rem;
    background: var(--dark);
    border-radius: 0 0 20px 20px;
    margin-top: 12px;
    border-top: 2px solid var(--orange-red);
    animation: slideDown 0.3s ease;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    color: #f0ece6;
    text-align: center;
    padding: 8px 0;
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-menu a::after {
    display: none;
  }
  .nav-menu a:hover {
    background: rgba(212, 101, 43, 0.1);
    color: var(--orange-red);
  }
  .hamburger {
    display: flex;
  }

  /* Hero Mobile */
  .hero {
    margin-top: -70px;
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .hero-stat-number {
    font-size: 1.5rem;
  }
  .hero-scroll-indicator {
    display: none;
  }

  /* Grid Mobile */
  .grid-2, .grid-3, .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Model Mobile */
  .model-locations {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .model-box-inner {
    padding: 30px 24px;
  }
  .location-card {
    padding: 18px 20px;
  }
  .location-circle {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
  .model-header-text h3 {
    font-size: 1.6rem;
  }
  .model-quote {
    padding: 20px 22px;
  }

  /* Proof Mobile */
  .proof-box {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 30px 20px;
  }
  .section-title {
    font-size: 2.2rem;
  }

  /* Container Mobile */
  .container {
    padding: 0 20px;
  }

  /* Footer Mobile */
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 65px;
  }
  .hero {
    margin-top: -65px;
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
  }
  .btn {
    padding: 12px 28px;
    width: 100%;
    justify-content: center;
  }
  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  /* Model Mobile Small */
  .location-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .model-box-inner {
    padding: 24px 18px;
  }
  .model-header-text h3 {
    font-size: 1.4rem;
  }
  .model-quote p {
    font-size: 0.9rem;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}