/* =============================================================
   LIGHTWORKS MINDFULNESS INDIA — style.css
   Color palette: Deep Forest + Warm Gold + Ivory + Blush
============================================================= */

/* ---------- CSS Variables ---------- */
:root {
  --deep-forest: #1a2e26;
  --forest-mid: #2d4a3e;
  --forest-light: #3d6b5a;
  --accent: #edad40;
  --accent-light: #e8c98a;
  --ivory: #f8f3ec;
  --ivory-deep: #ede5d8;
  --blush: #e8d5c4;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(26,46,38,0.08);
  --shadow-hover: 0 16px 48px rgba(26,46,38,0.16);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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



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

a { text-decoration: none; color: inherit; }

/* ---------- Typography helpers ---------- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {

  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--deep-forest);
  margin-bottom: 1.25rem;
   
}

.section-title em {
  font-style: italic;
  color: var(--forest-light);
}

.section-subtitle,
.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 55ch;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.section-padding { padding: 100px 0; }

/* ============================================================
   HERO
============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--deep-forest) 0%, #0f1e19 60%, #1a3028 100%);
  overflow: hidden;
}

/* Decorative orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.orb-1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -100px; right: -150px;
}

.orb-2 {
  width: 350px; height: 350px;
  background: var(--forest-light);
  bottom: 50px; left: -100px;
  opacity: 0.25;
}

.orb-3 {
  width: 200px; height: 200px;
  background: var(--blush);
  top: 40%; left: 40%;
  opacity: 0.07;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 48ch;
  margin-bottom: 2rem;
}

/* CTA Buttons */
/* .btn-primary-custom {
  background: var(--accent);
  color: var(--deep-forest);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-custom:hover {
  background: var(--accent-light);
  color: var(--deep-forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,113,0.45);
}

.btn-ghost-custom {
  background: transparent;
  color: goldenrod;
  border: 1.5px solid goldenrod;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.btn-ghost-custom:hover {
  border-color: navy;
  color: navy;
  transform: translateY(-2px);
} */

/* Hero stats */
.hero-stats { gap: 2rem; }

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(203, 11, 11, 0.5);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* Hero visual */
.hero-split-image {
  position: relative;
  width: 100%;
  min-height: 550px;
  overflow: hidden;
  border-radius: 1rem;
  /* box-shadow: 0 32px 90px rgba(0,0,0,0.18); */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 8%, rgba(0,0,0,0.6) 30%, black 70%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 8%, rgba(0,0,0,0.6) 30%, black 50%);
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.hero-split-image .hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .hero-content {
    padding: 1.5rem 1.25rem;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-split-image {
    min-height: 400px;
  }
}

/* Scroll indicator */
/* .scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.1); }
} */

/* ============================================================
   MARQUEE STRIP
============================================================ */
.marquee-strip {
  background: var(--deep-forest);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,113,0.2);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 14s linear infinite;
}

.marquee-track span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: navy;
  font-weight: 500;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
============================================================ */
.about-section { background: var(--ivory); }

.about-img-grid {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 88%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 4px solid var(--ivory);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
   background: rgba(255, 255, 255, 0.015);
  /* color: var(--white); */
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-hover);
  z-index: 2;
  min-width: 100px;
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(7, 7, 7, 0.65);
  line-height: 1.4;
  margin-top: 4px;
}

/* Pillar cards */
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--ivory-deep);
  transition: all var(--transition);
}

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

.pillar-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}

.pillar-card h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: 0.3rem;
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================================
   SERVICES
============================================================ */
.services-section {
  background: var(--deep-forest);
}

.services-section .section-eyebrow { color: var(--accent); }
.services-section .section-title { color: var(--white); }
.services-section .section-title em { color: var(--accent-light); }
.services-section .section-subtitle { color: rgba(255,255,255,0.6); max-width: 50ch; margin: 0 auto; }

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,113,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,113,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

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

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--deep-forest) 0%, transparent 60%);
  opacity: 0.6;
}

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

.service-icon {
  width: 46px;
  height: 46px;
  background: rgba(212,175,113,0.12);
  border: 1px solid rgba(212,175,113,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon i {
  font-size: 1.1rem;
  color: var(--accent);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-card-body h3 {
  color: navy;
}

.service-card-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 1rem;
  transition: gap var(--transition);
}

.service-link:hover { gap: 0.8rem; color: var(--accent-light); }

/* ============================================================
   BLOG
============================================================ */

/* Blog Cards */
.blog-card {
  transition: 0.3s;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  margin: 10px;
  background: linear-gradient(135deg, var(--gold-light), rgba(94,176,194,0.2));
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

/* Button */
.btn-custom {
  background: #007bff;
  color: white;
  border-radius: 30px;
}

.btn-custom:hover {
  background: #0056b3;
}

/* Modal Content */
.modal-body img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.modal {
  z-index: 9999 !important;
}

.modal-backdrop {
  z-index: 9998 !important;
}

/* .blog-section { background: var(--ivory-deep); }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--deep-forest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.76rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--deep-forest);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.blog-card:hover .blog-title { color: var(--forest-light); }

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest-light);
  letter-spacing: 0.04em;
  transition: gap var(--transition), color var(--transition);
}

.blog-read-more:hover {
  gap: 0.6rem;
  color: var(--deep-forest);
} */

/* ============================================================
   GALLERY
============================================================ */
.gallery-section { background: var(--ivory); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,46,38,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-item-overlay { background: rgba(26,46,38,0.55); }
.gallery-item:hover .gallery-item-overlay i { opacity: 1; transform: scale(1); }
.gallery-item:hover img { transform: scale(1.07); }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: unset; }
  .gallery-item--wide { grid-column: unset; }
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section {
  background: var(--deep-forest);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '❝';
  position: absolute;
  top: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 25rem;
  color: rgba(212,175,113,0.04);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonials-section .section-eyebrow { color: var(--accent); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-title em { color: var(--accent-light); }

.testimonial-card {
  text-align: center;
  padding: 3rem 2rem;
}

.testimonial-stars i {
  color: var(--accent);
  font-size: 1rem;
  margin: 0 1px;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin: 1.5rem 0 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--deep-forest);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Carousel custom controls */
.carousel-ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,113,0.3);
  background: rgba(212,175,113,0.08);
  color: var(--accent);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}

.carousel-ctrl-btn:hover {
  background: var(--accent);
  color: var(--deep-forest);
}

.carousel-indicators-custom button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  transition: all var(--transition);
  cursor: pointer;
}

.carousel-indicators-custom button.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============================================================
   CONTACT
============================================================ */
.contact-section { background: var(--ivory); }

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

.contact-info-icon i {
  font-size: 1rem;
  color: var(--accent);
}

.contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.contact-info-item a:hover { color: var(--forest-light); }

/* Social links */
.social-links { display: flex; gap: 0.75rem; }

.social-link {
   width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8a93c);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.05);
  color: var(--navy);
}

/* Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--ivory-deep);
}

.form-label-custom {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  display: block;
}

.form-control-custom {
  background: var(--ivory);
  border: 1.5px solid var(--ivory-deep);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: all var(--transition);
  width: 100%;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--forest-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(61,107,90,0.1);
}

.form-control-custom::placeholder { color: var(--text-light); }

.contact-form-wrapper .btn-primary-custom {
  background: linear-gradient(135deg, var(--deep-forest), var(--forest-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-shadow: 0 10px 28px rgba(27, 59, 48, 0.18);
  transition: all var(--transition);
}

.contact-form-wrapper .btn-primary-custom:hover,
.contact-form-wrapper .btn-primary-custom:focus {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--deep-forest);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,175,113,0.35);
}

.contact-form-wrapper .btn-primary-custom:active {
  transform: translateY(0);
}

.alert-success-custom {
  background: rgba(61,107,90,0.1);
  border: 1px solid rgba(61,107,90,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--forest-light);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.alert-success-custom i { font-size: 1.2rem; }



/* ============================================================
   FOOTER
============================================================ */
/* .site-footer {
  background: #0f1e19;
  padding: 5rem 0 0;
  color: rgba(255,255,255,0.6);
}

.footer-brand .brand-name { color: var(--white); }

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 34ch;
}

.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

.footer-newsletter .form-control-custom {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}

.footer-newsletter .form-control-custom::placeholder { color: rgba(255,255,255,0.35); }

.site-footer .social-link {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}

.site-footer .social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--deep-forest);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  margin-top: 4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
} */

.footer-bottom a {
  color: var(--navy-mid);
  text-decoration: underline;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: #c6922c;
}

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--deep-forest);
  border: 1px solid rgba(212,175,113,0.3);
  color: var(--accent);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--deep-forest);
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .hero-stats { flex-wrap: wrap; }
  .about-img-grid { height: 420px; }
  .section-padding { padding: 72px 0; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.6rem; }
  .about-img-grid { height: 340px; }
  .about-badge { right: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .contact-form-wrapper { padding: 1.5rem; }
  .contact-form-wrapper .btn-primary-custom { width: 100% !important; }
  .section-padding { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AOS custom tweaks
============================================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }



@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px !important;
    width: auto !important;
  }

  .nav-brand-text {
    font-size: 0.9rem;
  }
}
