:root {
  /* Logo Colors - Update these after extracting colors from logo.png */
  --logo-primary: #0c0c14; /* Main logo color */
  --logo-secondary: #1a1a2e; /* Secondary logo color */
  --logo-accent: #b8860b; /* Accent color from logo */

  /* Theme Colors (can be updated to match logo) */
  --primary: #0c0c14;
  --secondary: #1a1a2e;
  --accent: #b8860b;
  --accent-light: #d4a844;
  --gold-gradient: #ae8c2c;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --cream: #faf8f5;
  --light-bg: #f5f3ef;
  --border: #e8e4dc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Skip to main content for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

/* Improved focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  line-height: 1.8;
  font-weight: 400;
  background: var(--cream);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.navbar img {
  width: 75px;
  height: auto;
  max-width: 100%;
}

.navbar {
  padding: 0 0;
  transition: all 0.4s ease;
  background: #fff;
  min-height: auto;
}

.navbar.scrolled {
  background: #fff;
  backdrop-filter: blur(20px);
  padding: 0 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  padding-left: 0;
  padding-right: 16px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .navbar .container {
    padding-left: 0;
    padding-right: 24px;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 0;
  }
  .navbar img {
    width: 60px;
    height: auto;
  }
}

.navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff !important;
  background-color: #101033;
  padding: 15px;
}

.navbar-brand span {
  color: var(--accent);
  font-weight: 400;
}

.navbar-nav .nav-link {
  color: #000 !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px !important;
  transition: all 0.3s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: calc(100% - 40px);
}

.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--primary) !important;
  border: none;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
  border-radius: 4px;
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(184, 134, 11, 0.5);
  color: var(--primary) !important;
  background: linear-gradient(135deg, #d4a844 0%, var(--gold-gradient) 100%);
}

.btn-outline-gold {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.navbar-toggler {
  border-color: rgba(0, 0, 0, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section - Full-bleed image / video */
.hero.hero-media {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-media-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-img {
  position: absolute;
  inset: 0;
  /* background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80")
    center/cover no-repeat; */
  background: url("../img/skylineimage.png") center/cover no-repeat;
}

.hero-media-bg:has(.hero-video) .hero-media-img {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgb(12 12 20 / 0%) 0%,
    rgb(12 12 20 / 33%) 50%,
    rgb(12 12 20 / 65%) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 100px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Staggered reveal: each child animates from left edge, one by one */
.hero-content > * {
  opacity: 0;
  transform: translateX(-100vw);
  animation: heroRevealLtr 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.hero-content > *:nth-child(1) {
  animation-delay: 0s;
} /* tagline */
.hero-content > *:nth-child(2) {
  animation-delay: 0.3s;
} /* brand */
.hero-content > *:nth-child(3) {
  animation-delay: 0.6s;
} /* punch */
.hero-content > *:nth-child(4) {
  animation-delay: 0.9s;
} /* button */
.hero-content > *:nth-child(5) {
  animation-delay: 1.2s;
} /* badges */

@keyframes heroRevealLtr {
  from {
    opacity: 0;
    transform: translateX(-100vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-tagline {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-tagline::before {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.hero-tagline::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  flex-direction: column;
}

.hero-brand h3 {
  text-transform: uppercase;
  /* color: var(--gold-gradient); */
  color: #dda505;
  font-size: 24px;
}

.hero-logo {
  max-height: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #fff;
  margin: 0;
  font-weight: 700;
  line-height: 1.05;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-punch {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.btn-hero {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 32px rgba(184, 134, 11, 0.35);
  margin: 0 auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.4);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.hero-scroll-hint:hover,
.hero-scroll-hint:focus {
  color: rgba(255, 255, 255, 0.95);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@media (max-width: 767px) {
  .hero.hero-media .hero-content {
    padding: 120px 20px 80px;
  }
  .hero.hero-media .hero-punch {
    font-size: 1.05rem;
  }
  .hero.hero-media .hero-badges {
    margin-top: 15px;
    gap: 12px;
  }
  .hero.hero-media .hero-badge {
    padding: 6px 14px;
    font-size: 10px;
  }
  .hero.hero-media .btn-hero {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 575px) {
  .hero.hero-media {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-end;
  }
  .hero.hero-media .hero-content {
    padding: 0 0 60px;
  }
  .hero.hero-media .hero-brand {
    gap: 12px;
    margin-bottom: 0;
  }
  .hero.hero-media .hero-logo {
    max-height: 85px;
  }
  .hero.hero-media .hero-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #dda505;
  }
  .hero.hero-media .hero-punch {
    font-size: 0.95rem;
  }
  .hero.hero-media .btn-hero {
    width: 100%;
    max-width: 260px;
  }
  .hero.hero-media .hero-scroll-hint {
    bottom: 20px;
    font-size: 1.25rem;
  }
}

/* Legacy hero selectors (for other pages if any) */
.hero h1 {
  font-size: inherit;
  margin-bottom: inherit;
  margin-bottom: 0;
  color: var(--gold-gradient);
  color: #dda505;
}
.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero-highlight {
  background: rgba(184, 134, 11, 0.15);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* Section Styling */
section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

.section-label {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 2px 8px rgba(184, 134, 11, 0.2);
}

.section-label i {
  font-size: 1.2rem;
}

.section-title {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.decorative-line {
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  margin: 25px auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

/* Section Backgrounds with Alternating Color Schemes Based on Logo Colors */
.bg-dark-section {
  background: linear-gradient(
    165deg,
    var(--logo-primary) 0%,
    var(--logo-secondary) 100%
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 134, 11, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.bg-dark-section .section-title,
.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4 {
  color: #fff;
}

.bg-dark-section .section-label {
  color: var(--logo-accent);
}

.bg-dark-section .section-subtitle,
.bg-dark-section p {
  color: rgba(255, 255, 255, 0.85);
}

/* Light Section - Alternating Patterns */
.bg-light-section {
  position: relative;
  transition: background 0.3s ease;
}

/* Odd light sections - gradient from cream to light */
section.bg-light-section:nth-of-type(odd) {
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    #fff 50%,
    var(--light-bg) 100%
  );
}

/* Even light sections - gradient from light to cream */
section.bg-light-section:nth-of-type(even) {
  background: linear-gradient(
    135deg,
    var(--light-bg) 0%,
    var(--cream) 50%,
    #fff 100%
  );
}

.bg-light-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--logo-accent),
    transparent
  );
  opacity: 0.3;
  z-index: 1;
}

.bg-light-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--logo-accent), transparent);
  opacity: 0.15;
  z-index: 1;
}

.bg-light-section .section-title {
  color: var(--logo-primary);
}

.bg-light-section .section-label {
  color: var(--logo-accent);
}

/* White Section - Alternating Patterns */
.bg-white-section {
  position: relative;
  transition: background 0.3s ease;
}

/* Odd white sections - pure white with subtle gradient */
section.bg-white-section:nth-of-type(odd) {
  background: linear-gradient(135deg, #fff 0%, var(--cream) 50%, #fff 100%);
}

/* Even white sections - white with light background blend */
section.bg-white-section:nth-of-type(even) {
  background: linear-gradient(
    135deg,
    var(--light-bg) 0%,
    #fff 50%,
    var(--light-bg) 100%
  );
}

.bg-white-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--logo-accent),
    transparent
  );
  opacity: 0.2;
  z-index: 1;
}

.bg-white-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--logo-accent), transparent);
  opacity: 0.1;
  z-index: 1;
}

.bg-white-section .section-title {
  color: var(--logo-primary);
}

.bg-white-section .section-label {
  color: var(--logo-accent);
}

/* Enhanced section transitions */
section {
  position: relative;
  transition: background 0.3s ease;
}

/* Alternating text colors for better visual hierarchy */
section.bg-light-section:nth-of-type(odd) .section-title {
  color: var(--logo-primary);
}

section.bg-light-section:nth-of-type(even) .section-title {
  color: var(--logo-secondary);
}

section.bg-white-section:nth-of-type(odd) .section-title {
  color: var(--logo-primary);
}

section.bg-white-section:nth-of-type(even) .section-title {
  color: var(--logo-secondary);
}

/* Alternating card colors within sections */
section.bg-light-section:nth-of-type(odd) .value-card,
section.bg-light-section:nth-of-type(odd) .phase-card {
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

section.bg-light-section:nth-of-type(even) .value-card,
section.bg-light-section:nth-of-type(even) .phase-card {
  background: var(--cream);
  border-color: var(--border);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

section.bg-white-section:nth-of-type(odd) .value-card,
section.bg-white-section:nth-of-type(odd) .phase-card {
  background: var(--cream);
  border-color: var(--border);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

section.bg-white-section:nth-of-type(even) .value-card,
section.bg-white-section:nth-of-type(even) .phase-card {
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Alternating decorative line colors */
section.bg-light-section:nth-of-type(odd) .decorative-line {
  background: linear-gradient(
    90deg,
    transparent,
    var(--logo-accent),
    transparent
  );
  opacity: 0.6;
}

section.bg-light-section:nth-of-type(even) .decorative-line {
  background: linear-gradient(
    90deg,
    transparent,
    var(--logo-primary),
    transparent
  );
  opacity: 0.4;
}

section.bg-white-section:nth-of-type(odd) .decorative-line {
  background: linear-gradient(
    90deg,
    transparent,
    var(--logo-accent),
    transparent
  );
  opacity: 0.5;
}

section.bg-white-section:nth-of-type(even) .decorative-line {
  background: linear-gradient(
    90deg,
    transparent,
    var(--logo-secondary),
    transparent
  );
  opacity: 0.3;
}

/* Problem Solution Cards */
.problem-card {
  background: linear-gradient(135deg, #fef7f7 0%, #fff5f5 100%);
  border-left: 4px solid #dc3545;
  padding: 40px;
  height: 100%;
  border-radius: 8px;
  transition: all 0.4s;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(220, 53, 69, 0.1);
}

.problem-card h3 {
  color: #b91c1c;
}

.solution-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-left: 4px solid #198754;
  padding: 40px;
  height: 100%;
  border-radius: 8px;
  transition: all 0.4s;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(25, 135, 84, 0.1);
}

.solution-card h3 {
  color: #15803d;
}

/* Value Proposition */
.value-visual {
  background: linear-gradient(165deg, var(--primary) 0%, #141428 100%);
  border-radius: 12px;
  padding: 45px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.value-visual::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(184, 134, 11, 0.15) 0%,
    transparent 70%
  );
}

.phase-list-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
  position: relative;
}

.phase-list-item:hover {
  padding-left: 10px;
  border-color: rgba(184, 134, 11, 0.4);
}

.phase-list-item:last-child {
  border-bottom: none;
}

.phase-number {
  background: var(--gold-gradient);
  color: var(--primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.value-focus-box {
  background: #101033;
  border-left: 5px solid var(--accent);
  padding: 35px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  border-radius: 8px;
  color: #fff;
}

.value-focus-box:hover {
  transform: translateX(8px) translateY(-3px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-left-color: var(--logo-accent);
}

/* Core Values */
.value-card {
  text-align: center;
  padding: 45px 35px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border-color: var(--logo-accent);
}

.value-card-icon {
  width: 90px;
  height: 90px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.4s;
  box-shadow: 0 5px 20px rgba(184, 134, 11, 0.15);
}

.value-card-icon i {
  font-size: 2.2rem;
  color: var(--accent);
}

.value-card:hover .value-card-icon {
  background: var(--gold-gradient);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
}

.value-card:hover .value-card-icon i {
  color: var(--primary);
}

.value-card h4 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-weight: 600;
}

/* Phase Cards */
.phase-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 80px 40px 40px;
  height: 100%;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.phase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.phase-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border-color: var(--logo-accent);
}

.phase-card:hover::before {
  transform: scaleX(1);
}

section.bg-white-section .phase-card-outer:nth-child(odd) .phase-card {
  background: #101033;
}

.phase-card-number {
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 5rem;
  font-weight: 700;
  /* color: rgba(184, 134, 11, 0.12); */
  color: rgb(184 134 11);
  color: rgba(184, 134, 11, 0.2);
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  transition: all 0.4s;
  top: -6px;
}

.phase-card:hover .phase-card-number {
  color: rgb(184 134 11);
  transform: scale(1.1);
}

.phase-card-icon {
  width: 65px;
  height: 65px;
  background: var(--gold-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.15);
}

.phase-card-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.phase-card:hover .phase-card-icon {
  background: var(--gold-gradient);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.phase-card:hover .phase-card-icon i {
  color: #ffffff;
}

.phase-card h4 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.phase-card-outer:nth-child(odd) .phase-card h4 {
  color: var(--logo-accent);
}

.phase-card-outer:nth-child(odd) .phase-card p {
  color: #fff !important;
}

.phase-card .objective {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 15px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.4s ease,
    max-height 0.4s ease,
    margin-bottom 0.4s ease;
}

.phase-card:hover .objective {
  opacity: 1;
  max-height: 100px;
  margin-bottom: 15px;
}

.phase-card .phase-description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  transition:
    opacity 0.4s ease,
    max-height 0.4s ease,
    margin-bottom 0.4s ease;
}

.phase-card:hover .phase-description {
  opacity: 1;
  max-height: 200px;
  margin-bottom: 0;
}

/* Serve Cards */
.serve-card {
  background: #101033;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 45px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.serve-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.5s;
  border-radius: 0 0 12px 12px;
}

.serve-card:hover::before {
  transform: scaleX(1);
}

.serve-card:hover {
  background: #101033;
  border-color: rgba(184, 134, 11, 0.4);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.serve-card-icon {
  width: 80px;
  height: 80px;
  background: rgba(184, 134, 11, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s;
  box-shadow: 0 5px 20px rgba(184, 134, 11, 0.2);
}

.serve-card:hover .serve-card-icon {
  transform: scale(1.15) rotate(5deg);
  background: rgba(184, 134, 11, 0.3);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
}

.serve-card-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.serve-card h3 {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.serve-card .subtitle {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-bottom: 25px;
}

.serve-card h5 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.serve-card p {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.value-unlock-box {
  background: rgb(225 225 225 / 12%);
  border-left: 3px solid var(--accent);
  padding: 20px;
  margin-top: 20px;
  border-radius: 0 8px 8px 0;
}

.value-unlock-box h5 {
  color: var(--accent) !important;
}

/* Why Cards */
.why-card {
  text-align: center;
  padding: 45px 35px;
  background: #fff;
  border-radius: 12px;
  height: 100%;
  transition: all 0.5s;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: var(--gold-gradient);
  transition: all 0.5s;
}

.why-card:hover::before {
  left: 0;
  width: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.why-card-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(165deg, var(--primary) 0%, #141428 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s;
}

.why-card-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.why-card:hover .why-card-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(12, 12, 20, 0.3);
}

.why-result-box {
  background: linear-gradient(165deg, #101033 0%, #141428 100%);
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-result-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 134, 11, 0.1) 0%,
    transparent 70%
  );
}

.why-result-box h3 {
  color: var(--accent);
  position: relative;
}

.why-result-box p {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

/* Benefits */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 25px;
  background: #fff;
  padding: 30px 35px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transform: translateX(8px) translateY(-3px);
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
}

.benefit-icon {
  width: 65px;
  height: 65px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
  box-shadow: 0 5px 20px rgba(184, 134, 11, 0.3);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
}

.benefit-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

/* Founder Section */
.founder-image-box {
  background: #101033;
  border-radius: 16px;
  padding: 50px;
  color: #fff;
  position: sticky;
  top: 100px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(184, 134, 11, 0.2);
}

.founder-image-box h3 {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
}

.founder-quote {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.founder-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.founder-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Cormorant Garamond", serif;
}

.vision-box {
  background: rgb(16, 16, 51);
  border-radius: 12px;
  padding: 30px 35px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.vision-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
}

.vision-box h5 {
  color: var(--accent);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.vision-box p {
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  font-weight: 300;
}

/* Contact Form */
.contact-form-box {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-form-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gold-gradient);
}

.form-control,
.form-select {
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.15);
  transform: translateY(-2px);
}

.form-label {
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.contact-details-box {
  background: linear-gradient(165deg, var(--primary) 0%, #141428 100%);
  border-radius: 16px;
  padding: 40px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(184, 134, 11, 0.2);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 0 12px 0;
  border-left: 2px solid rgba(184, 134, 11, 0.3);
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  @media (max-width: 767px) {
    font-size: 12px;
    padding-left: 0px;
    border: 0;
    margin-bottom: 0;
  }
}

.contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

.expect-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.expect-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 15px;
}

.expect-list li:last-child {
  border-bottom: none;
}

/* FAQ */
.accordion-item {
  border: 1px solid var(--border);
  margin-bottom: 15px;
  border-radius: 12px !important;
  overflow: hidden;
  background: var(--cream);
}

.accordion-button {
  padding: 22px 28px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  background: var(--cream);
  color: var(--primary);
}

.accordion-button:not(.collapsed) {
  background: var(--cream);
  color: var(--accent);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b8860b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0 28px 22px;
  color: var(--text-light);
  font-weight: 300;
}

/* CTA Banner */
.cta-banner {
  background: var(--gold-gradient);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.75) 100%
  ); */
  z-index: 1;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  position: relative;
  color: #fff !important;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.cta-banner p {
  position: relative;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.2rem;
  font-weight: 400;
  z-index: 2;
}

.btn-dark-custom {
  background: #fff;
  color: #792e2e;
  padding: 18px 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  display: inline-block;
  text-decoration: none;
  border: none;
}

.btn-dark-custom:hover {
  background: var(--logo-accent);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(184, 134, 11, 0.5);
  text-decoration: none;
}

/* Final Word */
.final-word {
  background: linear-gradient(165deg, var(--primary) 0%, #0a0a12 100%);
  position: relative;
  padding: 100px 0 !important;
  border-bottom: 3px solid rgba(184, 134, 11, 0.3);
}

.final-word::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 134, 11, 0.1) 0%,
    transparent 60%
  );
  z-index: 1;
}

.final-word .container {
  position: relative;
  z-index: 2;
}

.tagline {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(184, 134, 11, 0.3);
  position: relative;
  z-index: 2;
}

.final-word h2 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.final-word p {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .final-word h2 {
    font-size: 2.5rem;
  }
  .tagline {
    font-size: 1.1rem;
  }
}

/* Footer */
footer {
  background: #050508;
  border-top: 2px solid rgba(184, 134, 11, 0.3);
  margin-top: 0;
  padding-top: 80px !important;
  padding-bottom: 20px !important;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  /* background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 134, 11, 0.5),
    transparent
  ); */
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand span {
  color: var(--accent);
  font-weight: 400;
}

.footer-heading {
  color: var(--accent);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: all 0.3s;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer-tagline {
  color: var(--accent);
  font-style: italic;
}

/* Footer Social Media */
.footer-social {
  margin-top: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--logo-accent);
  border-color: var(--logo-accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.social-link i {
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.1);
}

/* Footer Contact */
.footer-contact a {
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent) !important;
  padding-left: 5px;
}

.footer-contact .text-accent {
  color: var(--accent);
}

/* Form Error Alert Styling */
.alert-danger {
  background: linear-gradient(135deg, #fee 0%, #fdd 100%);
  border: 1px solid #dc3545;
  border-left: 4px solid #dc3545;
  color: #721c24;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
}

.alert-danger strong {
  color: #721c24;
  font-weight: 600;
}

.alert-danger ul {
  padding-left: 20px;
  margin-top: 10px;
}

.alert-danger ul li {
  margin-bottom: 5px;
  color: #721c24;
}

.alert-danger .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* Image Styling */
.img-premium {
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESPONSIVE DESIGN - ALL DEVICE SIZES
   ============================================ */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 4rem;
  }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 3.5rem;
  }
}

/* Laptop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero h1 {
    font-size: 4.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .hero-stats {
    gap: 40px;
  }

  .value-card,
  .phase-card {
    padding: 35px 25px;
  }

  .contact-form-box {
    padding: 40px;
  }
}

/* Tablet Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  section {
    padding: 80px 0;
  }

  .hero-decoration {
    display: none;
  }

  .hero-stats {
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-number {
    font-size: 3.5rem;
  }

  .value-card,
  .phase-card {
    padding: 30px 20px;
  }

  .value-card-icon,
  .phase-card-icon {
    width: 75px;
    height: 75px;
  }

  .btn-gold,
  .btn-outline-gold {
    padding: 14px 32px;
    font-size: 0.9rem;
  }

  .contact-form-box {
    padding: 35px;
  }

  .cta-banner {
    padding: 80px 0;
  }

  .cta-banner h2 {
    font-size: 2.5rem;
  }

  .final-word {
    padding: 80px 0 !important;
  }

  footer {
    padding-top: 60px !important;
  }

  .footer-brand {
    font-size: 1.6rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Tablet Portrait & Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero {
    padding: 90px 0 50px;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
  }

  section {
    padding: 70px 0;
  }

  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-number {
    font-size: 3rem;
  }

  .value-card,
  .phase-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .value-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .phase-card-icon {
    width: 60px;
    height: 60px;
  }

  .phase-card-number {
    font-size: 4rem;
  }

  .benefit-item {
    padding: 25px 20px;
  }

  .benefit-icon {
    width: 55px;
    height: 55px;
  }

  .btn-gold,
  .btn-outline-gold {
    padding: 14px 28px;
    font-size: 0.85rem;
    width: 100%;
    margin-bottom: 10px;
  }

  .contact-form-box {
    padding: 30px 25px;
  }

  .cta-banner {
    padding: 70px 0;
  }

  .cta-banner h2 {
    font-size: 2.2rem;
  }

  .cta-banner p {
    font-size: 1.1rem;
  }

  .btn-dark-custom {
    padding: 16px 40px;
    font-size: 0.95rem;
  }

  .final-word {
    padding: 70px 0 !important;
  }

  .final-word h2 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.15rem;
  }

  footer {
    padding-top: 50px !important;
    padding-bottom: 30px !important;
  }

  .footer-brand {
    font-size: 1.5rem;
  }

  .footer-heading {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .social-links {
    gap: 12px;
  }

  .social-link {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .footer-contact p {
    font-size: 0.9rem;
  }
}

/* Mobile Portrait (below 576px) */
@media (max-width: 575px) {
  .hero:not(.hero-media) {
    padding: 120px 0 40px;
    background-attachment: scroll;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero-tagline {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-highlight {
    padding: 20px 25px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .section-label {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  section {
    padding: 60px 0;
  }

  .hero-stats {
    gap: 25px;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }

  .hero-stat-number {
    font-size: 2.5rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
  }

  .value-card,
  .phase-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .value-card h4 {
    font-size: 1.3rem;
  }

  .value-card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .value-card-icon i {
    font-size: 1.8rem;
  }

  .phase-card h4 {
    font-size: 1.2rem;
  }

  .phase-card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }

  .phase-card-icon i {
    font-size: 1.5rem;
  }

  .phase-card-number {
    font-size: 2.5rem;
    top: 5px;
    right: 15px;
  }

  .benefit-item {
    padding: 20px 15px;
    gap: 15px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
  }

  .benefit-icon i {
    font-size: 1.3rem;
  }

  .btn-gold,
  .btn-outline-gold {
    padding: 14px 24px;
    font-size: 0.8rem;
    width: 100%;
    margin-bottom: 10px;
    display: block;
    text-align: center;
  }

  .contact-form-box {
    padding: 25px 20px;
  }

  .form-control,
  .form-select {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .cta-banner p {
    font-size: 1rem;
  }

  .btn-dark-custom {
    padding: 14px 30px;
    font-size: 0.85rem;
    width: 100%;
    max-width: 300px;
  }

  .final-word {
    padding: 60px 0 !important;
  }

  .final-word h2 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
    display: block;
    margin-bottom: 15px !important;
  }

  footer {
    padding-top: 40px !important;
    padding-bottom: 25px !important;
  }

  .footer-brand {
    font-size: 1.4rem;
  }

  .footer-heading {
    font-size: 0.8rem;
    margin-bottom: 15px;
    margin-top: 30px;
  }

  .footer-social {
    margin-top: 20px;
  }

  .social-links {
    gap: 10px;
    justify-content: flex-start;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .footer-links a {
    font-size: 0.9rem;
    padding: 6px 0;
  }

  .founder-image-box {
    position: static;
    margin-bottom: 30px;
    padding: 35px 25px;
  }

  .founder-image-box h3 {
    font-size: 1.6rem;
  }

  .why-result-box {
    padding: 40px 25px;
  }

  .contact-details-box {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .expect-box {
    padding: 25px 20px;
  }

  .decorative-line {
    width: 60px;
    height: 3px;
  }
}

/* Extra Small Mobile (below 400px) */
@media (max-width: 399px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .value-card,
  .phase-card {
    padding: 40px 15px 30px;
  }

  .contact-form-box {
    padding: 20px 15px;
  }

  .social-link {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

/* Footer Responsive Enhancements */
@media (max-width: 991px) {
  footer .row {
    text-align: center;
  }

  footer .col-lg-5,
  footer .col-lg-3,
  footer .col-lg-4 {
    margin-bottom: 40px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 767px) {
  footer .row > div {
    margin-bottom: 35px;
  }

  .footer-brand {
    text-align: center;
    display: block;
  }

  .footer-tagline {
    text-align: center;
  }
}

/* Form Responsive */
@media (max-width: 767px) {
  .contact-form-box h4 {
    font-size: 1.3rem;
  }

  .form-label {
    font-size: 0.9rem;
  }
}

/* Hero Buttons Responsive */
@media (max-width: 767px) {
  .hero .d-flex {
    flex-direction: column;
  }

  .hero .btn-gold,
  .hero .btn-outline-gold {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* Phase Cards Responsive */
@media (max-width: 991px) {
  .phase-card {
    margin-bottom: 25px;
  }
}

/* Value Cards Responsive */
@media (max-width: 991px) {
  .value-card {
    margin-bottom: 25px;
  }
}

/* Serve Cards Responsive */
@media (max-width: 991px) {
  .serve-card {
    margin-bottom: 25px;
  }
}

/* CTA Banner Responsive */
@media (max-width: 767px) {
  .cta-banner .container {
    padding: 0 20px;
  }
}

/* Final Word Responsive */
@media (max-width: 767px) {
  .final-word .container {
    padding: 0 20px;
  }

  .final-word .d-flex {
    flex-direction: column;
    gap: 20px !important;
  }
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Table responsive */
@media (max-width: 767px) {
  table {
    font-size: 0.85rem;
  }

  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* Container responsive padding */
@media (max-width: 575px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Smooth scrolling for all devices */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn-gold,
  .btn-outline-gold,
  .btn-dark-custom {
    min-height: 44px; /* Minimum touch target size */
  }

  .social-link {
    min-width: 44px;
    min-height: 44px;
  }

  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 991px) and (orientation: landscape) {
  .hero:not(.hero-media) {
    min-height: auto;
    padding: 60px 0 40px;
  }
  .hero.hero-media .hero-content {
    padding: 80px 16px 50px;
  }
  section {
    padding: 50px 0;
  }
}

/* ============================================
   SIDEBAR MENU
   ============================================ */

/* Hamburger Toggle Button */
.sidebar-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.3s;
}

.sidebar-toggle:hover {
  background: rgba(184, 134, 11, 0.08);
}

.sidebar-toggle i {
  font-size: 1.7rem;
  color: #101033;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
}

.sidebar-icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.sidebar-toggle.active .sidebar-icon-open {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.sidebar-toggle.active .sidebar-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  z-index: 1040;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-overlay.active {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  pointer-events: all;
}

/* Sidebar Panel */
.sidebar-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  height: 100dvh;
  background: linear-gradient(180deg, var(--primary) 0%, #0a0a16 100%);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.sidebar-menu.open {
  transform: translateX(0);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

/* Sidebar Header */
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.sidebar-brand img {
  width: 80px;
  height: auto;
}

.sidebar-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.sidebar-close:hover {
  background: rgba(184, 134, 11, 0.2);
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
}

/* Sidebar Navigation Links */
.sidebar-nav {
  flex: 1;
  padding: 16px 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  position: relative;
  border-left: 3px solid transparent;
}

.sidebar-link i {
  font-size: 1.15rem;
  width: 24px;
  text-align: center;
  color: rgba(184, 134, 11, 0.5);
  transition: color 0.3s;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: #fff;
  background: rgba(184, 134, 11, 0.08);
  border-left-color: var(--accent);
}

.sidebar-link:hover i,
.sidebar-link.active i {
  color: var(--accent);
}

/* Staggered entrance animation for links */
.sidebar-menu.open .sidebar-link {
  animation: sidebarLinkIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  transform: translateX(20px);
}

.sidebar-menu.open .sidebar-link:nth-child(1) {
  animation-delay: 0.1s;
}
.sidebar-menu.open .sidebar-link:nth-child(2) {
  animation-delay: 0.15s;
}
.sidebar-menu.open .sidebar-link:nth-child(3) {
  animation-delay: 0.2s;
}
.sidebar-menu.open .sidebar-link:nth-child(4) {
  animation-delay: 0.25s;
}
.sidebar-menu.open .sidebar-link:nth-child(5) {
  animation-delay: 0.3s;
}
.sidebar-menu.open .sidebar-link:nth-child(6) {
  animation-delay: 0.35s;
}

@keyframes sidebarLinkIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Sidebar CTA Button */
.sidebar-cta {
  padding: 16px 24px;
}

.sidebar-cta .btn-gold {
  padding: 14px 24px;
  font-size: 0.85rem;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(184, 134, 11, 0.15);
  text-align: center;
}

.sidebar-tagline {
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 16px;
  opacity: 0.8;
}

.sidebar-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.sidebar-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
}

.sidebar-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Prevent body scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}

/* ============================================
   ASSESSMENT MODAL
   ============================================ */
.assessment-modal {
  background: linear-gradient(180deg, var(--primary) 0%, #0a0a16 100%);
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.assessment-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.assessment-modal-header h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.assessment-modal-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.assessment-modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.assessment-modal-close:hover {
  background: rgba(184, 134, 11, 0.2);
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
}

.assessment-modal-body {
  padding: 24px 32px 32px;
}

.assessment-modal .form-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.assessment-modal .input-group-text {
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  color: var(--accent);
  border-radius: 10px 0 0 10px;
}

.assessment-modal .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
}

.assessment-modal .input-group .form-control {
  border-left: none;
  border-radius: 0 10px 10px 0;
}

.assessment-modal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.assessment-modal .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
  color: #fff;
}

.assessment-modal .input-group:focus-within .input-group-text {
  border-color: var(--accent);
  background: rgba(184, 134, 11, 0.2);
}

.assessment-modal .input-group:focus-within .form-control {
  border-color: var(--accent);
}

.assessment-modal textarea.form-control {
  border-radius: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  resize: vertical;
  min-height: 80px;
}

.assessment-modal .btn-gold {
  border-radius: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

/* Modal backdrop override */
#assessmentModal .modal-dialog {
  max-width: 480px;
}

@media (max-width: 575px) {
  .assessment-modal-header {
    padding: 20px 20px 16px;
  }
  .assessment-modal-header h4 {
    font-size: 1.25rem;
  }
  .assessment-modal-body {
    padding: 20px;
  }
  #assessmentModal .modal-dialog {
    margin: 12px;
  }
}

/* Thank You Page Styles */
.thank-you-hero {
  min-height: 100vh;
  padding-top: 120px;
}

.thank-you-icon {
  font-size: 5rem;
}

.thank-you-title {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Cormorant Garamond", serif;
}

.thank-you-message {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Enhanced Alternating Section Color Combinations */
section.bg-light-section:nth-of-type(odd) {
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    #fff 50%,
    var(--light-bg) 100%
  );
}

section.bg-light-section:nth-of-type(even) {
  background: linear-gradient(
    135deg,
    var(--light-bg) 0%,
    var(--cream) 50%,
    #fff 100%
  );
}

section.bg-white-section:nth-of-type(odd) {
  background: linear-gradient(135deg, #fff 0%, var(--cream) 50%, #fff 100%);
}

section.bg-white-section:nth-of-type(even) {
  background: linear-gradient(
    135deg,
    var(--light-bg) 0%,
    #fff 50%,
    var(--light-bg) 100%
  );
}

/* Section content styling based on background */
.bg-dark-section .value-card,
.bg-dark-section .phase-card,
.bg-dark-section .benefit-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.bg-dark-section .value-card:hover,
.bg-dark-section .phase-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--logo-accent);
}

.bg-light-section .value-card,
.bg-light-section .phase-card {
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bg-white-section .value-card,
.bg-white-section .phase-card {
  background: var(--cream);
  border-color: var(--border);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

/* Alternating text colors for better contrast */
.bg-light-section:nth-of-type(odd) .section-title {
  color: var(--logo-primary);
}

.bg-light-section:nth-of-type(even) .section-title {
  color: var(--logo-secondary);
}

.bg-white-section:nth-of-type(odd) .section-title {
  color: var(--logo-primary);
}

.bg-white-section:nth-of-type(even) .section-title {
  color: var(--logo-secondary);
}

.startClarityWrapper {
  /* background: linear-gradient(165deg, var(--primary) 0%, #0a0a12 100%); */
  background: #101033;
}

.startClarityWrapper h2 {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Decorative elements for alternating sections */
.bg-light-section:nth-of-type(odd)::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--logo-accent),
    transparent
  );
  opacity: 0.4;
}

.bg-white-section:nth-of-type(even)::after {
  background: linear-gradient(
    90deg,
    transparent,
    var(--logo-accent),
    transparent
  );
  opacity: 0.3;
}

.input-group {
  flex-wrap: nowrap;
  flex-direction: column;
}

.input-group-inner {
  display: flex;
  width: 100%;
}

.bi-check2-circle.text-success {
  color: #101033 !important;
}
