/*
Theme Name: Beyond Ayur
Theme URI: https://gopalinfo.com/beyond-ayur
Description: A modern, premium, energetic, and trustworthy WordPress theme for personal fitness trainer and wellness brand "Beyond Ayur".
Version: 1.0.0
Author: Gopal Info
Author URI: https://gopalinfo.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: beyond-ayur
*/

/* -------------------------------------------------------------
   1. DESIGN SYSTEM VARIABLES & CORE
------------------------------------------------------------- */
:root {
  --color-gold: #D5A72F;
  --color-green: #65A844;
  --color-black: #080808;
  --color-charcoal: #171717;
  --color-offwhite: #F8F6EF;
  --color-white: #FFFFFF;
  
  /* Text colors */
  --color-text-dark: #1E1E1E;
  --color-text-light: #F8F6EF;
  --color-text-muted: #8E8D88;
  --color-text-muted-dark: #6C6B66;

  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transition & Shadow */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.06);
  --shadow-sticky: 0 10px 30px rgba(0, 0, 0, 0.15);
  
  /* Layout */
  --container-width: 1240px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 32px;
}

/* -------------------------------------------------------------
   2. RESET & BASE STYLES
------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

/* -------------------------------------------------------------
   3. TYPOGRAPHY
------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--color-text-muted-dark);
  font-size: 1.05rem;
}

/* -------------------------------------------------------------
   4. UTILITY & LAYOUT CLASSES
------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--color-charcoal);
  color: var(--color-text-light);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--color-white);
}

.section-dark p {
  color: var(--color-text-muted);
}

.section-light {
  background-color: var(--color-offwhite);
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold) !important; }
.text-green { color: var(--color-green) !important; }
.bg-black { background-color: var(--color-black) !important; }
.bg-charcoal { background-color: var(--color-charcoal) !important; }

/* Subheadings / Badges */
.tagline-badge {
  display: inline-block;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 1rem;
}

.tagline-badge-gold {
  color: var(--color-gold);
}

.section-desc {
  max-width: 650px;
  margin: 1.25rem auto 0;
  font-size: 1.125rem;
}

/* -------------------------------------------------------------
   5. BUTTONS & INTERACTIVE ELEMENTS
------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-black);
  border: 2px solid var(--color-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-gold);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  background-color: rgba(101, 168, 68, 0.05);
}

.btn-light-secondary {
  border: 2px solid rgba(8, 8, 8, 0.15);
  color: var(--color-black);
  background-color: transparent;
}

.btn-light-secondary:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  background-color: rgba(101, 168, 68, 0.05);
}

.btn-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(5px);
}

/* -------------------------------------------------------------
   6. HEADER & RESPONSIVE NAVIGATION
------------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

.site-header.is-sticky {
  position: fixed;
  background-color: var(--color-black);
  box-shadow: var(--shadow-sticky);
  padding: 0.5rem 0;
  animation: slideDown 0.4s ease-out forwards;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

.site-logo img {
  height: 90px;
  width: auto;
  transition: var(--transition-smooth);
}

.site-header.is-sticky .site-logo img {
  height: 65px;
}

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

.nav-menu a {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-white);
  opacity: 0.85;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu .current-menu-item a,
.nav-menu .active a {
  color: var(--color-gold);
  opacity: 1;
}

/* Mega Menu Dropdown Styles */
.has-megamenu {
  position: relative;
}

.megamenu-toggle {
  display: flex;
  align-items: center;
}

.megamenu-toggle .arrow {
  font-size: 0.6rem;
  margin-left: 0.35rem;
  transition: transform 0.3s ease;
}

.has-megamenu:hover .megamenu-toggle .arrow {
  transform: rotate(180deg);
}

.megamenu-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(25px);
  width: 900px;
  background-color: var(--color-charcoal);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1100;
}

.has-megamenu:hover .megamenu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(12px);
  pointer-events: auto;
}

.megamenu-dropdown::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: transparent;
}

.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.megamenu-column h4 {
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.megamenu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.megamenu-column li a {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.4rem;
  border-radius: var(--border-radius-sm);
  transition: all 0.2s ease;
}

.megamenu-column li a:hover {
  background-color: rgba(197, 168, 128, 0.08);
}

.megamenu-column li a svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.megamenu-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.megamenu-item-info strong {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.megamenu-item-info span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 400;
}

.megamenu-column li a:hover strong {
  color: var(--color-gold);
}

/* Mobile responsive styles for mega menu */
@media (max-width: 991px) {
  .megamenu-dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0 1rem;
    max-height: 350px;
    overflow-y: auto;
    display: none;
    pointer-events: auto;
  }
  
  .has-megamenu.is-open .megamenu-dropdown {
    display: block;
  }
  
  .megamenu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .megamenu-column h4 {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
  }
  
  .megamenu-column ul {
    gap: 0.75rem;
  }
  
  .megamenu-item-info span {
    display: none;
  }
  
  .megamenu-column li a {
    padding: 0.25rem 0;
  }
}

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

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-call:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-call svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.site-header .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.site-header.is-sticky .btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.site-header.is-sticky .btn-call {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* -------------------------------------------------------------
   7. HERO SECTION
------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
  padding-top: 180px;
  padding-bottom: 80px;
}

/* Glowing accent blobs */
.hero-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(213, 167, 47, 0.12) 0%, rgba(213, 167, 47, 0) 70%);
  z-index: 2;
  pointer-events: none;
  animation: pulseGlow 10s infinite alternate ease-in-out;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(101, 168, 68, 0.12) 0%, rgba(101, 168, 68, 0) 70%);
  z-index: 2;
  pointer-events: none;
  animation: pulseGlow 14s infinite alternate-reverse ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  50% { transform: scale(1.15) translate(15px, -15px); opacity: 0.85; }
  100% { transform: scale(1) translate(0, 0); opacity: 0.6; }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  animation: kenBurns 25s infinite alternate ease-in-out;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.8) 35%, rgba(8, 8, 8, 0.25) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 700px;
}

/* Page onload animations handled by GSAP - initial state */
.hero-content > * {
  opacity: 0;
}

.floating-badge {
  opacity: 0;
}

.hero-title {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.typing-cursor {
  font-weight: 300;
  color: var(--color-gold);
  animation: blink 0.8s infinite;
  margin-left: 2px;
  display: inline-block;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-green);
  margin-right: 0.5rem;
}

/* Floating Experience Badge */
.floating-badge {
  position: absolute;
  bottom: 22%;
  right: 5%;
  background-color: var(--color-charcoal);
  border: 1px solid rgba(213, 167, 47, 0.3);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 4;
  box-shadow: var(--shadow-sticky);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.floating-badge .number {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-gold);
}

.floating-badge .label {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  line-height: 1.3;
}

/* -------------------------------------------------------------
   8. ABOUT PREVIEW SECTION
------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  padding-bottom: 20px;
  padding-right: 20px;
}

.about-image-wrapper img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
}

/* Decorative leaf / SVG accents */
.about-decor-leaves {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  fill: rgba(101, 168, 68, 0.15);
  z-index: -1;
}

.about-decor-frame {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-gold);
  border-radius: var(--border-radius-md);
  z-index: -1;
  transform: translate(15px, 15px);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content > p {
  margin-bottom: 2rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
}

.highlight-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(213, 167, 47, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: var(--color-gold);
}

.highlight-text h4 {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.highlight-text p {
  font-size: 0.95rem;
}

/* -------------------------------------------------------------
   9. WHY CHOOSE US SECTION
------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.why-card {
  background-color: var(--color-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(8, 8, 8, 0.03);
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(101, 168, 68, 0.2);
}

.why-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(101, 168, 68, 0.08);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  background-color: var(--color-green);
}

.why-card:hover .why-icon svg {
  fill: var(--color-white);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-green);
  transition: var(--transition-smooth);
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* -------------------------------------------------------------
   10. SERVICES SECTION
------------------------------------------------------------- */
/* ── GSAP FLIP Carousel ─────────────────────────────────── */
.services-slider-container {
  position: relative;
  margin-top: 4rem;
  /* overflow: visible allows the absolute navigation buttons to sit outside the slider bounds */
  overflow: visible;
  padding: 0 0 4rem;
}

/* Wrapper to isolate the horizontal overflow hidden of the track from the arrows */
.flip-track-wrapper {
  overflow: hidden;
  width: 100%;
}

/* The flip track — a plain flex row, no Swiper transforms */
.flip-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
}

/* Equal-width card slot for a normal carousel */
.flip-card {
  flex: 0 0 calc(33.333% - 13.33px); /* 3 cards visible on desktop */
  min-width: 0;
  cursor: pointer;
  position: relative;
}

/* Card inner — full height so service-card fills slot */
.flip-card .service-card {
  width: 100%;
  height: 100%;
  margin: 0;
  transition: none; /* no CSS transition — GSAP handles movement */
}

@media (max-width: 991px) {
  /* 2 cards visible on tablet */
  .flip-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 767px) {
  /* 1 card visible on mobile */
  .flip-card {
    flex: 0 0 100%;
  }
}

/* Pagination dots — centred below the track */
.flip-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.flip-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--color-text-muted);
  opacity: 0.4;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  padding: 0;
}

.flip-dot.is-active {
  background: var(--color-green);
  opacity: 1;
  width: 24px;
}

/* Custom Navigation Buttons */
.services-slider-container .services-prev,
.services-slider-container .services-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background-color: var(--color-white);
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: 50%;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.services-slider-container .services-prev:hover,
.services-slider-container .services-next:hover {
  background-color: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
  box-shadow: var(--shadow-card);
}

.services-slider-container .services-prev {
  left: -70px;
}

.services-slider-container .services-next {
  right: -70px;
}

/* Arrows Icons using pseudo elements */
.services-slider-container .services-prev::after,
.services-slider-container .services-next::after {
  font-size: 1.25rem;
  font-family: inherit;
  font-weight: 700;
}

.services-slider-container .services-prev::after {
  content: '←';
}

.services-slider-container .services-next::after {
  content: '→';
}

/* Responsive Overrides for Slider Outer Space */
@media (max-width: 1400px) {
  .services-slider-container {
    padding: 0 1.5rem;
  }
  .services-slider-container .services-prev {
    left: 5px;
  }
  .services-slider-container .services-next {
    right: 5px;
  }
}

@media (max-width: 768px) {
  .services-slider-container {
    margin-top: 2.5rem;
    padding: 0;
  }
  .services-slider-container .services-prev,
  .services-slider-container .services-next {
    display: none; /* Hide navigation buttons on mobile */
  }
}

.hide {
  display: none !important;
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  border: 1px solid rgba(8, 8, 8, 0.03);
  display: flex;
  flex-direction: column;
}

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

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

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-body {
  padding: 2.25rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-body p {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-gold);
}

.service-link svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--color-green);
}

.service-card:hover .service-link svg {
  fill: var(--color-green);
  transform: translateX(5px);
}

.services-footer {
  text-align: center;
  margin-top: 4rem;
}

/* -------------------------------------------------------------
   11. ONLINE FITNESS SECTION
------------------------------------------------------------- */
.online-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 6rem;
  align-items: center;
}

.online-img-wrapper img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
}

.online-content h2 {
  margin-bottom: 1.5rem;
}

.online-content > p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.online-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.benefit-check {
  display: flex;
  align-items: center;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-dark);
}

.benefit-check svg {
  width: 18px;
  height: 18px;
  fill: var(--color-green);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   12. FITNESS PHILOSOPHY SECTION
------------------------------------------------------------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
  position: relative;
}

/* Grid connector line aligned to badge centers */
.philosophy-grid::before {
  content: '';
  position: absolute;
  top: 83px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(to right, rgba(213,167,47,0.05), var(--color-gold), rgba(213,167,47,0.05));
  z-index: 1;
}

.philosophy-pillar {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3.5rem 2.25rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.04); /* fallback border */
}

/* Ensure all child elements float above the animated pseudo-backgrounds */
.philosophy-pillar > * {
  position: relative;
  z-index: 3;
}

/* Continuous rotating gradient background border */
.philosophy-pillar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 20%,
    var(--color-gold) 40%,
    var(--color-green) 60%,
    transparent 80%
  );
  animation: rotateBorder 6s linear infinite;
  z-index: 1;
}

/* Inner glassmorphic cover overlay */
.philosophy-pillar::after {
  content: '';
  position: absolute;
  inset: 2px; /* 2px border width */
  background: rgba(15, 15, 15, 0.88); /* Rich dark glass background */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: calc(var(--border-radius-md) - 2px);
  z-index: 2;
  transition: var(--transition-smooth);
}

.philosophy-pillar:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(101, 168, 68, 0.12);
}

.philosophy-pillar:hover::after {
  background: rgba(22, 22, 22, 0.85); /* Slightly lighter glass fill on hover */
}

@keyframes rotateBorder {
  100% {
    transform: rotate(360deg);
  }
}

.pillar-num {
  width: 54px;
  height: 54px;
  background-color: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.25rem;
  box-shadow: 0 8px 24px rgba(213, 167, 47, 0.3);
  transition: var(--transition-smooth);
}

.philosophy-pillar:hover .pillar-num {
  transform: scale(1.1) rotate(360deg);
  background-color: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(101, 168, 68, 0.4);
}

.philosophy-pillar h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.philosophy-pillar p {
  font-size: 0.95rem;
}

/* -------------------------------------------------------------
   13. FITNESS JOURNEY / PROCESS SECTION
------------------------------------------------------------- */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
  position: relative;
}

/* Connected line style */
.journey-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: dashed rgba(101, 168, 68, 0.25);
  z-index: 1;
}

.journey-step {
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--color-offwhite);
  border: 2px solid var(--color-green);
  color: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 2rem;
  transition: var(--transition-smooth);
}

.journey-step:hover .step-number {
  background-color: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(101, 168, 68, 0.3);
}

.journey-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.journey-step p {
  font-size: 0.95rem;
  text-align: center;
  padding: 0 1rem;
}

/* -------------------------------------------------------------
   14. TESTIMONIALS SECTION
------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--color-white);
  padding: 3.25rem 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(8, 8, 8, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-green) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-color: rgba(101, 168, 68, 0.12);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 35px;
  width: 44px;
  height: 44px;
  fill: rgba(101, 168, 68, 0.06);
  transition: var(--transition-smooth);
}

.testimonial-card:hover .testimonial-quote-icon {
  transform: rotate(-15deg) scale(1.15);
  fill: rgba(101, 168, 68, 0.12);
}

.testimonial-stars {
  display: inline-flex;
  align-self: flex-start;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
  background-color: rgba(213, 167, 47, 0.05);
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  border: 1px solid rgba(213, 167, 47, 0.15);
  transition: var(--transition-smooth);
}

.testimonial-card:hover .testimonial-stars {
  background-color: rgba(213, 167, 47, 0.1);
  transform: scale(1.03);
}

.testimonial-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--color-gold);
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--color-text-dark);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid rgba(8, 8, 8, 0.05);
  padding-top: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 12px rgba(101, 168, 68, 0.15);
  transition: var(--transition-smooth);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(213, 167, 47, 0.3);
}

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

.client-meta h4 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
  color: var(--color-black);
}

.client-meta span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-green);
}

.testimonial-disclaimer {
  text-align: center;
  margin-top: 3.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* -------------------------------------------------------------
   15. CALL TO ACTION (CTA) SECTION
------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: 6.5rem 0;
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 48, 18, 0.85) 0%, rgba(8, 8, 8, 0.95) 100%);
  z-index: 2;
}

.cta-container {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* -------------------------------------------------------------
   16. FOOTER
------------------------------------------------------------- */
.site-footer {
  background-color: #1e1e1e; /* Distinct warm charcoal, lighter than cta block */
  color: var(--color-text-light);
  padding: 6rem 0 0;
  border-top: 4px solid var(--color-gold); /* Solid brand accent divider */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-green);
}

.footer-brand .footer-logo {
  height: 110px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-brand .footer-tagline {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

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

.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
}

.footer-links-list a::before {
  content: '→';
  font-size: 0.8rem;
  margin-right: 0.5rem;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

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

.footer-links-list a:hover::before {
  color: var(--color-green);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  fill: var(--color-green);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--color-gold);
}

.social-icon:hover svg {
  fill: var(--color-black);
}

/* Bottom Bar */
.footer-bottom {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a.gopal-info-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  position: relative;
}

.footer-bottom a.gopal-info-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.footer-bottom a.gopal-info-link:hover {
  color: var(--color-gold);
}

.footer-bottom a.gopal-info-link:hover::after {
  transform: scaleX(1);
  background-color: var(--color-green);
}

/* -------------------------------------------------------------
   17. BACK TO TOP BUTTON
------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-black);
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-green);
  color: var(--color-white);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(101, 168, 68, 0.3);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* -------------------------------------------------------------
   18. SERVICE DETAIL PAGE TEMPLATE
------------------------------------------------------------- */
.service-header {
  position: relative;
  padding: 12rem 0 6rem;
  background-color: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
  text-align: center;
}

.service-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.service-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--color-black) 0%, rgba(8, 8, 8, 0.6) 100%);
  z-index: 2;
}

.service-header .container {
  position: relative;
  z-index: 3;
}

.service-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-top: 1rem;
  color: var(--color-white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 4.5rem;
  align-items: start;
}

.service-main-content h2,
.service-main-content h3 {
  margin: 2rem 0 1rem;
}

.service-main-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.service-main-content ul {
  margin: 1.5rem 0 2rem 1.5rem;
  list-style-type: disc;
}

.service-main-content li {
  margin-bottom: 0.75rem;
  color: var(--color-text-muted-dark);
}

.service-sidebar {
  position: sticky;
  top: 120px;
}

.service-cta-box {
  background-color: var(--color-offwhite);
  padding: 3rem 2.25rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(8, 8, 8, 0.05);
  box-shadow: var(--shadow-subtle);
  text-align: center;
}

.service-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-cta-box p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.service-cta-box .btn {
  width: 100%;
}

.service-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-benefit-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-green);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.service-benefit-item span {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-black);
}

/* -------------------------------------------------------------
   19. SCROLL ANIMATIONS (IntersectionObserver classes)
------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.is-visible {
  opacity: 1;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.zoom-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

.delay-50 { transition-delay: 0.05s; }
.delay-100 { transition-delay: 0.1s; }
.delay-150 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.2s; }
.delay-250 { transition-delay: 0.25s; }
.delay-300 { transition-delay: 0.3s; }
.delay-350 { transition-delay: 0.35s; }
.delay-400 { transition-delay: 0.4s; }
.delay-450 { transition-delay: 0.45s; }
.delay-500 { transition-delay: 0.5s; }

/* -------------------------------------------------------------
   20. RESPONSIVE MEDIA QUERIES
------------------------------------------------------------- */
@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .section {
    padding: 4rem 0;
  }
  
  .site-header {
    padding: 1.25rem 0;
  }

  .hero-section {
    padding-top: 140px;
  }

  .cta-section {
    padding: 5.5rem 0;
  }
  
  /* Mobile Menu logic */
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--color-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1005;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }
  
  .nav-menu.is-active {
    right: 0;
  }
  
  .nav-menu a {
    font-size: 1.25rem;
  }
  
  .header-cta {
    display: flex;
    gap: 0.5rem;
  }

  .header-cta .btn-primary {
    display: none;
  }

  .hamburger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* Layout changes */
  .about-grid,
  .online-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .philosophy-grid::before {
    display: none;
  }
  
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .journey-steps::before {
    display: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .floating-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 3rem;
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }

  .hero-section {
    padding-top: 120px;
  }

  .cta-section {
    padding: 4.5rem 0;
  }
  
  .why-grid,
  .services-grid,
  .journey-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .online-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* -------------------------------------------------------------
   18. ABOUT PAGE STYLES
------------------------------------------------------------- */
.about-hero-section {
  padding: 9rem 0 6rem;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, rgba(8, 8, 8, 0.93) 0%, rgba(23, 23, 23, 0.9) 100%), url('images/cta_bg.png');
  background-size: cover;
  background-position: center;
}

.about-hero-content h1 {
  color: var(--color-white);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--color-gold);
  font-weight: 500;
}

.about-philosophy-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 5rem;
  align-items: center;
}

.philosophy-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.philosophy-quote {
  border-left: 4px solid var(--color-gold);
  padding: 1rem 1.5rem;
  background: var(--color-offwhite);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  margin: 2rem 0;
  position: relative;
}

.philosophy-quote p {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.4;
  margin: 0;
}

.quote-icon {
  position: absolute;
  top: -15px;
  right: 15px;
  width: 40px;
  height: 40px;
  fill: var(--color-gold);
  opacity: 0.15;
}

.about-philosophy-image-wrapper {
  position: relative;
}

.philosophy-image-container {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.philosophy-decor-frame {
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid var(--color-gold);
  border-radius: var(--border-radius-md);
  z-index: 1;
  pointer-events: none;
}

.decor-leaves-bg {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  z-index: 0;
}

.decor-leaves-bg svg {
  fill: var(--color-green);
  opacity: 0.15;
}

.ecosystem-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.ecosystem-pillar-card {
  background: var(--color-white);
  padding: 3rem 2.25rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(8, 8, 8, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ecosystem-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition-smooth);
}

/* Pillar-specific card variations */
.ecosystem-pillar-card.pillar-gold {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(213, 167, 47, 0.02) 100%);
  border-color: rgba(213, 167, 47, 0.12);
}
.ecosystem-pillar-card.pillar-gold::before {
  background: var(--color-gold);
}

.ecosystem-pillar-card.pillar-green {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(101, 168, 68, 0.02) 100%);
  border-color: rgba(101, 168, 68, 0.12);
}
.ecosystem-pillar-card.pillar-green::before {
  background: var(--color-green);
}

.ecosystem-pillar-card.pillar-charcoal {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(23, 23, 23, 0.02) 100%);
  border-color: rgba(23, 23, 23, 0.08);
}
.ecosystem-pillar-card.pillar-charcoal::before {
  background: var(--color-charcoal);
}

/* Hovers for cards */
.ecosystem-pillar-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}
.ecosystem-pillar-card.pillar-gold:hover {
  border-color: rgba(213, 167, 47, 0.35);
  box-shadow: 0 20px 45px rgba(213, 167, 47, 0.08);
}
.ecosystem-pillar-card.pillar-green:hover {
  border-color: rgba(101, 168, 68, 0.35);
  box-shadow: 0 20px 45px rgba(101, 168, 68, 0.08);
}
.ecosystem-pillar-card.pillar-charcoal:hover {
  border-color: rgba(23, 23, 23, 0.25);
  box-shadow: 0 20px 45px rgba(23, 23, 23, 0.08);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(8, 8, 8, 0.06);
}

.pillar-header h3 {
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--color-black);
}

.pillar-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.ecosystem-pillar-card:hover .pillar-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
}

.pillar-icon-wrapper.color-gold {
  background: rgba(213, 167, 47, 0.1);
  fill: var(--color-gold);
}

.pillar-icon-wrapper.color-green {
  background: rgba(101, 168, 68, 0.1);
  fill: var(--color-green);
}

.pillar-icon-wrapper.color-charcoal {
  background: rgba(23, 23, 23, 0.1);
  fill: var(--color-charcoal);
}

.pillar-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.pillar-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pillar-item {
  background: var(--color-white);
  padding: 1.25rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(8, 8, 8, 0.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.pillar-item:hover {
  border-color: rgba(8, 8, 8, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transform: translateX(4px);
}

.pillar-gold .pillar-item:hover {
  border-color: rgba(213, 167, 47, 0.2);
}
.pillar-green .pillar-item:hover {
  border-color: rgba(101, 168, 68, 0.2);
}
.pillar-charcoal .pillar-item:hover {
  border-color: rgba(23, 23, 23, 0.15);
}

.item-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.pillar-gold .item-bullet { background: var(--color-gold); }
.pillar-green .item-bullet { background: var(--color-green); }
.pillar-charcoal .item-bullet { background: var(--color-charcoal); }

.pillar-item:hover .item-bullet {
  transform: scale(1.5);
}

.item-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.item-body strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-black);
  transition: var(--transition-smooth);
}

.pillar-gold .pillar-item:hover .item-body strong { color: var(--color-gold); }
.pillar-green .pillar-item:hover .item-body strong { color: var(--color-green); }
.pillar-charcoal .pillar-item:hover .item-body strong { color: var(--color-black); }

.item-body p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-muted-dark);
}

.about-cta-section {
  background-color: var(--color-offwhite);
  padding: 6.5rem 0;
}

.about-cta-content {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 4.5rem 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(213, 167, 47, 0.25);
}

.about-cta-content h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.about-cta-content p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

@media (max-width: 991px) {
  .about-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-philosophy-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

    .ecosystem-pillars-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   16. CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-hero-section {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-hero-section h1 {
  color: var(--color-white) !important;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.contact-form-wrapper {
  background-color: var(--color-white);
  padding: 3.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.contact-form-wrapper h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--color-black);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-black);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background-color: #fcfcfc;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
  background-color: var(--color-white);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-card {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(197, 168, 128, 0.2);
  box-shadow: var(--shadow-card);
}

.contact-info-card h2 {
  color: var(--color-white);
  margin-bottom: 2rem;
  font-size: 2rem;
}

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

.contact-detail-item:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
}

.contact-detail-text h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

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

.contact-social-card {
  background-color: var(--color-offwhite);
  padding: 2.5rem 3rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
}

.contact-social-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--color-black);
}

.contact-social-list {
  display: flex;
  gap: 1rem;
}

.contact-social-link {
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal);
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-social-link:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

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

.contact-map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  line-height: 0;
}

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

/* Why Choose Us Section on About Page */
.about-why-section {
  background-color: var(--color-charcoal);
  border-top: 1px solid rgba(197, 168, 128, 0.15);
  padding: 6.5rem 0;
}

.about-why-section .section-header {
  margin-bottom: 4.5rem;
}

.about-why-section .section-header h2 {
  color: var(--color-white) !important;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.about-why-section .section-desc {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.125rem;
  line-height: 1.6;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.why-choose-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-lg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(197, 168, 128, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.why-card-icon {
  width: 54px;
  height: 54px;
  background-color: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-card-icon {
  background-color: var(--color-gold);
}

.why-choose-card:hover .why-card-icon svg {
  fill: var(--color-white);
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-gold);
  transition: all 0.3s ease;
}

.why-choose-card h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.why-choose-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.why-quote-banner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  position: relative;
}

.why-quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1.4;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-quote-text {
    font-size: 1.4rem;
  }
}

/* -------------------------------------------------------------
   MODERN MARQUEE STYLING
------------------------------------------------------------- */
.marquee-line {
  background-color: var(--color-charcoal);
  color: var(--color-offwhite);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-top: 1px solid rgba(213, 167, 47, 0.15);
  border-bottom: 1px solid rgba(213, 167, 47, 0.15);
  z-index: 10;
}

.marquee-container {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.marquee-item {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-item span.highlight-gold {
  color: var(--color-gold);
}

.marquee-item span.highlight-green {
  color: var(--color-green);
}

.marquee-leaf {
  color: var(--color-gold);
  flex-shrink: 0;
  opacity: 0.85;
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* -------------------------------------------------------------
   12 SERVICES GRID LAYOUT
------------------------------------------------------------- */
.services-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-grid-card {
  background-color: var(--color-white);
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.service-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-green));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(213, 167, 47, 0.3);
  background-color: var(--color-white);
}

.service-grid-card:hover::before {
  opacity: 1;
}

.service-grid-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(213, 167, 47, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.service-grid-card:hover .service-grid-icon {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: scale(1.1) rotate(5deg);
}

.service-grid-card:nth-child(even) .service-grid-icon {
  background-color: rgba(101, 168, 68, 0.1);
  color: var(--color-green);
}

.service-grid-card:nth-child(even):hover .service-grid-icon {
  background-color: var(--color-green);
  color: var(--color-white);
}

.service-grid-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.service-grid-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-black);
  transition: var(--transition-smooth);
}

.service-grid-card:hover h3 {
  color: var(--color-gold);
}

.service-grid-card:nth-child(even):hover h3 {
  color: var(--color-green);
}

@media (max-width: 991px) {
  .services-grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .services-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .service-grid-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .services-grid-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   21. SINGLE SERVICE NAVIGATION & OTHER SERVICES
   ========================================================================== */
.service-single-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.service-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  color: var(--color-black);
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  flex: 1;
  min-width: 240px;
}

.service-nav-btn:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(213, 167, 47, 0.15);
  color: var(--color-black);
}

.service-nav-btn.all-services-btn {
  flex: 0 0 auto;
  min-width: auto;
  justify-content: center;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}

.service-nav-btn.all-services-btn:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.nav-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(213, 167, 47, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.service-nav-btn:hover .nav-btn-icon {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.nav-btn-info {
  display: flex;
  flex-direction: column;
}

.nav-btn-info.text-right {
  text-align: right;
  margin-left: auto;
}

.nav-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.nav-title {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-black);
  margin-top: 0.2rem;
  transition: var(--transition-smooth);
}

.service-nav-btn:hover .nav-title {
  color: var(--color-gold);
}

.other-services-section {
  padding: 6rem 0;
  background-color: var(--color-offwhite);
  border-top: 1px solid var(--color-border);
}



