/* ============================================
       VARIABLES & RESET
    ============================================ */
:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --dark-bg: #0b1120;
  --dark-card: #161f32;
  --text-muted: #94a3b8;
  --text-light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* ============================================
       NAVBAR
    ============================================ */
.vcap-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  z-index: 5000;
}

.vcap-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vcap-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.vcap-logo-box {
  width: 40px;
  height: 40px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 10px;
  font-weight: bold;
  color: white;
}

.vcap-brand-text strong {
  font-size: 1.2rem;
  display: block;
  line-height: 1.2;
}

.vcap-brand-text span {
  display: block;
  font-size: 10px;
  opacity: 0.7;
}

.vcap-nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vcap-nav-links li a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.vcap-nav-links li a:hover,
.vcap-nav-links li a.active {
  color: var(--primary);
}

.vcap-btn-book {
  background: var(--primary);
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.vcap-btn-book:hover {
  background: var(--primary-dark);
  color: white;
}

.vcap-nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.vcap-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.vcap-burger span {
  width: 25px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

/* Mobile Menu */
.vcap-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: var(--dark-bg);
  transition: 0.3s;
  z-index: 6000;
  padding: 100px 30px 30px;
}

body.vcap-menu-open .vcap-mobile-menu {
  right: 0;
}

body.vcap-menu-open::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 5500;
}

body.vcap-menu-open {
  overflow: hidden;
}

.vcap-mobile-nav {
  list-style: none;
  padding: 0;
}

.vcap-mobile-nav li {
  margin-bottom: 20px;
}

.vcap-mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.vcap-mobile-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vcap-mobile-cta .vcap-btn-book {
  text-align: center;
}

body.vcap-menu-open .vcap-burger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
body.vcap-menu-open .vcap-burger span:nth-child(2) {
  opacity: 0;
}
body.vcap-menu-open .vcap-burger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1100px) {
  .vcap-nav-links {
    display: none;
  }
  .vcap-burger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .vcap-nav-actions .vcap-btn-book {
    display: none;
  }
}

/* ============================================
       HERO SECTION
    ============================================ */
.vcap-hero {
  background-color: var(--dark-bg);
  background-image: radial-gradient(
    circle at 75% 30%,
    rgba(245, 158, 11, 0.08) 0%,
    transparent 45%
  );
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.vcap-hero-inner {
  max-width: 800px;
}

.vcap-badge-wrapper {
  margin-bottom: 2rem;
}

.vcap-badge {
  background: rgb(221 198 112 / 24%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  color: #ebc536;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vcap-dot-icon {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.vcap-hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.vcap-text-highlight {
  color: var(--primary);
}

.vcap-hero-desc {
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 550px;
}

.vcap-hero-btns {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.vcap-btn-primary {
  background: var(--primary);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.vcap-btn-primary:hover {
  background: var(--primary-dark);
  color: white;
}

.vcap-btn-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.vcap-btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.vcap-hero-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
  flex-wrap: wrap;
  gap: 20px;
}

.vcap-stat-item h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.vcap-stat-item p {
  color: #64748b;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .vcap-hero-title {
    font-size: 2.5rem;
  }
  .vcap-hero-stats {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
}

/* ============================================
       WHY CHOOSE US
    ============================================ */
.why-choose-us {
  padding: 80px 0;
  background: #ffffff;
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.section-header h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 20px auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(245, 158, 11, 0.4);
  border-color: transparent;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--primary);
}

.feature-card:hover .feature-icon {
  background: rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-icon svg {
  stroke: #fff;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

.feature-card:hover h3,
.feature-card:hover p {
  color: #fff;
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
       ABOUT ME SECTION
    ============================================ */
.rounded-4 {
  border-radius: 1.5rem !important;
}

.advisor-card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}

.advisor-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.advisor-card-wrapper:hover .advisor-img {
  transform: scale(1.03);
}

.advisor-info-card {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 1.5rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 90%;
}

@media (max-width: 576px) {
  .advisor-info-card {
    position: relative;
    margin: 1rem;
    background: #0f172a !important;
  }
}

/* ============================================
       PHILOSOPHY SECTION
    ============================================ */
.philosophy-card {
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0 !important;
  background: #ffffff;
  border-radius: 1rem;
}

.philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  border-color: rgba(245, 158, 11, 0.3) !important;
}

.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.1);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.icon-box i {
  font-size: 26px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.philosophy-card:hover .icon-box {
  background: var(--primary);
  transform: translateY(-2px) rotate(-5deg);
}

.philosophy-card:hover .icon-box i {
  color: #ffffff;
}

/* ============================================
       SERVICES SECTION
    ============================================ */
.services-section {
  background-color: var(--dark-bg);
}

.service-badge {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.service-card {
  background-color: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease-in-out;
  border-radius: 1.25rem;
}

.icon-wrapper {
  background: var(--primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  font-size: 1.5rem;
}

.service-card:hover {
  border-color: var(--primary) !important;
  transform: translateY(-5px);
  background-color: #1c263d;
}

/* ============================================
       CALCULATOR SECTION
    ============================================ */
.custom-range::-webkit-slider-thumb {
  background: var(--primary) !important;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.x-small {
  font-size: 0.7rem;
}

/* ============================================
       BOOKING SECTION
    ============================================ */
.step-number {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  font-weight: bold;
}

.step-number.active {
  background: var(--primary);
}

.step-number.completed {
  background: var(--primary);
}

.date-btn.active,
.time-btn.active {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: white !important;
}

/* ============================================
       TESTIMONIALS SECTION
    ============================================ */
.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.dot {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background: var(--primary);
  width: 20px;
  border-radius: 10px;
}

.testimonial-card {
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* ============================================
       BLOG SECTION
    ============================================ */
.blog-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-thumb {
  height: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 1rem;
}

/* ============================================
       FOOTER
    ============================================ */
.footer {
  background-color: #0b1120;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--primary) !important;
}

.extra-small {
  font-size: 0.75rem;
}

/* Active nav link highlight */
.vcap-nav-links li a.active {
  color: var(--primary);
}
