/* ==========================================
   AURA CELEBRATIONS - Design System
   ========================================== */

/* ---- CSS Custom Properties ---- */
:root {
  --color-gold: #C8A24A;
  --color-gold-light: rgba(200, 162, 74, 0.1);
  --color-gold-dark: #a8832e;
  --color-bg: #ffffff;
  --color-beige: #F8F5F0;
  --color-dark: #1a1a2e;
  --color-dark-2: #16213e;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #eeeeee;
  --color-success: #28a745;
  --color-whatsapp: #25D366;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --container-width: 1320px;
  --container-padding: 20px;
  --section-padding: 80px;
  --section-padding-mobile: 40px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50%;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---- Section ---- */
.section {
  padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile) 0;
  }
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--color-gold-light);
  color: var(--color-gold);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

.gold-text {
  color: var(--color-gold);
}

/* ---- Buttons ---- */
.aura-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  line-height: 1.4;
  white-space: nowrap;
}

.aura-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.aura-btn:active {
  transform: translateY(0);
}

.aura-btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.aura-btn-lg {
  padding: 16px 40px;
  font-size: 17px;
}

/* Primary */
.aura-btn-primary {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}

.aura-btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: #fff;
}

/* Outline */
.aura-btn-outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.aura-btn-outline:hover {
  background: var(--color-gold);
  color: #fff;
}

/* Outline Light */
.aura-btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.aura-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* WhatsApp */
.aura-btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
}

.aura-btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}

/* ==========================================
   HEADER
   ========================================== */
.aura-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition-normal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aura-header.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

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

.aura-logo img {
  max-height: 50px;
  width: auto;
}

.aura-logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.aura-logo-tagline {
  display: none;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Navigation */
.aura-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.aura-menu li {
  position: relative;
}

.aura-menu a {
  display: block;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.aura-menu a:hover,
.aura-menu .current-menu-item > a {
  color: var(--color-gold);
  background: rgba(200, 162, 74, 0.1);
}

/* Submenu */
.aura-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-dark);
  min-width: 220px;
  border-radius: var(--radius-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.aura-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.aura-menu .sub-menu a {
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.8);
}

/* Menu toggle (mobile) */
.aura-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.aura-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.aura-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.aura-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.aura-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Header actions */
.aura-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================
   MOBILE STICKY BUTTONS
   ========================================== */
.aura-mobile-buttons {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 10px;
}

.aura-mobile-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast);
}

.aura-mobile-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.aura-call-btn {
  background: var(--color-dark);
}

.aura-whatsapp-btn {
  background: var(--color-whatsapp);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.7) 100%);
}

/* Hero Split Layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 60px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    padding: 120px 0 40px;
    min-height: auto;
  }
}

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

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(200, 162, 74, 0.2);
  color: var(--color-gold);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 56px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }
}

.hero-desc {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Hero Gallery (Right Side) */
.hero-gallery {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
  .hero-gallery {
    max-width: 400px;
    aspect-ratio: 4/3;
  }
}

.hero-gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.05);
}

.hero-gallery-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gallery Indicators */
.hero-gallery-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-gallery-dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

.hero-gallery-dot:hover {
  background: var(--color-gold);
}

/* Placeholder when no images */
.hero-gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 3/4;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  text-align: center;
  padding: 40px;
}

.hero-gallery-placeholder p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  max-width: 250px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-images {
  position: relative;
}

.about-img-main {
  position: relative;
}

.about-img-main img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-gold);
  color: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.about-exp-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-serif);
}

.about-exp-text {
  font-size: 14px;
  opacity: 0.9;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text-light);
}

.about-feature svg {
  flex-shrink: 0;
}

/* ==========================================
   SERVICES CAROUSEL
   ========================================== */
.services-carousel-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}

.services-carousel-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 5px;
  scroll-behavior: smooth;
}

.services-carousel-track::-webkit-scrollbar {
  display: none;
}

.service-carousel-card {
  flex: 0 0 calc(33.333% - 18px);
  min-width: 280px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-carousel-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.service-carousel-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.service-carousel-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 25px 25px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.service-carousel-title h3 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0;
  line-height: 1.3;
}

/* Carousel Navigation Buttons */
.services-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: #fff;
  border: none;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  transition: all 0.3s ease;
  z-index: 10;
}

.services-carousel-btn:hover {
  background: var(--color-gold);
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.1);
}

.services-carousel-prev {
  left: 0;
}

.services-carousel-next {
  right: 0;
}

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

.services-carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-text-muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.4;
}

.services-carousel-dots .dot.active {
  background: var(--color-gold);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

.services-carousel-dots .dot:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-carousel-card {
    flex: 0 0 calc(50% - 14px);
    min-width: 240px;
    aspect-ratio: 4/5;
  }
}

@media (max-width: 600px) {
  .services-carousel-wrapper {
    padding: 0 35px;
  }
  .service-carousel-card {
    flex: 0 0 85%;
    min-width: 220px;
    aspect-ratio: 3/4;
  }
  .services-carousel-btn {
    width: 36px;
    height: 36px;
  }
  .service-carousel-title h3 {
    font-size: 18px;
  }
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.whychoose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .whychoose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .whychoose-grid {
    grid-template-columns: 1fr;
  }
}

.whychoose-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--color-beige);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.whychoose-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.whychoose-icon {
  width: 70px;
  height: 70px;
  background: var(--color-gold-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.whychoose-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.whychoose-card p {
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ==========================================
   PROCESS / TIMELINE
   ========================================== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .process-arrow {
    transform: rotate(90deg);
    justify-content: center;
  }
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.process-num {
  width: 60px;
  height: 60px;
  background: var(--color-gold);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-serif);
  margin: 0 auto 15px;
}

.process-step h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.process-step p {
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.7;
}

.process-arrow {
  display: flex;
  align-items: center;
  color: var(--color-gold);
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .gallery-grid-home {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item-home {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
}

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

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

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

.gallery-item-home:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-cat {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 5px 14px;
  background: var(--color-gold);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

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

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 35px;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 3px;
}

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

/* ==========================================
   LOCATIONS
   ========================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

.location-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--color-beige);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.location-icon {
  margin-bottom: 15px;
}

.location-card h3 {
  font-size: 22px;
  font-family: var(--font-serif);
  margin-bottom: 10px;
  color: var(--color-dark);
}

.location-card p {
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.7;
}

.location-card-cta {
  border: 2px dashed var(--color-gold);
  background: var(--color-gold-light);
}

/* ==========================================
   BLOG
   ========================================== */
.blog-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .blog-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid-home {
    grid-template-columns: 1fr;
  }
}

.blog-card-home {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.blog-card-img {
  display: block;
  overflow: hidden;
  height: 220px;
}

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

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

.blog-card-body {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-size: 20px;
  font-family: var(--font-serif);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body h3 a {
  color: var(--color-dark);
}

.blog-card-body h3 a:hover {
  color: var(--color-gold);
}

.blog-card-body p {
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section-final {
  padding: 100px 0;
}

.cta-section-final h2 {
  margin-bottom: 20px;
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--color-dark), var(--color-dark-2));
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  color: #fff;
  margin-bottom: 10px;
}

.page-header-excerpt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   BLOG INDEX / SINGLE
   ========================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.blog-card-image {
  display: block;
  overflow: hidden;
  max-height: 300px;
}

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

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

.blog-card-content {
  padding: 30px;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 24px;
  font-family: var(--font-serif);
  margin-bottom: 12px;
}

.blog-card-title a {
  color: var(--color-dark);
}

.blog-card-title a:hover {
  color: var(--color-gold);
}

.blog-card-excerpt {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.pagination a,
.pagination span {
  display: inline-block;
  padding: 10px 16px;
  margin: 0 4px;
  border-radius: var(--radius-sm);
  background: var(--color-beige);
  color: var(--color-text);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.pagination .current,
.pagination a:hover {
  background: var(--color-gold);
  color: #fff;
}

/* Single Post */
.single-post-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
}

.single-post-image img {
  width: 100%;
}

.single-post-content {
  font-size: 17px;
  line-height: 2;
  color: var(--color-text);
}

.single-post-content p {
  margin-bottom: 20px;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  font-family: var(--font-serif);
  margin-top: 30px;
  margin-bottom: 15px;
}

.post-cta {
  margin-top: 40px;
  padding: 40px;
  background: var(--color-beige);
  border-radius: var(--radius-lg);
  text-align: center;
}

.post-cta h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 10px;
}

.post-cta p {
  color: var(--color-text-light);
  margin-bottom: 25px;
}

.post-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

@media (max-width: 768px) {
  .blog-sidebar {
    position: static;
  }
}

.blog-sidebar .widget {
  background: var(--color-beige);
  padding: 25px;
  border-radius: var(--radius-lg);
  margin-bottom: 25px;
}

.blog-sidebar .widget-title {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-gold);
}

.page-content {
  font-size: 17px;
  line-height: 2;
}

.page-content h2,
.page-content h3 {
  font-family: var(--font-serif);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-content p {
  margin-bottom: 20px;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-question:hover {
  background: rgba(200, 162, 74, 0.03);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px;
}

/* ==========================================
   FOOTER
   ========================================== */
.aura-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

.aura-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .aura-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .aura-footer-grid {
    grid-template-columns: 1fr;
  }
}

.aura-footer-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
}

.aura-footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.aura-social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all var(--transition-normal);
}

.aura-social-links a:hover {
  background: var(--color-gold);
  color: #fff;
  transform: translateY(-3px);
}

.aura-footer-heading {
  font-size: 18px;
  color: #fff;
  font-family: var(--font-serif);
  margin-bottom: 20px;
}

.aura-footer-menu li {
  margin-bottom: 10px;
}

.aura-footer-menu a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: all var(--transition-fast);
}

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

.aura-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.aura-contact-list svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.aura-contact-list a {
  color: rgba(255, 255, 255, 0.6);
}

.aura-contact-list a:hover {
  color: var(--color-gold);
}

.aura-footer-bottom {
  padding: 25px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.aura-footer-bottom p {
  margin-bottom: 5px;
}

.aura-footer-locations {
  color: var(--color-gold);
  font-weight: 500;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

/* Base fade-in (up) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Directional fade animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children animation (delays set by JS) */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Image reveal animation */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 1;
}

.img-reveal.revealed::after {
  transform: translateX(101%);
}

.img-reveal img {
  transform: scale(1.1);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}

.img-reveal.revealed img {
  transform: scale(1);
}

/* Button glow pulse */
.aura-btn-primary {
  position: relative;
  overflow: hidden;
}

.aura-btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s ease;
}

.aura-btn-primary::after {
  pointer-events: none;
}

.aura-btn-primary:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Gold shimmer for section titles */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.section-title.gold-shimmer {
  background: linear-gradient(90deg, var(--color-dark) 0%, var(--color-gold) 50%, var(--color-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

/* Keyframe animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 162, 74, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(200, 162, 74, 0); }
}

.aura-btn-primary.pulse {
  animation: pulseGlow 2s infinite;
}

/* Section transition effects */
.section-transition {
  position: relative;
}

.section-transition::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, var(--color-beige), transparent);
  opacity: 0.5;
}

/* Gallery archive item hover enhancement */
.gallery-archive-item {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Smooth number counter */
.count-up-num {
  display: inline-block;
}

/* Floating animation for decorative elements */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

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

.float-anim-2 {
  animation: floatDelayed 5s ease-in-out infinite 1s;
}

/* Page transition effect */
.page-enter {
  animation: fadeInUp 0.5s ease;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .aura-header-actions .aura-btn-whatsapp {
    display: none;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .process-arrow {
    justify-content: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {  
  .aura-nav {
    order: 3;
  }
  
  /* Off-canvas mobile menu */
  .aura-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    padding: 90px 20px 30px;
    gap: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: right 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    display: flex;
  }
  
  .aura-menu.active {
    right: 0;
  }
  
  /* Overlay when menu is open */
  .aura-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    cursor: pointer;
  }
  .aura-menu-overlay.active {
    display: block;
  }
  

  
  .aura-menu a {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .aura-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }
  
  .aura-menu li.submenu-open > .sub-menu {
    display: block;
  }
  
  .aura-menu-toggle {
    display: flex;
  }
  
  .aura-header-actions .aura-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  /* Hide desktop Request a Quote button on mobile (show only inside mobile menu) */
  .aura-desktop-only {
    display: none;
  }
  
  .aura-mobile-buttons {
    display: flex;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .hero-stat-num {
    font-size: 26px;
  }
  
  .hero-desc {
    font-size: 17px;
  }
  
  .about-experience {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }
  
  .aura-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .content-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .cta-section-final h2 {
    font-size: 32px !important;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .whychoose-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid-home {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 30px;
  }
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

/* About Why Choose cards - hover effects */
.about-why-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.about-why-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.about-why-card:hover > div:first-child {
  transform: scaleX(1) !important;
}

/* About stat items hover */
.about-stat-item {
  transition: transform 0.4s ease;
}

.about-stat-item:hover {
  transform: translateY(-5px);
}

/* About story & mission section responsive */
@media (max-width: 768px) {
  .about-story-split {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .about-story-split > div:first-child {
    order: 2;
  }
  .about-story-split > div:last-child {
    order: 1;
  }
}

@media (max-width: 768px) {
  .about-why-grid {
    grid-template-columns: 1fr !important;
  }
}

/* About mission section responsive */
@media (max-width: 768px) {
  div[style*="Our Mission"] > .container > div {
    grid-template-columns: 1fr !important;
  }
}

/* Stats banner responsive */
@media (max-width: 768px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  .about-mission-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .about-mission-grid > div:last-child {
    order: -1;
  }
}

/* ==========================================
   SERVICES PAGE (archive + single)
   ========================================== */
.services-archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .services-archive-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 50vh !important;
  }
  .service-hero h1 {
    font-size: 34px !important;
  }
  .service-hero p {
    font-size: 17px !important;
  }
  .content-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================
   SERVICE CARD ANIMATIONS (archive-services)
   ========================================== */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

/* Enhanced Service Card */
.service-card-enhanced:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12) !important;
  border-color: rgba(200, 162, 74, 0.2) !important;
}

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

.service-card-enhanced:hover a > div:last-child {
  opacity: 1 !important;
}

.service-card-enhanced h3 a:hover {
  color: var(--color-gold) !important;
}

/* ==========================================
   AURA LIGHTBOX
   ========================================== */
.aura-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.aura-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.aura-lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aura-lightbox-slide {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 85vh;
}

.aura-lightbox-slide img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.aura-lightbox-slide img.loaded {
  opacity: 1;
}

.aura-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
  line-height: 1;
}

.aura-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.aura-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.aura-lightbox-nav:hover {
  background: var(--color-gold);
  color: #fff;
}

.aura-lightbox-prev {
  left: 10px;
}

.aura-lightbox-next {
  right: 10px;
}

.aura-lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
}

.aura-lightbox-caption {
  padding: 15px 0 5px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  max-width: 600px;
}

@media (max-width: 768px) {
  .aura-lightbox-inner {
    margin: 0 15px;
  }
  .aura-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .aura-lightbox-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

.aura-gallery-item:hover .aura-gallery-overlay {
  opacity: 1 !important;
}

.gallery-count-badge {
  font-family: var(--font-sans);
}

/* ==========================================
   QUOTE MODAL
   ========================================== */
.aura-quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.aura-quote-modal.open {
  display: flex;
}

.aura-quote-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.aura-quote-modal-content {
  position: relative;
  width: 95%;
  max-width: 860px;
  max-height: 90vh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  animation: modalSlideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.aura-quote-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  border-radius: 50%;
  color: #333;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 100;
  line-height: 1;
}

.aura-quote-modal-close:hover {
  background: #C8A24A;
  color: #fff;
  transform: rotate(90deg);
}

.aura-quote-modal-body {
  padding: 40px 30px 30px;
  overflow-y: auto;
  max-height: 85vh;
}

.aura-quote-modal-body .aura-multistep {
  box-shadow: none;
  padding: 0;
}

.aura-quote-modal-body .aura-quote-form {
  max-width: 100% !important;
}

@media (max-width: 768px) {
  .aura-quote-modal-content {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
    max-width: 100%;
  }
  .aura-quote-modal-body {
    padding: 30px 15px 20px;
    max-height: 100vh;
  }
}

/* Mobile quote link inside off-canvas menu */
.aura-mobile-quote-li {
  display: none;
}

@media (max-width: 768px) {
  .aura-mobile-quote-li {
    display: block;
  }
  .aura-mobile-quote-li a.aura-mobile-quote-link-a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    margin: 15px 10px 10px;
    background: #C8A24A !important;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: none !important;
  }
  .aura-mobile-quote-li a.aura-mobile-quote-link-a:hover {
    background: #a8832e !important;
  }
}

/* ==========================================
   AURA NOTICES
   ========================================== */
.aura-notice {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  max-width: 500px;
  width: 90%;
}

/* ==========================================
   LIGHTBOX (Fancybox fallback)
   ========================================== */
.rounded-image {
  border-radius: var(--radius-lg);
}

/* ==========================================
   SEARCH FORM
   ========================================== */
.search-form {
  display: flex;
  gap: 10px;
}

.search-form input[type="search"] {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
}

.search-form button {
  padding: 12px 20px;
  background: var(--color-gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

/* ==========================================
   WORDPRESS CORE ALIGNMENT
   ========================================== */
.aligncenter {
  margin: 20px auto;
  display: block;
}

.wp-caption {
  max-width: 100%;
  margin: 20px 0;
}

.wp-caption-text {
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
  .aura-header,
  .aura-footer,
  .aura-mobile-buttons,
  .post-cta {
    display: none;
  }
}
