/* --- ROOT VARIABLES --- */
:root {
  --primary: #ff8d0e; /* Cultfit-inspired Orange */
  --primary-glow: rgba(255, 141, 14, 0.3);
  --secondary: #1d7ac7; /* Brand Blue */
  --bg-dark: #0f172a; /* Deep Slate */
  --bg-darker: #020617; 
  --card-bg: #1e293b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.1);
  --gradient-linear: linear-gradient(135deg, #ff8d0e 0%, #1d7ac7 100%);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- GLOBAL STYLES --- */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, .navbar-brand {
  font-family: 'Sora', sans-serif;
}

section {
  padding: 100px 0;
}

.text-primary-custom {
  background: var(--gradient-linear);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.text-muted-custom {
  color: var(--text-muted);
}

/* --- NAVBAR --- */
.navbar {
  background: rgba(15, 23, 42, 0.8) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  padding: 1.2rem 0;
  transition: var(--transition);
}

.nav-link {
  color: var(--text-main) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}

/* --- HERO SECTION --- */
.hero-section {
  padding: 180px 0 120px;
  background: 
    radial-gradient(circle at 90% 10%, rgba(29, 122, 199, 0.15), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(255, 141, 14, 0.1), transparent 40%);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 550px;
}

.badge-custom {
  display: inline-block;
  background: var(--glass);
  border: 1px solid var(--border-glass);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- CARDS (About, Why, Connect) --- */
.about-card, .why-card, .connect-card, .accordion-item {
  background: var(--card-bg) !important;
  border: 1px solid var(--border-glass) !important;
  border-radius: 24px !important;
  transition: var(--transition);
  height: 100%;
}

.about-card:hover, .why-card:hover, .connect-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- IMAGES & WRAPPERS --- */
.hero-img-wrapper, .service-img, .about-img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-img-wrapper img, .service-img img, .about-img img {
  transition: transform 0.5s ease;
}

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

/* --- BUTTONS --- */
.btn-primary-custom {
  background: var(--gradient-linear);
  color: white !important;
  border: none;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 20px var(--primary-glow);
  transition: var(--transition);
}

.btn-primary-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px var(--primary-glow);
}

.btn-outline-primary-custom {
  background: transparent;
  color: var(--text-main) !important;
  border: 2px solid var(--border-glass);
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-primary-custom:hover {
  background: var(--glass);
  border-color: var(--secondary);
}

/* --- SERVICES LIST --- */
.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  font-weight: 500;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

/* --- FAQ ACCORDION --- */
.custom-accordion .accordion-button {
  background: var(--card-bg);
  color: var(--text-main);
  padding: 24px;
  font-weight: 600;
  border: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(255, 141, 14, 0.05);
  color: var(--primary);
  box-shadow: none;
}

.custom-accordion .accordion-button::after {
  filter: invert(1); /* Makes arrow white */
}

/* --- FINAL CTA --- */
.final-cta {
  background: var(--gradient-linear);
  position: relative;
  overflow: hidden;
}

.btn-cta {
  background: white;
  color: var(--primary);
  border: none;
  padding: 18px 45px;
  border-radius: 15px;
  font-weight: 800;
  transition: var(--transition);
}

.btn-cta:hover {
  transform: scale(1.08);
  background: #f8fafc;
}

/* --- FOOTER --- */
.footer-section {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-glass);
}

.footer-links a {
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary) !important;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 991px) {
  section { padding: 70px 0; }
  .hero-section { text-align: center; padding-top: 140px; }
  .hero-text { margin: 20px auto 40px; }
  .d-flex { justify-content: center; }
  .service-img { margin-top: 40px; }
  .navbar-collapse {
    background: var(--bg-dark);
    padding: 20px;
    border-radius: 20px;
    margin-top: 15px;
    border: 1px solid var(--border-glass);
  }
}

.navbar-brand img{
  width: 180px;
}