/* ============================================
   D.K Finance — Custom Stylesheet
   ============================================ */

/* ── Variables ───────────────────────────── */
:root {
  --primary: #1a237e;
  --primary-dark: #121858;
  --accent: #ffc107;
  --accent-light: #fff8e1;
  --gold: #ffc107;
  --gold-dark: #ff8f00;
  --text-dark: #101828;
  --text-muted: #475467;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border: #eaecf0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius: 8px;
  --radius-lg: 16px;
  /* Spacing */
  --space-unit: 1rem;
  --section-padding-y: clamp(4rem, 8vh, 7rem);
  --section-padding-x: 1.5rem;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* ── Typography & Rhythm ────────────────── */
section, .py-5, .py-6 {
  padding-top: var(--section-padding-y) !important;
  padding-bottom: var(--section-padding-y) !important;
}

.bg-light, .bg-light-custom {
  background-color: var(--bg-light) !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Cookie Consent ──────────────────────── */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  margin: 0 auto;
  z-index: 9999;
  background: rgba(26, 35, 126, 0.95);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-consent p a {
  color: var(--gold);
  text-decoration: underline;
}

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

/* ── Top Bar ─────────────────────────────── */
.topbar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

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

/* ── Navbar ──────────────────────────────── */
.main-navbar {
  background: var(--white) !important;
  padding: 16px 0;
  transition: var(--transition);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.main-navbar.scrolled {
  background: rgba(255, 255, 255, 0.9) !important;
  padding: 12px 0;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.logo-img {
  transition: var(--transition);
  /* filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)); */
}

/* For D.K Finance text brand */
.navbar-brand-text {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary) !important;
  letter-spacing: -1px;
  text-transform: none;
}

.navbar-brand-text span {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold), #ff8f00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
}

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

.dropdown-menu-custom {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  padding: 12px;
  min-width: 240px;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu-custom .dropdown-item {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.dropdown-menu-custom .dropdown-item i {
  width: 20px;
  margin-right: 12px;
  font-size: 16px;
}

.dropdown-menu-custom .dropdown-item:hover {
  background: var(--accent-light);
  color: var(--primary);
  transform: translateX(4px);
}

/* ── Hero Section ────────────────────────── */
.hero-section {
  background: radial-gradient(circle at top right, #283593, var(--primary));
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66 3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-45c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm26 18c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm16-34c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM9 22c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm69 63c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM27 44c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm0 28c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm34 18c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm29-33c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zm-3-47c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zM30 6c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zM65 82c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zM25 88c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zM7 64c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zM31 5c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zM14 0c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zM42 43c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zM63 43c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zM34 10c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zM73 20c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zM50 0c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3zM8 8c.166 0 .3-.134.3-.3s-.134-.3-.3-.3-.3.134-.3.3.134.3.3.3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-company-name {
  margin-bottom: 24px;
}

.company-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.company-title span {
  color: var(--gold);
  background: linear-gradient(to bottom, var(--gold), #ff8f00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.hero-dashboard-mockup {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transform: rotateY(-15deg) rotateX(10deg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotateY(-15deg) rotateX(10deg) translateY(0); }
  50% { transform: rotateY(-10deg) rotateX(5deg) translateY(-20px); }
}

.mockup-header {
  background: #f8f9fa;
  padding: 16px 20px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #edf2f7;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.mockup-body {
  padding: 40px;
}

.mockup-line {
  height: 12px;
  background: #f1f5f9;
  border-radius: 6px;
  margin-bottom: 20px;
}

.mockup-line.title {
  width: 70%;
  height: 18px;
  background: var(--primary);
  opacity: 0.15;
  margin-bottom: 40px;
}

.mockup-line.short { width: 45%; }
.mockup-line.long { width: 100%; }

.mockup-row {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.mockup-box {
  flex: 1;
  height: 90px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}

.mockup-box.card-1 { border-bottom: 5px solid var(--primary); }
.mockup-box.card-2 { border-bottom: 5px solid var(--gold); }

.hero-card .form-control,
.hero-card .form-select {
  border: 1px solid #d0d5dd;
  background: #fff;
  color: var(--text-dark);
  padding: 12px 16px;
  font-size: 16px;
}

/* ── Inner Page Hero ─────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), #1a237e);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/inner-hero-bg.png') no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

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

.page-hero-text {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  flex: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.page-hero .breadcrumb-item, 
.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}

.page-hero .breadcrumb-item.active {
  color: var(--gold);
}

.page-hero-visual {
  flex: 0 0 300px;
  display: none;
}

@media (min-width: 992px) {
  .page-hero-visual {
    display: block;
  }
}

.inner-hero-illustration {
  width: 100%;
  height: 220px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transform: rotate(2deg);
  animation: floatSmall 4s ease-in-out infinite;
}

@keyframes floatSmall {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

.inner-hero-illustration i {
  font-size: 90px;
  color: var(--gold);
  filter: drop-shadow(0 10px 15px rgba(255, 193, 7, 0.4));
}

.floating-shape {
  position: absolute;
  pointer-events: none;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(60px);
}

/* ── Section Styles ──────────────────────── */
.section-badge {
  background: var(--accent-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 640px;
}

/* ── Service Cards ───────────────────────── */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0;
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--bg-light);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.1);
}

.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary);
}

.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card .card-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin-top: auto;
}

.service-card .card-link:hover {
  gap: 12px;
}

/* ── How It Works ────────────────────────── */
.step-item {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
  z-index: 1;
}

.step-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(26, 35, 126, 0.2);
}

.step-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}

.feature-item h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ── Testimonials ────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
}

.testimonial-card .stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-light);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  margin: 0;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px;
}

.author-loc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── CTA Section ─────────────────────────── */
.cta-section {
  background: var(--primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Footer ──────────────────────────────── */
.main-footer {
  background: #061929;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 18px;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-links {
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a i {
  font-size: 10px;
  opacity: 0.5;
}

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

.footer-contact {
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-contact li i {
  color: var(--gold);
  margin-top: 3px;
}

.footer-contact li a {
  color: inherit;
  text-decoration: none;
}

/* ── Form Layouts & Controls ──────────────── */
.review-form-card, .contact-form-card, .form-container-premium {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control, .form-select {
  border: 1px solid #d0d5dd;
  padding: 12px 16px;
  font-size: 15px;
  transition: var(--transition);
  border-radius: 8px;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
  outline: none;
}

/* ── Buttons ─────────────────────────────── */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.2);
}

.btn-warning {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-warning:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
    padding: 60px 0;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Team Section ────────────────────────── */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

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

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 36px;
  color: #fff;
}

/* ── Blog Page ───────────────────────────── */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card .category-badge {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 10px;
}

/* ── Contact Page ────────────────────────── */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
}

/* ── Admin Panel ─────────────────────────── */
.admin-sidebar {
  min-height: 100vh;
  background: var(--primary);
  width: 260px;
  flex-shrink: 0;
}

.admin-sidebar .sidebar-brand {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar .nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 12px 20px !important;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 8px;
  margin: 2px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.admin-sidebar .nav-link i {
  width: 20px;
  text-align: center;
}

.admin-topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-content {
  flex: 1;
  background: var(--bg-light);
  min-height: 100vh;
  padding: 24px;
}

.stat-widget {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid;
  display: flex;
  align-items: center;
  gap: 18px;
}

.stat-widget-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

.stat-widget .value {
  font-size: 28px;
  font-weight: 800;
}

.stat-widget .title {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Legal Pages ─────────────────────────── */
.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

/* ── Footer ──────────────────────────────── */
.main-footer {
  background: #061929;
}

.footer-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-text {
  color: #8fa3b1;
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #8fa3b1;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: #8fa3b1;
  font-size: 14px;
}

.footer-contact li i {
  color: var(--gold);
  width: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: #8fa3b1;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.07);
}

.footer-legal-link {
  color: #6c8394;
  font-size: 12.5px;
  text-decoration: none;
  margin-left: 14px;
  transition: var(--transition);
}

.footer-legal-link:hover {
  color: var(--gold);
}

.social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #8fa3b1;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: #fff;
}

/* ── Utilities ───────────────────────────── */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

.bg-light-custom {
  background: var(--bg-light);
}

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

.text-accent {
  color: var(--accent);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0 60px;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-company-name {
    margin-bottom: 20px;
  }

  .hero-card {
    margin-top: 30px;
    padding: 30px 20px;
  }

  .main-navbar {
    padding: 10px 0;
  }

  .dropdown-menu-custom {
    border: none;
    box-shadow: none;
    padding-left: 15px;
    background: transparent;
  }

  .admin-sidebar {
    width: 100%;
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    display: none !important;
  }

  .hero-stats {
    gap: 15px;
  }
}

/* ── Premium Finance Form ────────────────── */
.premium-form-container {
  background: #fff;
  border-radius: 30px;
  padding: 60px 50px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.form-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.form-title span {
  color: var(--primary); /* Updated to match theme */
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 16px;
}

.premium-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #475467;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-input,
.premium-select,
.premium-textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid #eaecf0;
  background: #f9fafb;
  font-size: 15px;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.premium-input:focus,
.premium-select:focus,
.premium-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
}

.premium-submit-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 20px;
}

.premium-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
}

.premium-checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 10px;
}

.premium-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--primary);
}

.checkbox-label {
  font-size: 14px;
  color: #667085;
  line-height: 1.5;
}

.theme-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.theme-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .premium-form-container {
    padding: 40px 25px;
  }
}