/* ==========================================================================
   Lakshmi Yoga Services (LYS) - Main Stylesheet
   Color Palette: Deep Burgundy (Logo text), Warm Gold (Logo sun), Pink (Lotus)
   Theme: Clean, Warm Cream-and-Lotus Wellness Aesthetic
   ========================================================================== */

/* Design Tokens (CSS Custom Properties) */
:root {
  --primary-color: #800020;       /* Deep Burgundy */
  --primary-dark: #5a0016;
  --secondary-color: #D4AF37;     /* Warm Gold */
  --secondary-dark: #b89222;
  --accent-color: #E05C84;        /* Dusty Rose / Lotus Pink */
  --accent-light: #F7D4DF;
  --bg-cream: #FCFBF7;            /* Warm Cream Background */
  --bg-white: #FFFFFF;
  --bg-dark: #1F191B;             /* Charcoal with a hint of red/burgundy */
  --text-dark: #332B2D;           /* Deep Charcoal Body Text */
  --text-light: #F3ECEF;
  --text-muted: #7E7073;          /* Secondary text */
  --border-color: #EBE4E1;
  --success-color: #2D6A4F;
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  /* Shadow & Transitions */
  --shadow-sm: 0 2px 4px rgba(48, 38, 41, 0.05);
  --shadow-md: 0 10px 25px rgba(48, 38, 41, 0.08);
  --shadow-lg: 0 20px 40px rgba(48, 38, 41, 0.12);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --header-height: 80px;
  --max-width: 1200px;
}

/* 1. Global Reset & Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

h1 {
  font-family: var(--font-display);
  font-weight: 700;
}

p {
  margin-bottom: 1.5rem;
}

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

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

ul, ol {
  list-style: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

/* 2. Custom Buttons & CTA Components */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.primary-cta {
  background-color: var(--primary-color);
  color: var(--bg-cream);
}

.primary-cta:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.secondary-cta {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.secondary-cta:hover {
  background-color: var(--primary-color);
  color: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-arrow {
  margin-left: 0.5rem;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.primary-cta:hover .btn-arrow {
  transform: translateX(3px);
}

.light-theme-btn {
  background-color: var(--bg-cream);
  color: var(--primary-color);
}

.light-theme-btn:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
}

/* 3. Header & Navigation */
.site-header {
  height: var(--header-height);
  background-color: var(--bg-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand-logo {
  height: 60px;
  width: auto;
  transition: var(--transition-normal);
  object-fit: contain;
}

.site-header.scrolled .brand-logo {
  height: 50px;
}

.nav-list {
  display: flex;
  gap: 2.2rem;
}

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

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

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

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

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

.mobile-nav-toggle {
  display: none;
}

/* 4. Home Page Components */
main {
  margin-top: var(--header-height);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.04) 0%, rgba(252, 251, 247, 1) 100%);
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  z-index: 2;
}

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

.hero-pretitle {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--primary-color);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
}

/* Section Header Utility */
.section-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.title-separator {
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0 auto;
}

.title-separator.left-aligned {
  margin: 0;
}

/* Features/Values Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.feature-card {
  background-color: var(--bg-white);
  padding: 3rem 2.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid var(--border-color);
}

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

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--bg-cream);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* Philosophy Teaser */
.philosophy-teaser-section {
  background-color: var(--bg-white);
}

.teaser-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem;
  align-items: center;
}

.teaser-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.teaser-img-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 12px solid rgba(252, 251, 247, 0.2);
  pointer-events: none;
  border-radius: 20px;
}

.teaser-img {
  width: 100%;
  height: auto;
  transition: var(--transition-slow);
}

.teaser-img-frame:hover .teaser-img {
  transform: scale(1.05);
}

.teaser-pretitle {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.teaser-title {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.teaser-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Call to Action Banner */
.cta-banner-section {
  background-color: var(--primary-color);
  color: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.banner-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.cta-banner-section h2 {
  color: var(--bg-cream);
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.cta-banner-section p {
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
}

.whatsapp-icon-inline {
  margin-right: 0.6rem;
  display: inline-flex;
  align-items: center;
}

/* 5. Inner Pages (About, Services, Contact) */
.inner-banner-section {
  position: relative;
  background-color: var(--primary-color);
  color: var(--bg-cream);
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
}

.banner-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.banner-pretitle {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.inner-banner-section h1 {
  font-size: 3rem;
  color: var(--bg-cream);
  margin-bottom: 1rem;
}

.banner-subtitle {
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* About Us Layouts */
.about-bio-section {
  background-color: var(--bg-cream);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.col-title {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.bio-text {
  color: var(--text-muted);
}

.credentials-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 1.8rem;
  border-radius: 12px;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.credentials-box h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.credentials-box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1.5rem;
}

.credentials-box li {
  font-size: 0.92rem;
  color: var(--text-dark);
  position: relative;
  padding-left: 1.2rem;
}

.credentials-box li::before {
  content: '★';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

.bio-img-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
}

/* Hata Deepdive */
.hata-deepdive-section {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

.max-width-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hata-benefits-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  margin-top: 4rem;
}

.hata-pillars-list {
  margin-top: 1.5rem;
}

.hata-pillars-list li {
  margin-bottom: 1.2rem;
}

.hata-pillars-list strong {
  color: var(--primary-color);
}

.benefits-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  padding: 2.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.benefits-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.benefits-check-list li {
  display: flex;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.check-icon {
  color: var(--success-color);
  font-weight: bold;
  margin-right: 0.8rem;
  font-size: 1.1rem;
}

.benefit-desc {
  color: var(--text-dark);
  font-size: 0.98rem;
}

/* Services Grid & Cards */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-detail-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.service-card-image-box {
  height: 240px;
  overflow: hidden;
}

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

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

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

.service-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.service-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.service-card-footer {
  margin-top: auto;
}

.card-cta-btn {
  width: 100%;
}

/* Timetable Schedule Table */
.schedule-section {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

.schedule-table-wrapper {
  overflow-x: auto;
  margin-top: 3.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--bg-white);
  min-width: 700px;
}

.schedule-table th {
  background-color: var(--primary-color);
  color: var(--bg-cream);
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.96rem;
}

.schedule-row:hover {
  background-color: rgba(252, 251, 247, 0.6);
}

.day-cell {
  background-color: var(--bg-cream);
  border-right: 1px solid var(--border-color);
  color: var(--primary-color);
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.type-group {
  background-color: var(--accent-light);
  color: var(--primary-color);
}

.type-corporate {
  background-color: #E2ECF5;
  color: #1A5480;
}

.type-workshop-group {
  background-color: #F1E5D5;
  color: #8C5B17;
}

.table-book-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
}

.table-book-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.schedule-note {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Details Page & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info-card {
  background-color: var(--bg-white);
  padding: 3rem 2.2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-info-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.info-list {
  margin-top: 2.2rem;
}

.info-item {
  display: flex;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.5rem;
  margin-right: 1.2rem;
  line-height: 1;
}

.info-text strong {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-dark);
  margin-bottom: 0.2rem;
}

.info-text p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 0;
}

.google-business-promo {
  background-color: var(--bg-cream);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2.5rem;
  border: 1px dashed var(--secondary-color);
}

.google-business-promo h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.google-business-promo p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* Inquiry Form */
.contact-form-card {
  background-color: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.form-instructions {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.required {
  color: var(--primary-color);
  font-weight: bold;
}

.submit-btn {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
}

/* Map frame wrapper */
.map-section {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 0 0;
}

.map-container-wrapper .section-header {
  padding: 0 1.5rem;
}

.google-map-iframe-wrapper {
  margin-top: 3.5rem;
  line-height: 0;
  border-top: 1px solid var(--border-color);
}

/* 6. Footer Styles */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* Instagram Scroller Container */
.instagram-scroller-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 0 0;
}

.insta-scroller-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.insta-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.insta-scroller-header h3 {
  color: var(--bg-cream);
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}

.insta-handle-link {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.insta-handle-link:hover {
  color: var(--bg-cream);
}

/* Infinite Scroll Carousel */
.insta-carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding-bottom: 2px;
}

/* Gradient overlay for fade effects on edges */
.insta-carousel-container::before,
.insta-carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.insta-carousel-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}

.insta-carousel-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

.insta-carousel-track {
  display: flex;
  width: max-content;
  /* Infinite scroll animation keyframe integration */
  animation: scroll-carousel 30s linear infinite;
}

.insta-carousel-container:hover .insta-carousel-track {
  animation-play-state: paused;
}

.insta-slide {
  position: relative;
  display: block;
  width: 200px; /* Base size */
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 0, 32, 0.85); /* Burgundy overlay */
  display: flex;
  align-items: center;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 1;
}

.insta-caption {
  color: var(--bg-cream);
  font-size: 0.82rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.insta-slide:hover .insta-img {
  transform: scale(1.08);
}

.insta-slide:hover .insta-overlay {
  opacity: 1;
}

/* Infinite Scrolling Animation Keyframes */
@keyframes scroll-carousel {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    /* 6 slides * 200px = 1200px */
    transform: translate3d(-1200px, 0, 0);
  }
}

/* Main Footer Columns */
.footer-main-content {
  padding: 5rem 0;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
}

.footer-col h4 {
  color: var(--bg-cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1); /* Invert logo to pure white for dark background */
}

.brand-desc {
  color: rgba(243, 236, 239, 0.7);
  font-size: 0.94rem;
}

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

.footer-link {
  color: rgba(243, 236, 239, 0.7);
  font-size: 0.94rem;
}

.footer-link:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

.contact-item {
  font-size: 0.94rem;
  margin-bottom: 0.8rem;
  color: rgba(243, 236, 239, 0.7);
}

.contact-item strong {
  color: var(--bg-cream);
}

.footer-contact-link {
  color: var(--secondary-color);
}

.footer-contact-link:hover {
  color: var(--bg-cream);
  text-decoration: underline;
}

/* Copyright Bar */
.footer-bottom-bar {
  background-color: #141011;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.bottom-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 0.85rem;
  color: rgba(243, 236, 239, 0.4);
  margin-bottom: 0;
}

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

.footer-legal-link {
  font-size: 0.85rem;
  color: rgba(243, 236, 239, 0.4);
}

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

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366; /* Official WhatsApp color */
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all var(--transition-fast);
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  background-color: #20BA5A;
}

.whatsapp-float-btn .whatsapp-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 7. Responsive Styles (Mobile & Tablet) */

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  
  .teaser-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .bio-image-col {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hata-benefits-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .services-card-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .section-title {
    font-size: 2.1rem;
  }
  
  .site-header {
    height: var(--header-height);
  }
  
  .brand-logo {
    height: 48px;
  }
  
  .header-cta-wrapper {
    display: none;
  }
  
  /* Mobile Menu Toggler */
  .mobile-nav-toggle {
    display: block;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0.5rem;
    z-index: 9999;
  }
  
  .hamburger-lines {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .hamburger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 4px;
    background-color: var(--text-dark);
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
  }
  
  /* Navigation Container for Mobile */
  .primary-navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background-color: var(--bg-white);
    padding: 7rem 2.5rem 2.5rem 2.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
  }
  
  .primary-navigation[data-visible="true"] {
    transform: translateX(0);
  }
  
  .nav-list {
    flex-direction: column;
    gap: 1.8rem;
  }
  
  .nav-link {
    font-size: 1.1rem;
    display: block;
  }
  
  .mobile-cta-item {
    display: block;
    margin-top: 1.5rem;
  }
  
  .mobile-cta-item .nav-cta {
    width: 100%;
  }
  
  /* Animated Hamburger Lines */
  .mobile-nav-toggle[aria-expanded="true"] .line1 {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-nav-toggle[aria-expanded="true"] .line2 {
    opacity: 0;
  }
  
  .mobile-nav-toggle[aria-expanded="true"] .line3 {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 3rem 1rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .primary-cta, .secondary-cta {
    width: 100%;
  }
  
  .section-container {
    padding: 4rem 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2.2rem 1.5rem;
  }
  
  .teaser-container {
    padding: 4rem 1rem;
  }
  
  .teaser-title {
    font-size: 1.8rem;
  }
  
  .inner-banner-section h1 {
    font-size: 2.2rem;
  }
  
  .credentials-box ul {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  
  .benefits-card {
    padding: 1.5rem 1.2rem;
  }
  
  .service-card-body {
    padding: 1.5rem;
  }
  
  .schedule-note {
    text-align: left;
  }
  
  .contact-info-card {
    padding: 2.2rem 1.5rem;
  }
  
  .contact-form-card {
    padding: 2.2rem 1.5rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .brand-col {
    grid-column: span 1;
  }
  
  .bottom-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .insta-slide {
    width: 150px;
    height: 150px;
  }
  
  @keyframes scroll-carousel {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      /* 6 slides * 150px = 900px */
      transform: translate3d(-900px, 0, 0);
    }
  }
}
