/* ==========================================================================
   WeddingSeva - Core Stylesheet
   Maroon & Gold Wedding Directory Theme
   ========================================================================== */

:root {
  --primary-maroon: #7D0A15;
  --dark-maroon: #5A040B;
  --gold: #C5A059;
  --light-gold: #E8C575;
  --cream: #FFFDF9;
  --cream-dark: #F7F3E9;
  --dark-text: #2A2421;
  --light-text: #6B625E;
  --border-color: #E2DDD5;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(90, 4, 11, 0.08);
  --shadow-lg: 0 10px 25px rgba(90, 4, 11, 0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--dark-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--primary-maroon);
  text-decoration: none;
  transition: var(--transition);
}

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

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--dark-maroon);
  line-height: 1.3;
}

/* Layout Utilities */
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-muted { color: var(--light-text); }
.bg-cream { background-color: var(--cream-dark); }
.bg-maroon { background-color: var(--primary-maroon); }
.font-weight-bold { font-weight: 700; }
.d-none { display: none !important; }
.flex-grow-1 { flex-grow: 1; }
.flex-grow-0 { flex-grow: 0; }
.w-100 { width: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 0.95rem;
}

.btn-maroon {
  background-color: var(--primary-maroon);
  color: #fff;
}

.btn-maroon:hover {
  background-color: var(--dark-maroon);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background-color: var(--light-gold);
  color: var(--dark-maroon);
  transform: translateY(-2px);
}

.btn-outline-maroon {
  background-color: transparent;
  border-color: var(--primary-maroon);
  color: var(--primary-maroon);
}

.btn-outline-maroon:hover {
  background-color: var(--primary-maroon);
  color: #fff;
}

.btn-outline-white {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-outline-white:hover {
  background-color: #fff;
  color: var(--primary-maroon);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Header */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo i {
  color: var(--gold);
}

.logo-gold { color: var(--gold); }
.logo-maroon { color: var(--primary-maroon); }
.logo-white { color: #fff; }

.nav-menu {
  display: flex;
  align-items: center;
}

.header-actions-mobile {
  display: none !important;
}


.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-link {
  color: var(--light-text);
  font-weight: 500;
  font-size: 0.925rem;
  padding: 8px 12px;
  position: relative;
  white-space: nowrap !important;
}



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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background-color: var(--gold);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  width: 230px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  padding: 10px 0;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: var(--light-text);
  font-size: 0.875rem;
}

.dropdown-menu li a:hover {
  background-color: var(--cream-dark);
  color: var(--primary-maroon);
  padding-left: 24px;
}

.dropdown-menu .divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 8px 0;
}

.dropdown-menu .all-services-link {
  font-weight: 600;
  color: var(--primary-maroon);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--primary-maroon);
  transition: var(--transition);
}

/* Home Hero Banner */
.home-hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?q=80&w=1470&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(90, 4, 11, 0.9) 0%, rgba(42, 36, 33, 0.8) 100%);
}

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

.display-4 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.search-bar-container {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.search-input-group {
  display: flex;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
}

.search-icon {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--light-text);
  font-size: 1.2rem;
}

.search-input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--dark-text);
  padding: 12px 5px;
}

.search-input-group button {
  border-radius: 50px;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  max-height: 250px;
  overflow-y: auto;
  z-index: 10;
  text-align: left;
  display: none;
}

.suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background-color: var(--cream-dark);
  color: var(--primary-maroon);
}

.suggestion-item i {
  color: var(--gold);
}

.quick-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--cream-dark);
  text-transform: uppercase;
}

/* Service Detail Hero */
.service-hero {
  padding: 60px 0;
}

.hero-icon-badge {
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hero-icon-badge i {
  font-size: 2rem;
  color: var(--primary-maroon);
}

.service-hero .hero-title,
.page-title-banner h1 {
  color: #ffffff;
}

.hero-lead {
  max-width: 700px;
  margin: 10px auto 0;
  opacity: 0.9;
}

/* Breadcrumbs */
.breadcrumb-container {
  background-color: var(--cream-dark);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}

.breadcrumbs {
  display: flex;
  list-style: none;
  gap: 8px;
  font-size: 0.875rem;
}

.breadcrumbs li::after {
  content: '/';
  margin-left: 8px;
  color: var(--light-text);
}

.breadcrumbs li:last-child::after {
  content: none;
}

.breadcrumbs li.active {
  color: var(--light-text);
}

/* Sidebar Layout */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  align-items: start;
}

.card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: 24px;
}

.section-title {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lead-text {
  font-size: 1.1rem;
  color: var(--light-text);
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.category-card {
  text-align: center;
  padding: 30px 20px;
}

.category-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--cream-dark);
  color: var(--primary-maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: var(--transition);
}

.category-card:hover .category-card-icon {
  background-color: var(--primary-maroon);
  color: var(--gold);
  transform: rotateY(360deg);
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--light-text);
  margin-bottom: 15px;
}

/* Steps Timeline */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  gap: 15px;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.step-content p {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* FAQs Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  background-color: var(--cream-dark);
  padding: 16px 20px;
  width: 100%;
  text-align: left;
  border: none;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--dark-maroon);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 20px;
  background: #fff;
  border-top: 1px solid var(--border-color);
  display: none;
  font-size: 0.95rem;
  color: var(--light-text);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

/* Forms */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-maroon);
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.alert {
  padding: 14px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.alert-success {
  background-color: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
}

.alert-warning {
  background-color: #FFF3E0;
  color: #E65100;
  border: 1px solid #FFE0B2;
}

.alert-danger {
  background-color: #FFEBEE;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

/* Sidebar Specifics */
.sticky-card {
  position: sticky;
  top: 100px;
}

.card-sidebar-cta {
  border: 2px solid var(--gold);
}

.card-sidebar-cta .card-header {
  border-bottom: 2px solid var(--gold);
}

.related-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.related-links-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-img {
  height: 180px;
  background-color: var(--cream-dark);
  background-image: linear-gradient(135deg, var(--gold) 0%, var(--primary-maroon) 100%);
  position: relative;
}

.blog-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-meta-sm {
  font-size: 0.75rem;
  color: var(--light-text);
  margin-bottom: 12px;
}

.blog-card-excerpt {
  color: var(--light-text);
  font-size: 0.875rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.blog-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-categories-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-categories-list a {
  font-weight: 500;
  color: var(--light-text);
}

.blog-categories-list a:hover {
  color: var(--primary-maroon);
}

.blog-badge {
  background-color: var(--gold);
  color: #fff;
  padding: 4px 12px;
  font-size: 0.8rem;
  border-radius: 4px;
  font-weight: 600;
}

/* Interactive Checklist Tool */
.progress-bar-bg {
  background-color: var(--cream-dark);
  border-radius: 10px;
  height: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  transition: width 0.5s ease;
}

.timeline-accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
}

.timeline-accordion-header {
  background-color: var(--cream-dark);
  padding: 16px 20px;
  width: 100%;
  text-align: left;
  border: none;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--dark-maroon);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-accordion-header::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  transition: var(--transition);
}

.timeline-accordion-item.active .timeline-accordion-header::after {
  transform: rotate(180deg);
}

.timeline-accordion-content {
  padding: 20px;
  background: #fff;
  border-top: 1px solid var(--border-color);
  display: none;
}

.timeline-accordion-item.active .timeline-accordion-content {
  display: block;
}

.checklist-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: var(--transition);
}

.checklist-item:hover {
  background-color: var(--cream-dark);
}

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

.checklist-item-text {
  flex-grow: 1;
}

.checklist-item.completed .checklist-item-text {
  text-decoration: line-through;
  color: var(--light-text);
  opacity: 0.7;
}

.btn-delete-task {
  background: transparent;
  border: none;
  color: #C62828;
  cursor: pointer;
  opacity: 0.3;
  transition: var(--transition);
}

.checklist-item:hover .btn-delete-task {
  opacity: 1;
}

/* Interactive Calculator Tool */
.input-group-budget {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--primary-maroon);
  border-radius: 8px;
  overflow: hidden;
}

.currency-symbol {
  background-color: var(--primary-maroon);
  color: #fff;
  padding: 10px 18px;
  font-size: 1.5rem;
  font-weight: 700;
}

.input-group-budget input {
  border: none;
  outline: none;
  font-size: 1.5rem;
  padding: 10px;
  width: 100%;
}

.quick-budget-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preset-btn {
  border-radius: 20px;
  font-size: 0.8rem;
  padding: 6px 14px;
}

.preset-btn.active {
  background-color: var(--primary-maroon);
  color: #fff;
}

.budget-sliders-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.budget-slider-item {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 16px 20px;
  background-color: #fff;
}

.budget-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.budget-slider-header h4 {
  font-size: 1.1rem;
  margin: 0;
}

.budget-slider-val {
  font-weight: 700;
  color: var(--primary-maroon);
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.slider-input {
  flex-grow: 1;
  accent-color: var(--primary-maroon);
  height: 6px;
  cursor: pointer;
}

.slider-percent {
  font-size: 0.85rem;
  width: 45px;
  text-align: right;
  font-weight: 600;
  color: var(--light-text);
}

.card-budget-summary {
  box-shadow: var(--shadow-lg);
  border: none;
}

.summary-stat-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
}

.summary-stat-box:last-of-type {
  border-bottom: none;
}

.text-cream-light {
  color: var(--cream-dark);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Footer */
.main-footer {
  background-color: var(--dark-maroon);
  color: var(--cream-dark);
  padding: 60px 0 0;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  padding-bottom: 8px;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

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

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--gold);
  width: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.legal-links {
  margin-top: 20px;
  font-size: 0.75rem;
}

.legal-links a {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .layout-sidebar {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .display-4 {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .header-actions {
    display: none;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    padding: 30px;
    transition: var(--transition);
    z-index: 999;
    height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 15px;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    display: none;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .quick-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==========================================================================
   Lightweight Grid & Layout Utilities
   ========================================================================== */

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class*="col-"] {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3%;
  }
}



/* Spacing Utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mr-3 { margin-right: 1rem !important; }

.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* Flexbox & Alignments */
.d-flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }

/* Highlight & Color Helpers */
.bg-gold {
  background-color: var(--gold) !important;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--gold) 100%) !important;
}

.text-maroon-dark {
  color: var(--dark-maroon) !important;
}

.text-maroon {
  color: var(--primary-maroon) !important;
}

.max-width-md {
  max-width: 600px;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Shadow Utility Classes */
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

/* Typography & Visual Accents */
.uppercase { text-transform: uppercase !important; }
.tracking-wider { letter-spacing: 0.05em !important; }
.position-relative { position: relative !important; }
.overflow-hidden { overflow: hidden !important; }
.z-1 { z-index: 1 !important; }

.gold-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(197, 160, 89, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tools-cta-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.sub-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.join-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.join-benefit-item i {
  margin-right: 8px;
}

.contact-info-item {
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  border: 1px solid var(--border-color);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-connect {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 20px;
}

.blog-card-vertical {
  margin-bottom: 24px;
}

.blog-categories-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

