/* ============================================================
   SPARTA BOOK PUBLISHING - Main Stylesheet
   Author: SPARTA BOOK PUBLISHING
   Bootstrap 5 + Custom CSS
   Color Theme: Navy Blue (#1A2744) + Soft Beige (#F5F5DC) + Burnt Orange (#CC5500)
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens / Variables)
   ============================================================ */
:root {
  /* --- Primary Brand Colors --- */
  --color-primary: #1A2744;
  /* Navy Blue */
  --color-secondary: #F5F5DC;
  /* Soft Beige */
  --color-accent: #CC5500;
  /* Burnt Orange */
  --color-primary-dark: #0F172A;
  /* Darker Navy */

  /* --- Background Colors --- */
  --color-bg-white: #FCFAEE;
  --color-bg-light: #F5F5DC;
  --color-bg-navy: #1A2744;
  --color-bg-gray: #E5E5E1;

  /* --- Text Colors --- */
  --color-text-dark: #1A2744;
  --color-text-navy: #1A2744;
  --color-text-muted: #526071;
  --color-text-white: #FFFFFF;
  --color-text-gold: #CC5500;

  /* --- Border / Divider Colors --- */
  --color-border: rgba(26, 39, 68, 0.1);
  --color-border-gold: rgba(204, 85, 0, 0.4);

  /* --- Typography --- */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-size-base: 16px;

  /* --- Spacing --- */
  --section-padding: 100px 0;
  --section-padding-sm: 60px 0;

  /* --- Border Radius --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  /* --- Shadows --- */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 4px 15px rgba(204, 85, 0, 0.4);

  /* --- Transitions --- */
  --transition: all 0.3s ease-in-out;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1320px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ============================================================
   2. GLOBAL RESET & BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Smooth scrolling for anchor links */
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-white);
  color: var(--color-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-navy);
  line-height: 1.2;
  font-weight: 700;
}

p {
  color: #374151;
  /* Darker base color for better contrast */
  margin-bottom: 1.5rem;
  font-weight: 450;
  /* Slightly heavier for clarity */
  line-height: 1.8;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-padding {
  padding: var(--section-padding);
}

/* Section on dark background */
.section-dark {
  background-color: var(--color-bg-main);
}

/* Section on slightly lighter dark background */
.section-alt {
  background-color: var(--color-bg-section);
}

/* Section on light background */
.section-light {
  background-color: var(--color-bg-light);
}

.section-centered {
  text-align: center;
}

.section-centered p {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* ============================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================ */

/* --- Section Labels (small text above heading) --- */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(96, 165, 250, 0.12);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(96, 165, 250, 0.3);
  margin-bottom: 20px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* --- Section Headings --- */
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  /* Responsive font size */
  margin-bottom: 2rem;
  position: relative;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title span {
  color: var(--color-accent);
  /* Highlighted word in heading */
}

/* --- Section Descriptions --- */
.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 620px;
}

.section-desc.centered {
  margin: 0 auto;
  text-align: center;
}

/* --- Gold underline divider under headings --- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  margin: 16px 0 24px;
  border-radius: 2px;
}

.gold-divider.centered {
  margin: 16px auto 24px;
}

/* ============================================================
   4. BUTTON STYLES
   ============================================================ */

/* --- Primary Gold Button --- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

/* --- Outline Light Button --- */
.btn-outline-light-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-outline-light-custom:hover {
  background: rgba(26, 39, 68, 0.05);
  transform: translateY(-2px);
}

/* --- Navy Button --- */
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-navy:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-text-white);
}

/* ============================================================
   5. TOP ANNOUNCEMENT BAR
   ============================================================ */
.top-bar {
  background: var(--color-primary);
  padding: 8px 0;
  font-size: 0.85rem;
  color: white;
}

.top-bar .offer-text {
  color: var(--color-secondary);
  font-weight: 700;
}

.top-bar a {
  color: white;
  font-weight: 600;
}

.top-bar a:hover {
  color: var(--color-secondary);
}

.top-bar .top-bar-icons i {
  color: var(--color-secondary);
  margin-right: 5px;
}

/* ============================================================
   6. NAVIGATION / HEADER
   ============================================================ */
.main-navbar {
  background: var(--color-secondary);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.main-navbar.scrolled {
  box-shadow: var(--shadow-md);
}

/* --- Logo Styles --- */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  height: 48px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: black;
}

.logo-text .brand-tagline {
  font-size: 0.65rem;
  color: var(--color-secondary);
  font-weight: 700;
  letter-spacing: 1px;
}

/* --- Nav Links --- */
.main-navbar .nav-link {
  color: var(--color-primary) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 15px !important;
  transition: var(--transition);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: #000 !important;
}

/* --- Dropdown Menu --- */
.main-navbar .dropdown-menu {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.main-navbar .dropdown-item {
  color: var(--color-primary);
  font-size: 0.88rem;
}

.main-navbar .dropdown-item:hover {
  background: var(--color-bg-light);
  color: var(--color-secondary);
}

/* --- Navbar CTA Button --- */
.nav-cta-btn {
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  color: var(--color-text-white) !important;
  font-weight: 700 !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-gold);
}

.nav-cta-btn:hover {
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary)) !important;
  transform: translateY(-2px);
  color: var(--color-text-white) !important;
}

.nav-cta-btn::after {
  display: none !important;
  /* Remove underline animation on CTA */
}

/* --- Mobile Navbar Toggle --- */
.navbar-toggler {
  border: 2px solid var(--color-accent) !important;
  border-radius: var(--radius-sm) !important;
}

.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(204,85,0,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero-section-centered {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-bg-white);
  padding: 100px 0;
  text-align: center;
}

.hero-content-left {
  text-align: center;
  z-index: 2;
  position: relative;
  margin: 0 auto;
}

.hero-main-title {
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}

.hero-main-title span {
  color: var(--color-accent);
}

.hero-trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #444;
  font-weight: 600;
}

.hero-trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-icon {
  color: var(--color-accent);
  font-size: 1.1rem;
}

.hero-image-right {
  position: relative;
  z-index: 2;
}

.hero-mockups {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.platform-badges-row {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
  align-items: center;
  justify-content: center;
}

.platform-badge-item {
  background: white;
  padding: 8px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-badge-item img {
  height: 25px;
  width: auto;
}

/* Background image overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/header-img.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

/* Intro Section with Form */
.intro-form-section {
  padding: 80px 0;
  background-color: #fff;
}

.intro-content h2 {
  font-size: 2.5rem;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}

.intro-content .text-gold {
  color: var(--color-accent) !important;
}

.consultation-form-card {
  background: var(--color-primary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: none;
}

.form-header {
  background-color: transparent;
  padding: 30px 25px 10px;
  text-align: left;
}

.form-header h4 {
  color: var(--color-accent);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.form-body {
  padding: 25px;
}

.form-body .form-control,
.form-body .form-select {
  border: none;
  background: white;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.form-body textarea {
  height: 100px;
}

.btn-form-submit {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  margin-bottom: 10px;
}

.btn-form-submit:hover {
  background-color: #1D4ED8;
  transform: translateY(-2px);
  color: white;
}

.btn-whatsapp-submit {
  background-color: #25D366;
  color: white;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-whatsapp-submit:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 255, 255, 0.95) 100%);
}

.hero-content {
  position: relative;
  /* Above the overlay */
  z-index: 2;
  padding: 100px 0 60px;
}

/* Hero badge before heading */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 85, 0, 0.15);
  border: 1px solid rgba(204, 85, 0, 0.4);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease forwards;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: blink 1.5s infinite;
  /* Blinking live indicator */
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Hero main heading */
.hero-heading {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-primary);
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-heading .highlight {
  color: var(--color-accent);
  position: relative;
}

/* Hero description */
.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

/* Hero buttons row */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

/* --- Stats Row at bottom of hero --- */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border-light);
  animation: fadeInUp 0.7s ease 0.4s both;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   8. SERVICES SECTION
   ============================================================ */
.services-section {
  padding: var(--section-padding);
  background: var(--color-bg-section);
}

/* Service card */
.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Decorative corner glow */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(204, 85, 0, 0.15) 0%, transparent 70%);
  border-radius: 0 12px 0 80px;
}

.service-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(204, 85, 0, 0.12);
  border: 2px solid rgba(204, 85, 0, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  /* Center icon */
  font-size: 1.6rem;
  color: var(--color-accent);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--color-primary);
  text-align: center;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.service-link {
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center link */
  gap: 6px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--color-gold-light);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ============================================================
   9. ABOUT / FEATURES SECTION
   ============================================================ */
.about-section {
  padding: var(--section-padding);
  background: var(--color-bg-main);
}

.about-image-wrap {
  position: relative;
}

/* Decorative frame around about image */
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  opacity: 0.4;
}

.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}

/* Experience badge overlaid on image */
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-primary-dark);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  font-weight: 800;
  z-index: 2;
  box-shadow: var(--shadow-gold);
}

.experience-badge .exp-number {
  font-size: 2rem;
  display: block;
  line-height: 1;
  font-family: var(--font-heading);
}

.experience-badge .exp-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Feature list items in about section */
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(204, 85, 0, 0.12);
  border: 1px solid rgba(204, 85, 0, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.1rem;
}

.feature-text h6 {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-text p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* ============================================================
   10. BOOK PORTFOLIO / COLLECTIONS SECTION
   ============================================================ */
.portfolio-section {
  padding: var(--section-padding);
  background: var(--color-bg-section);
}

.book-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%;
}

.book-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.book-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.book-card:hover img {
  transform: scale(1.05);
  /* Subtle zoom on hover */
}

.book-card-body {
  padding: 20px;
}

.book-card-body h5 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.book-card-body p {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   11. WHY CHOOSE US / FEATURES SECTION
   ============================================================ */
.why-section {
  padding: var(--section-padding);
  background: var(--color-bg-main);
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.why-card .why-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin: 0 auto 16px;
  /* Center icon */
  display: block;
}

.why-card h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}

.why-card .why-tag {
  display: inline-block;
  background: rgba(204, 85, 0, 0.1);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-top: 14px;
  border: 1px solid rgba(204, 85, 0, 0.2);
}

/* ============================================================
   12. PROCESS STEPS SECTION
   ============================================================ */
.process-section {
  padding: var(--section-padding);
  background: var(--color-bg-section);
}

.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

/* Vertical connector line between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  width: 2px;
  height: calc(100% - 16px);
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

.step-number {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: rgba(204, 85, 0, 0.1);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-gold);
  position: relative;
  z-index: 1;
}

.step-content h5 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   13. CTA BANNER SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding);
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/cta_banner_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(26, 39, 68, 0.85));
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-content h2 span {
  color: var(--color-gold);
}

.cta-content p {
  max-width: 540px;
  margin: 0 auto 32px;
  color: var(--color-text-muted);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================================
   14. TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--color-bg-main);
}

.review-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  position: relative;
  height: 100%;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Large quote mark */
.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  color: rgba(204, 85, 0, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

/* Star rating */
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars i {
  color: var(--color-gold);
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.reviewer-title {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ============================================================
   15. BLOG SECTION
   ============================================================ */
.blog-section {
  padding: var(--section-padding);
  background: var(--color-bg-section);
}

.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

/* Loading skeleton placeholder for blog images */
.blog-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #1a2744 25%, #253560 50%, #1a2744 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  /* Shimmer loading effect */
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.blog-card-body {
  padding: 22px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.blog-category {
  background: rgba(204, 85, 0, 0.12);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(204, 85, 0, 0.2);
}

.blog-card-body h5 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--color-primary);
  line-height: 1.45;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-read-more {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: var(--color-gold-light);
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* Loading spinner for blog fetch */
.blog-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-gold);
}

.blog-loading .spinner-border {
  color: var(--color-gold) !important;
}

/* Error notice for blog API */
.blog-api-notice {
  background: rgba(204, 85, 0, 0.1);
  border: 1px solid rgba(204, 85, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  color: var(--color-text-muted);
}

.blog-api-notice i {
  font-size: 2rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 12px;
}

/* ============================================================
   16. FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--section-padding);
  background: var(--color-bg-main);
}

/* Custom Bootstrap accordion overrides */
.faq-accordion .accordion-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: var(--color-bg-card);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 20px 24px;
  border: none;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(204, 85, 0, 0.08);
  color: var(--color-gold);
  box-shadow: none;
}

/* Custom expand/collapse icon */
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CC5500'%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") !important;
}

.faq-accordion .accordion-body {
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 0 24px 20px;
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-primary-dark);
  border-top: 2px solid var(--color-gold);
  padding: 70px 0 0;
}

/* Footer brand section */
.footer-brand .footer-logo {
  height: 55px;
  width: auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  max-width: 300px;
  line-height: 1.7;
}

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(204, 85, 0, 0.1);
  border: 1px solid rgba(204, 85, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

/* Footer section headings */
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

/* Footer links */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: var(--color-gold);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

/* Footer contact info */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.footer-contact li i {
  color: var(--color-gold);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-contact a {
  color: var(--color-text-muted);
}

.footer-contact a:hover {
  color: var(--color-gold);
}

/* --- Newsletter Form in Footer --- */
.footer-newsletter .newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-newsletter input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  color: var(--color-text-white);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

.footer-newsletter input[type="email"]:focus {
  border-color: var(--color-gold);
  background: rgba(204, 85, 0, 0.05);
}

.footer-newsletter input[type="email"]::placeholder {
  color: var(--color-text-muted);
}

.footer-newsletter button {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-primary-dark);
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter button:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

/* Footer bottom copyright bar */
.footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  border-top: 1px solid var(--color-border-light);
}

.footer-bottom p {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-bottom a {
  color: var(--color-gold);
}

/* ============================================================
   18. WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  /* Always on top */
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  /* Official WhatsApp green */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  position: relative;
  transition: var(--transition);
  text-decoration: none;
}

/* Pulse ring around WhatsApp button */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2s ease-in-out infinite;
}

@keyframes wa-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.5;
  }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #20ba58;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* Tooltip label for WhatsApp */
.whatsapp-tooltip {
  background: #25D366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   19. CONTACT FORM SECTION
   ============================================================ */
.contact-section {
  padding: var(--section-padding);
  background: var(--color-bg-section);
}

/* Contact info cards */
.contact-info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.contact-info-card .info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(204, 85, 0, 0.12);
  border: 1px solid rgba(204, 85, 0, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.3rem;
}

.contact-info-card h6 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-info-card a:hover {
  color: var(--color-gold);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.contact-form-wrap h4 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  color: var(--color-text-white);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--color-secondary);
  background: rgba(204, 85, 0, 0.08);
  box-shadow: 0 0 0 3px rgba(204, 85, 0, 0.15);
  color: var(--color-text-white);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-select option {
  background: #1A2744;
  /* Force dark background for options */
  color: var(--color-text-white);
}

/* Form validation feedback */
.form-success-msg {
  text-align: center;
  padding: 20px;
  color: #4CAF50;
  font-weight: 600;
  display: none;
}

/* ============================================================
   20. PAGE HERO (Inner Pages - About, Services, etc.)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--color-gold);
}

/* Subtle background grid pattern */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204, 85, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 85, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.page-hero h1 span {
  color: var(--color-gold);
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  /* Brighter for dark background */
  max-width: 500px;
  margin: 0 auto;
}

/* Breadcrumb navigation */
.breadcrumb-nav {
  margin-top: 20px;
}

.breadcrumb-nav a {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.breadcrumb-nav a:hover {
  color: var(--color-gold);
}

.breadcrumb-nav .separator {
  color: var(--color-text-muted);
  margin: 0 8px;
}

.breadcrumb-nav .current {
  color: var(--color-gold);
  font-size: 0.85rem;
}

/* ============================================================
   21. REVIEWS PAGE SPECIFIC
   ============================================================ */
.reviews-section {
  padding: var(--section-padding);
  background: var(--color-bg-main);
}

/* Aggregate rating block */
.rating-summary {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.rating-big {
  font-size: 4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.rating-stars-big {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 10px 0;
}

.rating-stars-big i {
  color: var(--color-gold);
  font-size: 1.4rem;
}

/* ============================================================
   22. BLOG SINGLE PAGE
   ============================================================ */
.blog-post-section {
  padding: var(--section-padding);
  background: var(--color-bg-main);
}

.blog-post-featured-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.blog-post-content {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.8;
}

.blog-post-content h2,
.blog-post-content h3 {
  color: var(--color-text-white);
  margin: 28px 0 12px;
}

.blog-post-content a {
  color: var(--color-gold);
}

.blog-post-content img {
  border-radius: var(--radius-sm);
  margin: 20px 0;
}

/* Comment box */
.comment-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 16px;
}

.comment-author {
  font-weight: 600;
  color: var(--color-text-white);
  font-size: 0.9rem;
}

.comment-date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-left: 10px;
}

.comment-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 10px 0 0;
}

/* Comment form */
.comment-form-wrap {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-top: 40px;
}

/* --- Card Hover Effects (About & Reviews) --- */

/* About Us Cards Hover */
.feature-card-white {
  transition: var(--transition);
}

.feature-card-white:hover {
  background-color: var(--color-accent) !important;
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(204, 85, 0, 0.3);
}

.feature-card-white:hover h6,
.feature-card-white:hover p,
.feature-card-white:hover .icon-box i {
  color: white !important;
}

/* Reviews Cards Hover */
.review-card {
  transition: var(--transition);
}

.review-card:hover {
  background-color: var(--color-accent) !important;
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(204, 85, 0, 0.3);
}

.review-card:hover .review-stars i,
.review-card:hover .review-text,
.review-card:hover .reviewer-name,
.review-card:hover .reviewer-title {
  color: white !important;
}

.review-card:hover .reviewer-avatar {
  background-color: white !important;
  color: var(--color-accent) !important;
}

.comment-form-wrap h4 {
  margin-bottom: 20px;
}

/* ============================================================
   23. UTILITY CLASSES
   ============================================================ */

/* Gold text */
.text-gold {
  color: var(--color-gold) !important;
}

/* Section counters badge */
.count-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(204, 85, 0, 0.1);
  border: 1px solid rgba(204, 85, 0, 0.25);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 0.82rem;
  color: var(--color-gold);
  font-weight: 600;
}

/* Divider rule in gold */
.gold-hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 40px 0;
}

/* Overlay loader during form submit */
.btn-loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 95px;
  right: 32px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-size: 1rem;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-to-top:hover {
  background: var(--color-gold);
  color: var(--color-primary-dark);
}

/* ============================================================
   24. ANIMATIONS (Fade-in on scroll)
   ============================================================ */

/* Fade in from bottom */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Delay variants for staggered animations */
.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

/* Hero entrance animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   25. NEW SECTIONS STYLES (White Theme Alignment)
   ============================================================ */

/* Section 6: Why We're #1 */
.bg-navy {
  background-color: var(--color-primary-dark) !important;
}

.feature-list-white {
  list-style: none;
  padding: 0;
}

.feature-list-white li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* Section 7: What We Offer */
.what-we-offer .offer-item {
  background: var(--color-bg-white);
  padding: 25px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.what-we-offer .offer-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

/* Section 8: Main Services */
.service-box-new {
  background-color: var(--color-bg-card);
  transition: var(--transition);
  text-align: center;
  border-bottom: 4px solid var(--color-accent) !important;
  border-radius: var(--radius-md);
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.service-box-new i {
  color: var(--color-accent) !important;
  font-size: 2.8rem !important;
  margin-bottom: 1.5rem !important;
  display: block;
}

.service-box-new h5 {
  color: var(--color-primary-dark) !important;
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-box-new p {
  color: var(--color-text-muted) !important;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.service-box-new:hover {
  transform: translateY(-10px);
  background-color: #fff !important;
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--color-primary) !important;
}

/* Section 9: Why Choose Us (Icon Grids) */
.bg-light-secondary {
  background-color: rgba(204, 85, 0, 0.4);
}

.choice-item h6 {
  font-size: 0.95rem;
  margin-top: 10px;
}

/* Section 10: CTA Banner New */
.cta-banner-section {
  min-height: 400px;
  display: flex;
  align-items: center;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

/* FAQ New */
.faq-section-new .accordion-button:not(.collapsed) {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.faq-section-new .accordion-button {
  font-weight: 600;
}

/* Testimonials New */
.testimonials-new .testimonial-card {
  border-left: 4px solid var(--color-secondary);
}

/* Footer Overhaul & Utility */
.hover-secondary:hover {
  color: var(--color-secondary) !important;
}

/* --- Mobile Specific Fixes --- */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-stats {
    gap: 15px;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* WhatsApp Floating Fix */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white !important;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white !important;
}

/* ============================================================
   26. STATS RIBBON & ENHANCED WHY CHOOSE US
   ============================================================ */

.stats-ribbon {
  background: var(--color-primary);
  border-top: 4px solid var(--color-secondary);
  border-bottom: 4px solid var(--color-secondary);
  padding: 15px 0;
  color: var(--color-secondary);
  font-weight: 700;
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  animation: scrollTicker 30s linear infinite;
  align-items: center;
}

.ticker-item {
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.stats-ribbon .stat-divider {
  color: var(--color-white);
  opacity: 0.3;
  margin: 0 20px;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.why-choose-us-detailed {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.why-choose-us-detailed .feature-card-dark {
  background-color: var(--color-primary);
  color: white;
  padding: 45px 35px;
  border-radius: 16px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.why-choose-us-detailed .feature-card-dark p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1rem;
  line-height: 1.7;
}

.why-choose-us-detailed .feature-card-dark:hover {
  transform: translateY(-12px);
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  box-shadow: 0 20px 45px rgba(204, 85, 0, 0.4);
}

.why-choose-us-detailed .feature-card-dark:hover i,
.why-choose-us-detailed .feature-card-dark:hover h5,
.why-choose-us-detailed .feature-card-dark:hover p {
  color: white !important;
}

.why-choose-us-detailed .card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.why-choose-us-detailed .card-icon img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.platform-strip-enhanced {
  background-color: #f0f2f5;
  padding: 40px 0;
}

.platform-strip-enhanced img {
  max-height: 40px;
  filter: none;
  /* Removed grayscale */
  opacity: 1;
  /* Full visibility */
  transition: var(--transition);
}

.platform-strip-enhanced img:hover {
  transform: scale(1.1);
}

/* ============================================================
   27. EMPOWER AUTHORS & CONSULTATION BANNER
   ============================================================ */

.empower-section {
  padding: 80px 0;
  background-color: var(--color-bg-white);
}

.feature-card-white {
  background: var(--color-bg-white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition);
  border: 1px solid #eee;
  text-align: center;
}

/* Center text */

.feature-card-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card-white .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(204, 85, 0, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 50%;
  margin: 0 auto 20px;
  /* Center icon */
}

.feature-card-white h6 {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.feature-card-white p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 450;
}

.consultation-section {
  background-color: var(--color-bg-light) !important;
  /* Soft Beige from theme */
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.consultation-section .section-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: left;
  margin-left: 0;
  max-width: 100%;
  color: var(--color-primary) !important;
  /* Navy Blue */
}

.consultation-section .opis-text {
  font-size: 1.25rem;
  max-width: 100%;
  margin-left: 0;
  line-height: 1.6;
  color: var(--color-text-muted) !important;
}

.book-stack {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-stack img {
  position: absolute;
  max-width: 240px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.book-stack .book-1 {
  z-index: 3;
  transform: translateX(0) scale(1.1);
}

.book-stack .book-2 {
  z-index: 2;
  transform: translateX(-110px) rotate(-10deg) scale(0.9);
  filter: brightness(0.95);
}

.book-stack .book-3 {
  z-index: 1;
  transform: translateX(110px) rotate(10deg) scale(0.9);
  filter: brightness(0.95);
}

.btn-navy-dark {
  background: var(--color-primary);
  color: white;
  padding: 20px 50px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-body);
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
}

.btn-navy-dark:hover {
  background: var(--color-primary-dark);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.book-stack .book-3 {
  transform: rotate(5deg) translateX(-20px);
  z-index: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   16. TESTIMONIAL OVERHAUL (MOSAIC & SCROLL)
   ============================================================ */
.review-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}

.review-mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: none;
  /* Removed grayscale */
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-mosaic img:hover {
  transform: scale(1.1);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.review-summary-card {
  background: var(--color-bg-white);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.review-summary-card .rating-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.review-summary-card .stars {
  color: #ff8a00;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.review-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.review-logo i {
  color: #00b67a;
  /* Trustpilot green */
}

.review-scroll-container {
  height: 250px;
  overflow-y: auto;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 2px;
}

/* Custom scrollbar for navy container */
.review-scroll-container::-webkit-scrollbar {
  width: 8px;
}

.review-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.review-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.review-item {
  padding: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-item:last-child {
  border-bottom: none;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.review-name {
  color: var(--color-text-white);
  font-weight: 700;
  margin: 0;
}

.review-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.review-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.review-author-type {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .review-mosaic {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 575px) {
  .review-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Footer Fix --- */
.site-footer {
  background: var(--color-primary) !important;
  color: var(--color-text-white) !important;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.site-footer .footer-links a:hover {
  color: var(--color-secondary) !important;
}

.site-footer .footer-contact i {
  color: var(--color-secondary) !important;
}

/* New styles based on instructions */
body {
  color: #333;
  /* Darken body text */
}

.review-summary-card .review-logo {
  justify-content: center;
  /* Center icons in cards */
}


/* --- Service Box New (White Cards on Navy) --- */
.main-services-grid {
  background-color: var(--color-primary) !important;
  color: white;
}

.service-box-new {
  background: white !important;
  border: none;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: left;
  height: 100%;
  transition: var(--transition);
  color: var(--color-text-dark);
}

.service-box-new h5 {
  color: var(--color-primary);
  font-weight: 700;
  margin: 15px 0;
  font-size: 1.25rem;
}

.service-box-new p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.service-box-new i {
  font-size: 2.5rem;
  color: var(--color-secondary);
}

.service-box-new:hover {
  transform: translateY(-10px);
  background-color: var(--color-accent) !important;
  box-shadow: 0 15px 30px rgba(204, 85, 0, 0.3);
}

.service-box-new:hover i,
.service-box-new:hover h5,
.service-box-new:hover p,
.service-box-new:hover a {
  color: white !important;
}

/* --- Enjoy Book Publishing At Trust Strip --- */
.trust-strip-container .row {
  opacity: 1 !important;
}

.trust-strip-container i {
  color: var(--color-secondary);
  transition: transform 0.3s ease;
}

.trust-strip-container .col-6:hover i {
  transform: scale(1.2);
}

.trust-strip-container span {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* --- Premium Book Card Scroller --- */
.book-scroll-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 30px 10px 50px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.book-scroll-container.active-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  /* Disable snap during manual drag for smoothness */
  scroll-behavior: auto;
}

/* Custom scrollbar for desktop visibility */
.book-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.book-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.book-scroll-container::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 10px;
}

.book-scroll-item {
  flex: 0 0 22%;
  /* Shows ~4.5 cards on laptop */
  scroll-snap-align: start;
  transition: all 0.5s ease;
  animation: fadeSlideUp 0.8s ease-out both;
}

.book-scroll-item:nth-child(2) {
  animation-delay: 0.1s;
}

.book-scroll-item:nth-child(3) {
  animation-delay: 0.2s;
}

.book-scroll-item:nth-child(4) {
  animation-delay: 0.3s;
}

.book-scroll-item:nth-child(5) {
  animation-delay: 0.4s;
}

.book-scroll-item:nth-child(6) {
  animation-delay: 0.5s;
}

.book-scroll-item:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.book-card-premium {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: #111;
  aspect-ratio: 2/3;
  width: 100%;
}

.book-card-premium .card-inner {
  height: 100%;
  width: 100%;
  position: relative;
}

.book-card-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-card-premium .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.book-card-premium:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.book-card-premium:hover img {
  transform: scale(1.15);
  filter: brightness(0.7);
}

.book-card-premium:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.book-title {
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.book-author {
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .book-scroll-item {
    flex: 0 0 30%;
    /* 3.3 cards on tablets */
  }
}

@media (max-width: 768px) {
  .book-scroll-container {
    gap: 20px;
    padding: 20px 10px 40px;
  }

  .book-scroll-item {
    flex: 0 0 45%;
    /* 2.2 cards on mobile */
  }

  .book-card-premium:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 480px) {
  .book-scroll-item {
    flex: 0 0 85%;
    /* 1.1 cards on small mobile */
  }
}

/* ============================================================
   28. SERVICES PAGE: TOP-RATED E-BOOK COLLECTIONS
   ============================================================ */
.book-cover-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.book-cover-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.book-cover-item:hover img {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
}

.book-cover-item .bestseller-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* --- Redesigned Process Steps Section --- */
.process-overhaul {
  padding: 80px 0;
  background-color: #fff;
}

.process-list {
  position: relative;
  padding-top: 10px;
}

/* Vertical line connecting bubbles */
.process-list::before {
  content: '';
  position: absolute;
  left: 25px;
  /* Half of 50px bubble width */
  top: 40px;
  bottom: 40px;
  width: 2px;
  background-color: var(--color-primary);
  z-index: 0;
  opacity: 0.8;
}

.process-step-item {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.process-step-item:last-child {
  margin-bottom: 0;
}

.step-num-bubble {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.step-info h5 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
  line-height: 1.2;
}

.step-info p {
  color: #4b5563;
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .process-list::before {
    left: 20px;
  }

  .step-num-bubble {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  .process-step-item {
    gap: 20px;
    margin-bottom: 40px;
  }

  .step-info h5 {
    font-size: 1.25rem;
  }
}

/* Button row for process section */
.btn-row-process {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* PLATFORM SCROLLER - Global Styles */
.platform-strip-enhanced {
  padding: 60px 0;
  background: #F8FAFC;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}

.ticker-header {
  text-align: center;
  margin-bottom: 40px;
}

.platform-scroll-container {
  display: flex;
  align-items: center;
  gap: 80px;
  overflow-x: auto;
  padding: 20px 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  flex-wrap: nowrap;
  cursor: grab;
  user-select: none;
}

.platform-scroll-container.active-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.platform-scroll-container::-webkit-scrollbar {
  display: none;
}

.platform-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
}

.platform-item img {
  height: 45px;
  width: auto;
  filter: none !important;
  opacity: 1 !important;
  transition: transform 0.3s ease;
}

.platform-item img:hover {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .platform-scroll-container {
    justify-content: flex-start;
    gap: 0;
    padding: 20px 0;
  }

  .platform-item {
    flex: 0 0 50%;
    /* EXACTLY 2 LOGOS ON MOBILE SCREEN */
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .platform-strip-enhanced {
    padding: 40px 0;
  }

  .platform-item img {
    height: 55px;
    /* Larger logos on mobile as per reference image */
  }
}

@media (max-width: 480px) {
  .platform-item img {
    height: 40px;
  }
}