/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Outfit:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* Color Variables & Theme Settings */
:root {
  --bg-base: #fcfbf7; /* Warm spiritual cream */
  --bg-card: #ffffff; /* Pure white for card contrast */
  --bg-alt: #f7efe0; /* Light sandalwood/marigold tint */
  --primary: #f55a05; /* Sacred Saffron (bright & positive) */
  --primary-hover: #d34800; /* Darker saffron */
  --secondary: #d4af37; /* Warm Gold (auspicious) */
  --secondary-hover: #bda030;
  --text-heading: #4a030b; /* Darker deep crimson for maximum visibility */
  --text-body: #241e1b; /* Darker charcoal for readability */
  --text-light: #ffffff;
  --text-muted: #544a40; /* Darker grey-brown */
  --border-color: rgba(212, 175, 55, 0.25); /* Subtle gold border */

  --font-heading: "Marcellus", serif;
  --font-body: "Outfit", "Poppins", sans-serif;

  --shadow-sm: 0 2px 8px rgba(92, 6, 18, 0.05);
  --shadow-md: 0 8px 24px rgba(92, 6, 18, 0.08);
  --shadow-lg: 0 16px 40px rgba(92, 6, 18, 0.12);
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

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

body {
  background-color: var(--bg-base);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Typography styling */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 400;
  line-height: 1.3;
}

p {
  font-weight: 400;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Layout Utilities */
.section-padding {
  padding: 80px 0;
}

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

/* Grid layout with flex fallback */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent; /* Ensure identical box models across all button types */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(245, 90, 5, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 90, 5, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-heading);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-white {
  background-color: var(--text-light);
  color: var(--text-heading);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-white:hover {
  background-color: var(--bg-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Header & Navbar */
.header {
  position: fixed;
  top: 40px; /* Offset for top utility bar */
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background-color: rgba(252, 251, 247, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header.scrolled {
  top: 0; /* Sticky to very top when scrolled */
  background-color: var(--bg-base);
  box-shadow: var(--shadow-sm);
  border-bottom: 1.5px solid var(--secondary);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 2rem;
  color: var(--primary);
  animation: rotateSlow 20s linear infinite;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-heading);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 6px 0;
  white-space: nowrap; /* Prevent menu links from wrapping into multiple lines */
}

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

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn {
  padding: 0 18px; /* Use line-height & flex centering instead of padding to prevent vertical shifts */
  font-size: 0.85rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px; /* Force perfect matching heights */
  text-transform: none; /* Soft Astro look */
  letter-spacing: 0.5px;
  box-sizing: border-box;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-heading);
}

/* Background Mandala Decoration for Aura */
.section-ornament {
  position: absolute;
  width: 300px;
  height: 300px;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23d4af37' d='M50 0 L55 35 L90 20 L65 50 L90 80 L55 65 L50 100 L45 65 L10 80 L35 50 L10 20 L45 35 Z'/%3E%3Ccircle cx='50' cy='50' r='10' fill='none' stroke='%23d4af37' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 200px; /* Offset for top utility bar + header + space */
  padding-bottom: 100px;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(245, 90, 5, 0.07) 0%,
    rgba(212, 175, 55, 0.05) 50%,
    var(--bg-base) 100%
  );
  overflow: hidden;
}

/* Background Mandala Backdrop (unused on desktop, now handled via container pseudo-element) */
.hero::before {
  display: none;
}

.hero-image-container::before {
  content: "";
  position: absolute;
  top: calc(50% - 300px);
  left: calc(50% - 90px);
  width: 600px;
  height: 600px;
  background-image: url("hero_bg_mandala.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.7;
  pointer-events: none;
  animation: rotateSlow 90s linear infinite;
  z-index: 1;
  transform-origin: center center;
  display: block; /* Shown on desktop */
}

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

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero-tagline i {
  color: var(--primary);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-heading);
}

.hero-title span {
  color: var(--primary);
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-body);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-main-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--bg-card);
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-alt);
  padding: 10px;
  z-index: 10;
}

.hero-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(245, 90, 5, 0.05) 50%,
    transparent 70%
  );
  z-index: 1;
  animation: pulse 6s ease-in-out infinite alternate;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--bg-card);
  border: 2px solid var(--secondary);
  border-radius: 16px;
  padding: 15px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.hero-badge-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-heading);
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Section Header styling */
.section-header {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-tag {
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
}

.section-title.left-align::after {
  left: 0;
  transform: none;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* About Us Section */
.about {
  position: relative;
  background-color: var(--bg-card);
  overflow: hidden;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background-color: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.about-feature-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
}

.about-img-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 24px;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  text-align: center;
  line-height: 1.1;
  border: 2px solid var(--text-light);
}

.about-experience-badge span {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.about-experience-badge text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services {
  background-color: var(--bg-alt);
}

.service-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.service-card:hover::before {
  transform: scaleX(1);
  background-color: var(--primary);
}

.service-icon-box {
  width: 80px;
  height: 80px;
  background-color: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  color: var(--primary);
  font-size: 2.2rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
  color: var(--text-light);
  transform: rotateY(360deg);
  border-color: var(--primary);
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-btn {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  border: none;
  background: none;
  cursor: pointer;
}

.service-card:hover .service-card-btn {
  color: var(--text-heading);
}

.service-card-btn i {
  transition: var(--transition);
}

.service-card:hover .service-card-btn i {
  transform: translateX(4px);
}

/* Why Choose Us Section */
.why-choose {
  background-color: var(--bg-card);
  position: relative;
}

.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-md);
  background-color: var(--bg-base);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.why-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-alt);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid var(--secondary);
}

.why-card:hover .why-icon {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.why-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-heading);
}

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

/* Booking Consultation Form Section */
.booking {
  background-color: var(--bg-alt);
  position: relative;
}

.booking-wrapper {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: grid;
  grid-template-columns: 45% 55%;
}

.booking-info {
  background: linear-gradient(135deg, var(--text-heading) 0%, #300309 100%);
  color: var(--text-light);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.booking-info::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23d4af37' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.booking-info h2 {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 20px;
}

.booking-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 1rem;
}

.booking-contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.booking-contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--secondary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.booking-contact-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-contact-value {
  font-size: 1.05rem;
  font-weight: 600;
}

.booking-form-side {
  padding: 60px 40px;
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--text-heading);
}

.form-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-body);
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  border: 1px solid #dcd1c4;
  background-color: var(--bg-base);
  color: var(--text-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 90, 5, 0.1);
  background-color: #ffffff;
}

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

/* Custom dropdown style */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235c0612'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  padding-right: 40px;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--bg-card);
}

.testimonial-card {
  background-color: var(--bg-base);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--secondary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-rating {
  color: #f5a623;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-alt);
  border: 1.5px solid var(--secondary);
  color: var(--primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-user-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-heading);
  font-weight: 600;
}

.testimonial-user-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Contact & Google Maps Section */
.contact {
  background-color: var(--bg-alt);
  position: relative;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 40px;
}

.contact-details-box {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.contact-details-box h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text-heading);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: var(--bg-alt);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.contact-text h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-text p,
.contact-text a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
}

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

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

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--bg-base);
  border: 1px solid var(--border-color);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.social-btn.facebook:hover {
  background-color: #1877f2;
  border-color: #1877f2;
}

.social-btn.instagram:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  border-color: transparent;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--secondary);
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/* Footer Section */
.footer {
  background-color: var(--text-heading);
  color: var(--text-light);
  padding: 60px 0 30px 0;
  border-top: 3px solid var(--secondary);
}

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

.footer-logo .logo-title {
  color: var(--secondary);
}

.footer-logo .logo-subtitle {
  color: var(--text-light);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-widget h3 {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

.footer-links a::before {
  content: "➔";
  font-size: 0.75rem;
  color: var(--secondary);
  transition: var(--transition);
}

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

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

/* Floating Actions (Call and WhatsApp widgets) */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-5px);
}

.floating-whatsapp {
  background-color: #25d366;
}

.floating-call {
  background-color: var(--primary);
}

/* Ripple effect animation for floating buttons */
.floating-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
  transition: var(--transition);
}

.floating-whatsapp::after {
  background-color: #25d366;
  animation: ripple 2s infinite;
}

.floating-call::after {
  background-color: var(--primary);
  animation: ripple 2s infinite 0.5s;
}

/* Mobile Sticky Action Bar at the Bottom (hidden on desktop) */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-card);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  z-index: 9999; /* Ensure it stays on top of all page content */
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border-color);
  padding-bottom: env(safe-area-inset-bottom); /* iOS notch safe area support */
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-sticky-btn.call {
  background-color: var(--primary);
}

.mobile-sticky-btn.whatsapp {
  background-color: #25d366;
}

/* Animations */
@keyframes rotateSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Scroll Triggered Animations class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* Responsive Media Queries */

/* Medium screen desktop view to prevent menu overlap and misalignment */
@media (max-width: 1200px) and (min-width: 1025px) {
  .nav-container {
    padding: 0 16px;
  }
  .logo-title {
    font-size: 1.2rem;
  }
  .logo-subtitle {
    font-size: 0.68rem;
  }
  .logo {
    gap: 8px;
  }
  .nav-menu {
    gap: 14px;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .nav-cta {
    gap: 8px;
  }
  .nav-cta .btn {
    padding: 0 12px;
    font-size: 0.8rem;
    height: 36px;
  }
}

/* Tablet view styling */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .header {
    top: 40px;
  }

  /* Collapse header menu to mobile layout on tablet screens (under 1024px) to prevent overlaps */
  .nav-menu {
    position: fixed;
    top: 120px; /* 40px top bar + 80px header */
    left: -100%;
    width: 100%;
    height: calc(100vh - 120px);
    background-color: var(--bg-base);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 999;
    border-top: 1px solid var(--border-color);
  }

  .header.scrolled .nav-menu {
    top: 80px;
    height: calc(100vh - 80px);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: block;
  }

  .nav-cta {
    display: none;
  }
}

/* Mobile view styling */
@media (max-width: 768px) {
  .header {
    top: 38px; /* Offset for mobile top bar (38px) */
  }

  .nav-menu {
    top: 118px; /* 38px top bar + 80px header */
    height: calc(100vh - 118px);
  }

  .header.scrolled .nav-menu {
    top: 80px;
    height: calc(100vh - 80px);
  }

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

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Header menu mobile rules moved to 1024px query to prevent overlaps on tablets and small laptops */

  /* Hero adjusting */
  .hero {
    padding-top: 160px; /* Offset for top bar and header */
    padding-bottom: 60px;
    text-align: center;
  }

  .hero::before {
    display: none;
  }

  .hero-image-container::before {
    display: block;
    top: -53%;
    left: 15%;
    width: 120%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .hero-tagline {
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .hero-image-container {
    margin: 20px auto 0 auto;
    max-width: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }

  .hero-main-img {
    max-width: 400px;
  }

  .hero-badge {
    bottom: 10px;
    left: 10px;
    padding: 10px 15px;
  }

  .hero-badge-icon {
    font-size: 1.5rem;
  }

  .hero-badge-title {
    font-size: 1rem;
  }

  /* About */
  .about-experience-badge {
    width: 90px;
    height: 90px;
    padding: 15px;
    top: -10px;
    right: -10px;
  }

  .about-experience-badge span {
    font-size: 1.4rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  /* Booking form wrappers */
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-info {
    padding: 40px 24px;
  }

  .booking-form-side {
    padding: 40px 24px;
  }

  /* Contact and map */
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-details-box {
    padding: 30px 20px;
  }

  .map-container {
    min-height: 300px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Floating button hide, use sticky mobile bar instead */
  .floating-actions {
    display: none;
  }

  .mobile-sticky-bar {
    display: grid;
  }

  body {
    padding-bottom: 85px; /* Restored breathing room at bottom so no footer content is covered */
  }
}

/* Testimonials Slider Styles */
.testimonials-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

.testimonials-slider-container {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  display: flex;
  gap: 30px;
  padding: 15px 5px;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}

.testimonials-slider-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.testimonial-slide {
  flex: 0 0 calc(33.333% - 20px); /* 3 cards on desktop */
  scroll-snap-align: start;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.slider-btn:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.prev-btn {
  left: -22px;
}

.next-btn {
  right: -22px;
}

/* Dots navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dcd1c4;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 10px;
}

/* Slider Responsive adjustments */
@media (max-width: 1024px) {
  .testimonial-slide {
    flex: 0 0 calc(50% - 15px); /* 2-card scroll on tablet */
  }
}

@media (max-width: 768px) {
  .testimonial-slide {
    flex: 0 0 100%; /* 1-card scroll on mobile */
  }
  .prev-btn {
    left: -10px;
  }
  .next-btn {
    right: -10px;
  }
  .slider-btn {
    width: 38px;
    height: 38px;
  }
}

/* Top Bar Styling */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: var(
    --text-heading
  ); /* Deep crimson for sacred vibe & contrast */
  color: var(--text-light);
  z-index: 1010;
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1.5px solid var(--secondary);
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

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

.top-bar-left a {
  color: var(--secondary); /* Warm gold link */
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.top-bar-left a:hover {
  color: var(--primary); /* Saffron on hover */
}

.top-bar-left i {
  color: var(--primary);
  font-size: 0.9rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 4px;
}

.lang-toggle-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 4px;
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.lang-toggle-link:hover {
  color: var(--text-light);
  border-color: var(--secondary);
}

.lang-toggle-link.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  font-weight: 600;
  pointer-events: none; /* Disable click on active language link */
}

/* Phone icon heartbeat animation in top bar */
.phone-pulse {
  animation: phonePulse 2s infinite alternate;
}

@keyframes phonePulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 4px var(--primary));
  }
}

/* Scrolled Body adjustments */
body.scrolled .top-bar {
  transform: translateY(-100%);
}

body.scrolled .header {
  top: 0 !important;
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.8rem;
    height: 38px;
  }
  .top-bar-container {
    padding: 0 16px;
  }
  .lang-label {
    display: none; /* Hide label on small mobile screens to save space */
  }
}
