/* ==========================================================================
   VELOCITY TRADING COMPANY - DESIGN SYSTEM & CENTRAL STYLESHEET
   ========================================================================== */

/* 1. Imports & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600&display=swap');

/* 2. Custom Properties (Design Tokens) */
:root {
  /* Color Palette */
  --primary: #133B2C;         /* Deep Forest Green */
  --primary-light: #1c523e;   /* Lighter Forest Green for Hover */
  --primary-rgb: 19, 59, 44;
  --accent: #D96A26;          /* Rust Orange */
  --accent-light: #e87a38;    /* Lighter Orange for Hover */
  --accent-rgb: 217, 106, 38;
  --bg-light: #F4F1EA;        /* Warm Cream */
  --bg-light-rgb: 244, 241, 234;
  --white: #FFFFFF;
  --black: #111111;
  --text-dark: #2B2B2B;       /* Charcoal */
  --text-muted: #6C757D;
  --border-color: #E5E0D8;    /* Soft beige-gray border */
  
  /* Typography */
  --font-headings: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  
  /* Layout & Spacing */
  --nav-height: 80px;
  --nav-height-shrunk: 70px;
  --container-max-width: 1240px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

/* 3. Base & Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* 4. Utility Classes */
.container-custom {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.text-serif { font-family: var(--font-headings); }
.text-sans { font-family: var(--font-body); }
.text-accent { color: var(--accent) !important; }
.text-italic { font-style: italic; }
.bg-cream { background-color: var(--bg-light); }
.bg-dark-green { background-color: var(--primary); color: var(--white); }
.bg-white { background-color: var(--white); }

.section-padding {
  padding: 6.5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}

/* 5. Navigation Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  height: var(--nav-height-shrunk);
  background-color: rgba(244, 241, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 224, 216, 0.5);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-link img {
  height: 40px;
  width: auto;
  transition: var(--transition-fast);
}

.main-header.scrolled .logo-link img {
  height: 35px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  color: var(--accent);
  font-weight: 600;
}

.header-cta {
  display: flex;
  align-items: center;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--black);
  color: var(--white) !important;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--black);
}

.phone-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition-fast);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-light);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    z-index: 1050;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* 6. Buttons & Interactive Elements */
.btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition-fast);
  cursor: pointer;
  font-size: 0.95rem;
  border: 2px solid transparent;
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white) !important;
}

.btn-accent:hover {
  background-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white) !important;
  border-color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary) !important;
  transform: translateY(-3px);
}

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

.btn-outline-dark:hover {
  background-color: var(--primary);
  color: var(--white) !important;
  transform: translateY(-3px);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  padding-bottom: 2px;
}

.arrow-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}

.arrow-link:hover::after {
  width: 100%;
}

.arrow-link svg {
  transition: var(--transition-fast);
}

.arrow-link:hover svg {
  transform: translateX(5px);
}

/* 7. Footer Styles */
.main-footer {
  background-color: var(--primary);
  color: var(--bg-light);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-brand h2 {
  color: var(--white);
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.footer-brand .arrow-link {
  color: var(--bg-light);
  font-size: 1.1rem;
}

.footer-brand .arrow-link::after {
  background-color: var(--bg-light);
}

.footer-section-title {
  color: rgba(244, 241, 234, 0.6);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--bg-light);
  opacity: 0.8;
  font-size: 0.95rem;
}

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

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--accent);
}

.footer-contact-item p {
  color: var(--bg-light);
  opacity: 0.8;
  font-size: 0.95rem;
  margin: 0;
}

.footer-contact-item a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(244, 241, 234, 0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* 8. Fade-in Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* 9. Glassmorphic Cards & UI Elements */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 106, 38, 0.3);
}

/* 10. Partner Logo Sliders */
.partners-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.partners-track {
  display: flex;
  gap: 5rem;
  animation: scrollPartners 25s linear infinite;
  width: max-content;
  align-items: center;
}

.partners-track img {
  height: 45px;
  filter: none !important;
  opacity: 1 !important;
  transition: var(--transition-fast);
}

/* Style for the partner strip below the hero */
.partners-hero-strip img {
  height: 35px;
  filter: none !important;
  opacity: 1 !important;
  transition: var(--transition-fast);
}

@keyframes scrollPartners {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 2.5rem)); }
}

/* 11. Transparent Header overrides for Home Page */
.logo-light {
  display: none;
}
.logo-dark {
  display: block;
}

.main-header.header-transparent:not(.scrolled) {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: none !important;
}

.main-header.header-transparent:not(.scrolled) .logo-light {
  display: block;
}
.main-header.header-transparent:not(.scrolled) .logo-dark {
  display: none;
}

.main-header.header-transparent:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

.main-header.header-transparent:not(.scrolled) .nav-link:hover,
.main-header.header-transparent:not(.scrolled) .nav-link.active {
  color: var(--accent) !important;
}

.main-header.header-transparent:not(.scrolled) .mobile-nav-toggle span {
  background-color: var(--white) !important;
}

.main-header.header-transparent:not(.scrolled) .phone-btn {
  background-color: var(--white) !important;
  color: var(--primary) !important;
  border-color: var(--white) !important;
}

.main-header.header-transparent:not(.scrolled) .phone-btn:hover {
  background-color: var(--accent) !important;
  color: var(--white) !important;
  border-color: var(--accent) !important;
}

@media (max-width: 991px) {
  /* Prevent dark text inside mobile drawer menu when header is transparent */
  .main-header.header-transparent:not(.scrolled) .nav-menu.open .nav-link {
    color: var(--text-dark) !important;
  }
  .main-header.header-transparent:not(.scrolled) .nav-menu.open .nav-link.active {
    color: var(--accent) !important;
  }
}

/* 12. Global text overrides for Dark Background sections */
.bg-dark-green p,
.bg-dark-green li,
.cta-banner p,
.main-footer p,
.main-footer li,
.hero-section p,
.hero-subtitle {
  color: var(--bg-light) !important;
  opacity: 0.95 !important;
}

.bg-dark-green h1, .bg-dark-green h2, .bg-dark-green h3, .bg-dark-green h4, .bg-dark-green h5,
.cta-banner h1, .cta-banner h2, .cta-banner h3, .cta-banner h4,
.main-footer h1, .main-footer h2, .main-footer h3, .main-footer h4, .main-footer h5,
.hero-section h1, .hero-section h2, .hero-section h3, .hero-section h4 {
  color: var(--white) !important;
}

.main-footer .footer-section-title {
  color: rgba(244, 241, 234, 0.6) !important;
}

.main-footer .footer-bottom p {
  color: rgba(244, 241, 234, 0.5) !important;
}

.main-footer .footer-bottom a {
  color: rgba(244, 241, 234, 0.5) !important;
}
.main-footer .footer-bottom a:hover {
  color: var(--white) !important;
}


/* 13. Redesign Components (Ticker, Stats Banner, Six Pillars, Map, Certifications, Testimonials) */

/* Scrolling Category Ticker */
.category-ticker {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.category-ticker-track {
  display: inline-flex;
  animation: scrollCategoryTicker 35s linear infinite;
  gap: 3rem;
  align-items: center;
}

.category-ticker-item {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  text-transform: capitalize;
}

.category-ticker-item::after {
  content: '◆';
  color: var(--accent);
  font-size: 0.8rem;
  margin-left: 1.5rem;
}

@keyframes scrollCategoryTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats Banner - horizontal dark green bar */
.stats-banner-wrap {
  width: 100%;
  margin-top: 4rem;
}

.stats-banner {
  background-color: var(--primary);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  color: var(--white);
}

.stat-item-col {
  text-align: center;
  position: relative;
}

.stat-item-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(244, 241, 234, 0.15);
}

@media (max-width: 768px) {
  .stat-item-col:not(:last-child)::after {
    display: none;
  }
  .stat-item-col {
    margin-bottom: 1.5rem;
  }
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244, 241, 234, 0.7);
  font-weight: 600;
}

/* Interactive Split Focus Cards */
.split-focus-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.split-focus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.split-focus-gallery {
  position: relative;
  height: 380px;
  background-color: #f0f0f0;
  overflow: hidden;
}

.split-focus-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.split-focus-slide.active {
  opacity: 1;
  visibility: visible;
}

.split-focus-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-focus-info {
  padding: 2.5rem;
  padding-bottom: 6rem; /* space for absolute controls */
}

.split-focus-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.split-focus-title {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-headings);
}

.split-focus-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

.split-focus-controls {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.split-focus-btn {
  background: var(--white);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--primary);
}

.split-focus-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Six Pillars Services Grid */
.pillar-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.pillar-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.pillar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.pillar-card:hover .pillar-card-img img {
  transform: scale(1.04);
}

.pillar-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pillar-number {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pillar-title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-headings);
  color: var(--primary);
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--text-dark);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Certifications Section */
.cert-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition-normal);
  display: flex;
  gap: 1.25rem;
}

.cert-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.cert-icon {
  color: var(--accent);
  font-size: 2.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.cert-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.cert-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Map Interactive Footprint */
.map-interactive-container {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.map-svg-element {
  width: 100%;
  height: auto;
  max-height: 440px;
  display: block;
}

.map-pins-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--accent);
  border: 3px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  pointer-events: auto;
}

.map-pin::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.map-pin:hover,
.map-pin.active {
  transform: scale(1.3);
  background-color: var(--primary);
  border-color: var(--white);
}

.map-pin:hover::after,
.map-pin.active::after {
  opacity: 0.4;
  transform: scale(1.4);
}

/* Pin positions (approximate coordinates relative to our custom SVGs viewport) */
.pin-delhi { top: 31%; left: 34%; }
.pin-karnal { top: 26.5%; left: 32.5%; }
.pin-rohtak { top: 29.5%; left: 31.5%; }
.pin-rishikesh { top: 26.5%; left: 37.5%; }
.pin-gorakhpur { top: 33.5%; left: 53%; }
.pin-jalaun { top: 38%; left: 41.5%; }
.pin-barabanki { top: 34.5%; left: 47%; }

.map-details-card {
  background-color: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.map-details-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.map-details-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.map-city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.map-city-tag {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.map-city-tag:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Testimonial Single Slider Layout */
.testimonial-slider-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-slide-item {
  display: none;
  animation: fadeIn 0.4s ease;
}

.testimonial-slide-item.active {
  display: block;
}

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

.testimonial-slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-slider-counter {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
}

.testimonial-arrow-btn {
  background: var(--white);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--primary);
  border: 1px solid var(--border-color);
}

.testimonial-arrow-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON (Global)
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #25D366;
  color: var(--white) !important;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-body);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
  color: var(--white) !important;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.whatsapp-float-text {
  display: none;
}

@media (min-width: 576px) {
  .whatsapp-float-text {
    display: inline;
  }
}

@media (max-width: 576px) {
  .whatsapp-float {
    padding: 0.9rem;
    border-radius: 50%;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* ============================================================
   DARK HERO FOR INNER PAGES (about, services, gallery, etc.)
   ============================================================ */
.page-hero-dark {
  position: relative;
  background: linear-gradient(135deg, rgba(19, 59, 44, 0.94) 0%, rgba(12, 35, 25, 0.88) 100%),
              url('../assets/hero-mushroom-room.jpg') no-repeat center center / cover;
  color: var(--white);
  padding: 7rem 0 5rem;
  padding-top: calc(var(--nav-height) + 3.5rem);
  overflow: hidden;
}

.page-hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 60%, rgba(217, 106, 38, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-dark .page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.page-hero-dark .page-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--accent);
  flex-shrink: 0;
}

.page-hero-dark h1 {
  font-size: 4rem;
  color: var(--white) !important;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.page-hero-dark p {
  font-size: 1.15rem;
  color: rgba(244, 241, 234, 0.85) !important;
  opacity: 1 !important;
  font-family: var(--font-body);
  max-width: 640px;
  font-weight: 300;
  margin-bottom: 0;
}

.page-hero-dark .hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
}

.page-hero-dark .hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.page-hero-dark .hero-breadcrumb a:hover {
  color: var(--accent);
}
.page-hero-dark .hero-breadcrumb span {
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .page-hero-dark h1 {
    font-size: 2.5rem;
  }
  .page-hero-dark {
    padding: 5rem 0 3.5rem;
    padding-top: calc(var(--nav-height) + 2rem);
  }
}

/* ============================================================
   SERVICES PAGE - Sticky Sidebar Nav
   ============================================================ */
.services-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: start;
}

.services-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.services-sidebar-nav {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.services-sidebar-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-light);
}

.services-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
  text-decoration: none;
}

.services-sidebar-link:last-child {
  border-bottom: none;
}

.services-sidebar-link i {
  color: var(--accent);
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}

.services-sidebar-link:hover,
.services-sidebar-link.active {
  background-color: var(--bg-light);
  color: var(--accent);
  padding-left: 1.75rem;
}

.services-sidebar-cta {
  margin-top: 1.5rem;
  background-color: var(--primary);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.services-sidebar-cta p {
  color: rgba(244, 241, 234, 0.85) !important;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.services-sidebar-cta h5 {
  color: var(--white) !important;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 991px) {
  .services-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .services-sidebar {
    position: static;
  }
  .services-sidebar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
  .services-sidebar-link {
    flex: 1 1 auto;
    min-width: 140px;
    border-right: 1px solid var(--border-color);
  }
}

/* ============================================================
   PROCESS STEPS SECTION
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(217, 106, 38, 0.2));
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 48px;
  height: 48px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.25rem auto;
  border: 3px solid var(--bg-light);
  box-shadow: 0 0 0 4px rgba(217, 106, 38, 0.15);
  transition: var(--transition-normal);
}

.process-step:hover .process-step-number {
  background-color: var(--primary);
  transform: scale(1.1);
}

.process-step h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before {
    display: none;
  }
}

/* ============================================================
   CONTACT PAGE – Maps Embed
   ============================================================ */
.map-embed-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 340px;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   ABOUT PAGE – Team Card Enhanced
   ============================================================ */
.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(217, 106, 38, 0.08);
  border: 1px solid rgba(217, 106, 38, 0.25);
  color: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.founder-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.founder-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.founder-social a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   GALLERY PAGE – Masonry & Filter Enhanced
   ============================================================ */
.gallery-count-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-left: 0.5rem;
  font-family: var(--font-body);
}

/* ============================================================
   BREADCRUMB SHARED UTILITY
   ============================================================ */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  margin-bottom: 2rem;
}

.breadcrumb-nav a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.breadcrumb-nav a:hover {
  color: var(--accent);
}
.breadcrumb-nav .sep {
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   QUICK STATS RIBBON (Inner Pages)
   ============================================================ */
.quick-stats-ribbon {
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.quick-stats-ribbon .stat-item {
  text-align: center;
  padding: 0 1rem;
}

.quick-stats-ribbon .stat-num {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.quick-stats-ribbon .stat-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(244,241,234,0.6);
  margin-top: 0.25rem;
}

