/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #8B1A1A;
  --primary-light: #a83232;
  --primary-dark: #5c1111;
  --secondary: #C9963B;
  --gold: #D4A853;
  --gold-light: #f0d890;
  --gold-dark: #9e7020;
  --saffron: #E8750A;
  --maroon: #6B1D1D;
  --cream: #FDF8F0;
  --cream-dark: #f5ece0;
  --ivory: #FFFFF5;
  --text: #2D1B0E;
  --text-light: #5C4A3A;
  --text-muted: #8B7355;
  --bg: #FFFDF9;
  --bg-warm: #FBF5EC;
  --bg-section: #F9F3EA;
  --bg-dark: #1a0f08;
  --white: #ffffff;
  --border: #E8DCC8;
  --border-gold: rgba(201, 150, 59, 0.3);
  --shadow-sm: 0 2px 8px rgba(45, 27, 14, 0.06);
  --shadow: 0 4px 20px rgba(45, 27, 14, 0.08);
  --shadow-lg: 0 12px 40px rgba(45, 27, 14, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 150, 59, 0.2);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 80px;
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MUSIC TOGGLE ===== */
.music-toggle {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 899;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.music-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.music-toggle svg {
  width: 22px;
  height: 22px;
}

.music-toggle .music-icon-off {
  display: block;
}

.music-toggle .music-icon-on {
  display: none;
}

.music-toggle.playing .music-icon-off {
  display: none;
}

.music-toggle.playing .music-icon-on {
  display: block;
}

.music-toggle.playing {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 150, 59, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(201, 150, 59, 0); }
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: var(--header-height);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 253, 249, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.logo .logo-icon {
  font-size: 1.8rem;
}

.logo span:last-child {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.logo img {
  height: 44px;
  width: 44px;
}

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

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.lang-toggle {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream);
}

.lang-toggle button {
  border: none;
  background: none;
  padding: 7px 14px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 600;
  color: var(--text-muted);
}

.lang-toggle button.active {
  background: var(--primary);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO - FULL SCREEN ===== */
.hero {
  margin-top: var(--header-height);
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.carousel-slide.active {
  opacity: 1;
}

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

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 15, 8, 0.1) 0%,
    rgba(26, 15, 8, 0.3) 30%,
    rgba(26, 15, 8, 0.7) 70%,
    rgba(26, 15, 8, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 24px 120px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 150, 59, 0.2);
  border: 1px solid rgba(201, 150, 59, 0.4);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.03em;
}

.carousel-overlay h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.carousel-overlay p {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), var(--gold-dark));
  color: var(--white);
  padding: 18px 42px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 25px rgba(201, 150, 59, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--secondary));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(201, 150, 59, 0.5);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

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

.carousel-controls {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(201, 150, 59, 0.5);
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-prev { left: 30px; }
.carousel-next { right: 30px; }

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(201, 150, 59, 0.3);
  border-color: var(--secondary);
  transform: translateY(-50%) scale(1.1);
}

/* ===== DECORATIVE DIVIDER ===== */
.divider-ornament {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.divider-ornament .divider-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.divider-ornament .divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--gold), var(--secondary), var(--primary));
  opacity: 0.7;
}

/* ===== IMAGE BREAK SECTION ===== */
.image-break {
  position: relative;
  height: 500px;
  overflow: hidden;
  padding: 0;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 15, 8, 0.85), rgba(26, 15, 8, 0.4));
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.image-break-content h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 16px;
  max-width: 600px;
}

.image-break-content p {
  font-family: var(--font-heading);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  max-width: 500px;
}

/* ===== SECTION STYLING ===== */
section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-tag-light {
  color: var(--gold-light);
}

.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section-title-light {
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--gold-light));
  margin: 0 auto 50px;
  border-radius: 2px;
}

.section-divider-light {
  background: linear-gradient(90deg, var(--gold-light), var(--secondary));
}

/* ===== SERVICES GRID ===== */
.services-section {
  background:
    linear-gradient(135deg, rgba(139, 26, 26, 0.02), transparent 50%),
    linear-gradient(225deg, rgba(201, 150, 59, 0.04), transparent 50%),
    var(--bg-section);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

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

.service-card:hover::after {
  opacity: 1;
}

.service-card-img {
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-dark), var(--bg-warm));
  position: relative;
}

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

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

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card-body p {
  color: var(--text-light);
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card-body .btn-secondary {
  align-self: flex-start;
  padding: 10px 24px;
  font-size: 0.82rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background:
    radial-gradient(ellipse at top right, rgba(201, 150, 59, 0.06), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(139, 26, 26, 0.03), transparent 60%),
    var(--white);
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text p {
  margin-bottom: 24px;
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1.05rem;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--border-gold);
  border-radius: calc(var(--radius-xl) + 8px);
  z-index: -1;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

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

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.team-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  background: var(--bg-warm);
  border: 1px solid var(--border);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--secondary);
}

.team-member-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 4px solid var(--secondary);
  box-shadow: 0 4px 20px rgba(201, 150, 59, 0.2);
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.team-member p {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ===== TESTIMONIALS - RICH BACKGROUND ===== */
.testimonials-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 150, 59, 0.2);
  position: relative;
  transition: all var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
}

/* ===== GALLERY - LARGE IMMERSIVE ===== */
.gallery-section {
  background:
    radial-gradient(ellipse at center, rgba(201, 150, 59, 0.03), transparent 70%),
    var(--white);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow);
}

.gallery-item-large {
  grid-column: span 2;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 8, 0.4), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 15, 8, 0.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform var(--transition);
}

.lightbox-close:hover {
  transform: scale(1.2) rotate(90deg);
}

/* ===== CALENDAR ===== */
.calendar-section {
  background:
    linear-gradient(135deg, rgba(201, 150, 59, 0.04), transparent 50%),
    var(--bg-section);
}

.calendar-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.calendar-embed {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}

.calendar-embed iframe {
  width: 100%;
  height: 550px;
  border: none;
}

.calendar-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== CONTACT ===== */
.contact-section {
  background:
    radial-gradient(ellipse at bottom right, rgba(201, 150, 59, 0.05), transparent 60%),
    var(--white);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
  padding: 22px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.contact-info-item:hover {
  background: var(--bg-warm);
  border-color: var(--border-gold);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--cream-dark), var(--bg-warm));
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  transition: all var(--transition);
}

.contact-info-item:hover .contact-icon {
  border-color: var(--secondary);
  box-shadow: var(--shadow-gold);
}

.contact-info-item h4 {
  font-size: 0.78rem;
  margin-bottom: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

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

.contact-map {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ===== FORMS ===== */
.contact-form-wrap {
  background: var(--bg-warm);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--text);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--transition);
  background: var(--white);
  color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(201, 150, 59, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-message-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 0 0 30px;
  position: relative;
}

.footer-top-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  margin-bottom: 60px;
}

.footer-top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-top-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.8;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer h4 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.site-footer ul {
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 12px;
}

.site-footer ul a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.site-footer ul a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 62px;
  height: 62px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6); }
}

/* ===== PUJA PAGE STYLES ===== */
.puja-hero {
  margin-top: var(--header-height);
  height: 50vh;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-dark), var(--bg-warm));
}

.puja-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.puja-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 8, 0.75), rgba(26, 15, 8, 0.15));
  display: flex;
  align-items: flex-end;
  padding: 60px;
}

.puja-hero-overlay h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 3rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.01em;
}

.puja-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 24px;
}

.puja-description {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 40px;
}

.puja-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.puja-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-warm);
  box-shadow: var(--shadow);
}

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

.puja-gallery-item:hover img {
  transform: scale(1.06);
}

/* ===== ACCORDION ===== */
.accordion {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--transition);
}

.accordion:hover {
  border-color: var(--border-gold);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-warm);
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}

.accordion-header:hover {
  background: var(--cream-dark);
}

.accordion-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.accordion-arrow {
  transition: transform var(--transition);
  font-size: 1.2rem;
  color: var(--text-muted);
}

.accordion.open .accordion-arrow {
  transform: rotate(180deg);
  color: var(--secondary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content-inner {
  padding: 24px;
}

.accordion-desc {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ===== CHECKBOXES ===== */
.checkbox-list {
  list-style: none;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.checkbox-item:last-child {
  border-bottom: none;
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-item-label {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

.checkbox-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== INCLUDED SECTION ===== */
.included-section {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-bottom: 28px;
}

.included-section h3 {
  font-family: var(--font-heading);
  margin-bottom: 14px;
  color: var(--text);
  font-size: 1.25rem;
}

.included-section p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== DATE PICKER ===== */
.date-section {
  margin: 28px 0;
}

.date-section label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.date-section input[type="date"] {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
  font-family: inherit;
  transition: all var(--transition);
}

.date-section input[type="date"]:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(201, 150, 59, 0.1);
}

/* ===== RELATED PUJAS ===== */
.related-pujas {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}

.related-pujas h3 {
  font-family: var(--font-display);
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.related-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  display: block;
  color: var(--text);
}

.related-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-gold);
  color: var(--text);
  transform: translateY(-4px);
}

.related-card h4 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 600;
}

.related-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== WHATSAPP CTA ON PUJA PAGE ===== */
.puja-whatsapp-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, var(--bg-warm), var(--cream-dark));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.puja-whatsapp-cta p {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition);
  font-size: 0.92rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery-item-large {
    grid-column: span 2;
  }

  .image-break {
    height: 350px;
  }

  .image-break-overlay {
    padding: 0 40px;
  }

  .image-break-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 90px 32px 32px;
    gap: 20px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right var(--transition);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: 90vh;
  }

  .carousel-overlay {
    padding: 0 20px 100px;
  }

  .carousel-overlay h1 {
    font-size: 2.2rem;
  }

  .carousel-overlay p {
    font-size: 1.1rem;
  }

  .carousel-prev,
  .carousel-next {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .carousel-prev { left: 16px; }
  .carousel-next { right: 16px; }

  .divider-ornament {
    height: 50px;
  }

  .image-break {
    height: 300px;
  }

  .image-break-overlay {
    padding: 0 24px;
  }

  .image-break-content h2 {
    font-size: 1.8rem;
  }

  .image-break-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  section {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .about-image img {
    height: 350px;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 100%;
  }

  .team-member {
    padding: 16px 8px;
  }

  .team-member-img {
    width: 80px;
    height: 80px;
    border-width: 3px;
  }

  .team-member h4 {
    font-size: 0.9rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .contact-form-wrap {
    padding: 28px;
  }

  .footer-top-image {
    height: 120px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .puja-hero {
    height: 35vh;
    min-height: 250px;
  }

  .puja-hero-overlay {
    padding: 30px;
  }

  .puja-hero-overlay h1 {
    font-size: 2rem;
  }

  .puja-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .music-toggle {
    bottom: 96px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .music-toggle svg {
    width: 18px;
    height: 18px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 85vh;
  }

  .carousel-overlay h1 {
    font-size: 1.8rem;
  }

  .carousel-overlay p {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .btn-primary {
    padding: 14px 30px;
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item-large {
    grid-column: span 1;
  }

  .image-break {
    height: 250px;
  }

  .image-break-content h2 {
    font-size: 1.5rem;
  }

  .contact-info-item {
    padding: 14px;
  }

  .contact-form-wrap {
    padding: 20px;
  }
}
