/* css/style.css - ULTRA LUXURY VERSION WITH AMAZING ANIMATIONS */
:root {
  --primary: #0A0A0A;
  --secondary: #111111;
  --accent: #D4AF37;
  --accent-light: #E5C25D;
  --accent-dark: #B8960F;
  --text-light: #FFFFFF;
  --text-dim: #CCCCCC;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(212, 175, 55, 0.2);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Luxury Cursor */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.6s, width 0.3s, height 0.3s;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 1s, visibility 1s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 10px;
  color: var(--accent);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.preloader-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: slide 1.5s infinite;
}

@keyframes slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 1rem 0;
  z-index: 1000;
  transition: all 0.3s;
}

.site-header.scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 10, 10, 0.95);
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  font-size: 2rem;
}

.logo-gold {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-light {
  color: var(--text-light);
  font-weight: 300;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--accent);
  position: absolute;
  transition: all 0.3s;
}

.hamburger span:first-child { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:last-child { top: 18px; }

.hamburger.active span:first-child {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:last-child {
  transform: rotate(-45deg);
  top: 9px;
}

/* Navigation */
.nav-menu ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.3s;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: transparent;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--accent);
  border-radius: 50px;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.animate-text-reveal {
  overflow: hidden;
}

.animate-text-reveal span {
  display: block;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  transform: translateY(100%);
  animation: revealText 1s forwards;
}

.animate-text-reveal span:nth-child(1) { animation-delay: 0.2s; }
.animate-text-reveal span:nth-child(2) { animation-delay: 0.4s; }
.animate-text-reveal span:nth-child(3) { animation-delay: 0.6s; }

@keyframes revealText {
  to { transform: translateY(0); }
}

.hero p {
  font-size: 1.3rem;
  margin: 2rem 0;
  color: var(--text-dim);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn-gold {
  background: var(--accent);
  color: var(--primary);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gold:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-3px);
}

.btn-outline-gold {
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-glow {
  animation: glow 2s infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
}

.hero-stats {
  display: flex;
  gap: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  letter-spacing: 2px;
  z-index: 2;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--accent), transparent);
  margin: 10px auto 0;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Services Section */
.services-section {
  padding: 8rem 0;
  background: var(--primary);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  display: inline-block;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.section-description {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

/* 3D Card Effect */
.service-card-3d {
  perspective: 1500px;
  height: 400px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}

.service-card-3d:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
}

.card-front {
  background: var(--secondary);
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  text-align: center;
  z-index: 2;
}

.card-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.card-front h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-front p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card-price {
  display: inline-block;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 50px;
}

.card-back {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--primary);
  transform: rotateY(180deg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.card-back h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.card-back ul {
  list-style: none;
  margin-bottom: 2rem;
}

.card-back li {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-back i {
  color: var(--primary);
}

.card-back-btn {
  background: var(--primary);
  color: var(--accent);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--primary);
}

.card-back-btn:hover {
  background: transparent;
  color: var(--primary);
}

/* Package Showcase */
.package-showcase {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(10px) brightness(0.3);
  animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.showcase-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 4rem;
}

.showcase-subtitle {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.showcase-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.showcase-text {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

.package-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.package-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s;
}

.package-card:hover::before {
  left: 100%;
}

.package-card:hover {
  transform: translateY(-20px) scale(1.05);
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--accent);
  color: var(--primary);
  padding: 0.5rem 3rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.package-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.package-price {
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 2rem;
}

.package-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.package-card li {
  margin: 1rem 0;
  color: var(--text-dim);
}

.package-card i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.package-btn {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  padding: 1rem 2rem;
  border: 2px solid var(--accent);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.package-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Why Choose Us */
.why-choose {
  padding: 8rem 0;
  background: var(--secondary);
}

.features-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-grid-2 {
  display: grid;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.feature-item:hover {
  border-color: var(--accent);
  transform: translateX(10px);
  background: rgba(212, 175, 55, 0.05);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  transition: all 0.3s;
}

.feature-item:hover .feature-icon-wrapper {
  transform: rotate(360deg);
  background: var(--accent);
  color: var(--primary);
}

.feature-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-dim);
  line-height: 1.6;
}

.feature-gallery {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-radius: 30px;
  overflow: hidden;
}

.gallery-item {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::before {
  opacity: 0.3;
}

.gallery-item:hover {
  transform: scale(1.1);
  z-index: 2;
}

/* Areas Section */
.areas-section {
  padding: 8rem 0;
  background: var(--primary);
}

.areas-map {
  position: relative;
  height: 500px;
  background: url('https://images.unsplash.com/photo-1578894381163-e72c617f2d45?q=80&w=2070&auto=format&fit=crop') center/cover;
  border-radius: 30px;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.areas-grid-modern {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.area-pin {
  position: absolute;
  background: var(--accent);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s;
  animation: pinPulse 2s infinite;
}

.area-pin:hover {
  transform: translate(-50%, -50%) scale(1.2);
  background: var(--primary);
  color: var(--accent);
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}

/* Testimonials Grid - Updated for 6 items */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Update dots for more items */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dots .dot:hover {
  background: rgba(212, 175, 55, 0.5);
  transform: scale(1.2);
}

.testimonial-dots .dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 10px;
}

/* Keep existing testimonial-card styles */
.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 8rem;
  color: rgba(212, 175, 55, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.testimonial-rating {
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 1.2rem;
}

.testimonial-quote {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  flex: 1;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 1.5rem;
  margin-top: auto;
}

.author-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--accent);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-light);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.author-info span::before {
  content: '📍';
  font-size: 0.8rem;
  opacity: 0.8;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-nav button:hover {
  background: var(--accent);
  color: var(--primary);
}

/* CTA Section */
.cta-luxury {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=2070&auto=format&fit=crop') center/cover;
  filter: blur(5px) brightness(0.3);
  animation: slowZoom 20s infinite alternate;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.cta-content h2 span {
  color: var(--accent);
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

/* Footer */
.site-footer-modern {
  background: var(--primary);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--accent);
  font-weight: 300;
}

.footer-brand p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-5px);
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin: 1rem 0;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 10px;
}

.footer-contact p {
  margin: 1rem 0;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-contact i {
  color: var(--accent);
  width: 20px;
}

.footer-contact a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 99;
  transition: all 0.3s;
}

.float-wa.pulse {
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.float-wa:hover {
  transform: scale(1.1) rotate(360deg);
  background: #20b859;
}

/* Chatbot Widget (YOUR PERFECT CHATBOT STYLES) */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 400px;
  background: rgba(20,20,20,0.98);
  backdrop-filter: blur(16px);
  border: 2px solid var(--accent);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.8), 0 0 0 1px rgba(212,175,55,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.chat-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid var(--accent);
  font-size: 1.2rem;
  font-weight: 500;
}

.chat-header i {
  font-size: 1.3rem;
}

.chat-body {
  transition: max-height 0.4s ease-in-out;
  max-height: 550px;
  overflow: hidden;
}

.chat-body.collapsed { 
  max-height: 0; 
}

.chat-messages {
  height: 380px;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.message {
  padding: 1rem 1.3rem;
  border-radius: 22px;
  max-width: 85%;
  word-wrap: break-word;
  font-size: 1rem;
  line-height: 1.5;
  animation: messagePop 0.3s ease;
}

@keyframes messagePop {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.message.bot {
  background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
  border-bottom-left-radius: 8px;
  align-self: flex-start;
  border-left: 3px solid var(--accent);
}

.message.user {
  background: linear-gradient(135deg, var(--accent) 0%, #c9a227 100%);
  color: #000;
  align-self: flex-end;
  border-bottom-right-radius: 8px;
  font-weight: 500;
}

.price-highlight {
  color: var(--accent);
  font-weight: 700;
}

.company-name {
  color: var(--accent);
  font-weight: 600;
}

.chat-input-area {
  display: flex;
  padding: 1.2rem;
  border-top: 2px solid #444;
  background: rgba(0,0,0,0.3);
  gap: 10px;
}

#chatInput {
  flex: 1;
  background: #2a2a2a;
  border: 2px solid #444;
  padding: 1rem 1.3rem;
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s;
}

#chatInput:focus {
  outline: none;
  border-color: var(--accent);
  background: #333;
}

#chatSend {
  background: var(--accent);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: black;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#chatSend:hover {
  background: #b8960f;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(212,175,55,0.5);
}

/* Animation Classes */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeRight 1s forwards;
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-zoom {
  opacity: 0;
  transform: scale(0.8);
  animation: zoom 1s forwards;
}

@keyframes zoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideRight 0.8s forwards;
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-flip {
  opacity: 0;
  transform: rotateY(90deg);
  animation: flip 0.8s forwards;
}

@keyframes flip {
  to {
    opacity: 1;
    transform: rotateY(0);
  }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Responsive Design */
@media (max-width: 1200px) {
  .features-showcase {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    transition: left 0.3s;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .testimonial-card-modern {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .chatbot-widget {
    width: 340px;
  }
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .package-slider {
    grid-template-columns: 1fr;
  }
  
  .chatbot-widget {
    width: 300px;
    right: 5px;
    bottom: 5px;
  }
}
/* Areas Section Updated Styles */
.areas-section {
  padding: 6rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.areas-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.section-description {
  color: var(--text-dim);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

.areas-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  margin: 3rem 0;
}

/* Areas List Styling */
.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.area-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s;
}

.area-item:hover::before {
  left: 100%;
}

.area-item:hover {
  border-color: var(--accent);
  transform: translateX(8px) translateY(-2px);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.area-item i {
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.area-item:hover i {
  transform: scale(1.2) rotate(360deg);
}

.area-item span {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Update these map styles in your style.css */

/* Map Container */
.areas-map {
  height: 450px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: #ffffff; /* White fallback */
}

/* Leaflet Map Customization for White Theme */
.leaflet-container {
  font-family: 'Inter', sans-serif !important;
  background: #f5f5f5 !important; /* Light background */
}

/* Popup Styling for White Theme */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  background: white !important;
}

.leaflet-popup-tip {
  background: white !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.leaflet-popup-content {
  margin: 15px 18px !important;
  line-height: 1.5 !important;
  color: #333 !important;
}

/* Control buttons styling for white theme */
.leaflet-control-zoom a {
  background: white !important;
  color: #333 !important;
  border: 1px solid #ddd !important;
}

.leaflet-control-zoom a:hover {
  background: #f5f5f5 !important;
  color: #D4AF37 !important;
}

/* Attribution styling */
.leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #666 !important;
  font-size: 10px !important;
  border-radius: 5px 0 0 0 !important;
  padding: 3px 8px !important;
}

.leaflet-control-attribution a {
  color: #D4AF37 !important;
}

/* Custom Marker for white theme */
.custom-marker {
  background: transparent !important;
  border: none !important;
}

.custom-marker i {
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Scale control for white theme */
.leaflet-control-scale-line {
  background: rgba(255, 255, 255, 0.8) !important;
  border-color: #ddd !important;
  color: #333 !important;
}
/* Areas Stats */
.areas-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.8rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50px;
  transition: all 0.3s;
}

.stat-badge:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.stat-badge i {
  color: var(--accent);
  font-size: 1.2rem;
}

.stat-badge span {
  color: var(--text-light);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .areas-container {
    grid-template-columns: 1fr;
  }
  
  .areas-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .areas-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }
  
  .areas-map {
    height: 350px;
  }
  
  .areas-stats {
    gap: 1rem;
  }
  
  .stat-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 500px) {
  .areas-list {
    grid-template-columns: 1fr;
  }
  
  .area-item {
    padding: 0.8rem 1rem;
  }
  
  .areas-map {
    height: 300px;
  }
  
  .stat-badge {
    width: 100%;
    justify-content: center;
  }
}
/* WhatsApp Professional Block - ULTRA SMALL VERSION */
.whatsapp-block {
  padding: 0.5rem 0; /* Minimal padding */
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(20,20,20,0.98) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.whatsapp-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px; /* Even smaller radius */
  padding: 0.6rem 1.2rem; /* Drastically reduced */
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.whatsapp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% { left: 100%; }
}

.whatsapp-icon {
  width: 32px; /* Greatly reduced from 45px */
  height: 32px; /* Greatly reduced from 45px */
  background: linear-gradient(135deg, #25d366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem; /* Reduced from 1.6rem */
  color: white;
  box-shadow: 0 3px 6px rgba(37, 211, 102, 0.2);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 3px 6px rgba(37, 211, 102, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 5px 10px rgba(37, 211, 102, 0.3); }
}

.whatsapp-content {
  flex: 1;
  padding: 0 0.5rem; /* Minimal padding */
  position: relative;
  z-index: 2;
}

.whatsapp-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.55rem; /* Tiny label */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
  font-weight: 500;
  line-height: 1;
}

.whatsapp-number {
  font-size: 1rem; /* Normal paragraph size */
  font-weight: 600;
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.whatsapp-number a {
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.whatsapp-number a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.whatsapp-text {
  color: var(--text-dim);
  font-size: 0.6rem; /* Tiny text */
  display: flex;
  align-items: center;
  gap: 0.2rem;
  line-height: 1;
}

.whatsapp-text i {
  color: var(--accent);
  font-size: 0.6rem;
}

.whatsapp-action {
  position: relative;
  z-index: 2;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem; /* Very small button */
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.65rem; /* Tiny font */
  transition: all 0.3s;
  border: 1px solid transparent;
  box-shadow: 0 3px 6px rgba(37, 211, 102, 0.15);
  white-space: nowrap;
}

.whatsapp-btn:hover {
  background: transparent;
  border-color: #25d366;
  color: #25d366;
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn i {
  transition: transform 0.3s;
  font-size: 0.6rem;
}

.whatsapp-btn:hover i {
  transform: translateX(2px);
}

/* Align with navigation bar */
.whatsapp-block .container {
  max-width: 1200px;
  padding: 0 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .whatsapp-card {
    flex-direction: column;
    text-align: center;
    padding: 0.5rem;
  }
  
  .whatsapp-content {
    padding: 0.3rem 0;
  }
  
  .whatsapp-number {
    font-size: 0.9rem;
  }
  
  .whatsapp-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .whatsapp-card {
    padding: 0.4rem;
  }
  
  .whatsapp-number {
    font-size: 0.85rem;
  }
  
  .whatsapp-btn {
    padding: 0.2rem 0.6rem;
    font-size: 0.6rem;
  }
  
  .whatsapp-icon {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }
  
  .whatsapp-label {
    font-size: 0.5rem;
  }
  
  .whatsapp-text {
    font-size: 0.55rem;
  }
}
/* Add this to your style.css file to fix service card backgrounds */

/* Service Cards - Fix Background to Black */
.service-card-3d {
  perspective: 1500px;
  height: 400px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}

.service-card-3d:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
}

/* FIX: Make front card background black */
.card-front {
  background: #0A0A0A; /* Pure black background */
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.7; /* Slightly dim the image */
  transition: transform 0.5s;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  text-align: center;
  z-index: 2;
}

.card-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.card-front h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.card-front p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card-price {
  display: inline-block;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

/* FIX: Make back card black/dark gradient */
.card-back {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  border: 2px solid var(--accent);
  color: var(--text-light);
  transform: rotateY(180deg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.card-back h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.card-back ul {
  list-style: none;
  margin-bottom: 2rem;
}

.card-back li {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.card-back i {
  color: var(--accent);
}

.card-back-btn {
  background: var(--accent);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--accent);
}

.card-back-btn:hover {
  background: transparent;
  color: var(--accent);
}
/* ===== AUTO-ARRANGE FOR MOBILE ===== */
/* This will automatically make everything fit perfectly on phones */

@media screen and (max-width: 768px) {
  /* Auto arrange header */
  .header-flex {
    flex-wrap: wrap;
  }
  
  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 0;
  }
  
  .nav-menu li {
    width: 100%;
    margin: 10px 0;
  }
  
  /* Auto arrange hero section */
  .hero-content {
    text-align: center;
    padding: 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons a {
    width: 100%;
    margin: 5px 0;
    text-align: center;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
  
  /* Auto arrange services - makes 1 column */
  .services-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Auto arrange packages - makes 1 column */
  .packages-grid {
    grid-template-columns: 1fr !important;
  }
  
  .package-slider {
    grid-template-columns: 1fr !important;
  }
  
  /* Auto arrange features */
  .features-showcase {
    grid-template-columns: 1fr !important;
  }
  
  .features-grid-2 {
    grid-template-columns: 1fr !important;
  }
  
  .features-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Auto arrange gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  
  /* Auto arrange areas */
  .areas-container {
    grid-template-columns: 1fr !important;
  }
  
  .areas-list {
    grid-template-columns: 1fr 1fr !important;
  }
  
  /* Auto arrange testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
  
  .testimonial-card {
    width: 100%;
    margin: 10px 0;
  }
  
  /* Auto arrange footer */
  .footer-top {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  /* Auto arrange contact form */
  .contact-container {
    grid-template-columns: 1fr !important;
  }
  
  .form-row {
    grid-template-columns: 1fr !important;
  }
  
  /* Auto arrange WhatsApp block */
  .whatsapp-card {
    flex-direction: column;
    text-align: center;
  }
  
  .whatsapp-content {
    text-align: center;
  }
  
  /* Auto arrange chatbot */
  .chatbot-widget {
    width: 300px;
    right: 10px;
  }
  
  /* Hide cursor on mobile */
  .cursor, .cursor-follower {
    display: none;
  }
  
  /* Auto adjust font sizes */
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.5rem !important; }
  h3 { font-size: 1.2rem !important; }
  p { font-size: 0.9rem !important; }
}

/* For very small phones */
@media screen and (max-width: 480px) {
  .areas-list {
    grid-template-columns: 1fr !important;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
  
  .logo-wrapper {
    font-size: 1.2rem;
  }
  
  .chatbot-widget {
    width: 280px;
  }
}
/* Add to your style.css */

/* Booking Confirmation Styling */
.message.bot .booking-confirmation {
    font-family: 'Inter', monospace;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-left: 4px solid #D4AF37;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
}

.message.bot .booking-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px dashed #444;
}

.message.bot .booking-detail:last-child {
    border-bottom: none;
}

.message.bot .detail-label {
    color: #D4AF37;
    font-weight: 500;
}

.message.bot .detail-value {
    color: white;
    font-weight: 400;
}

.message.bot .booking-reference {
    background: #D4AF37;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1rem;
}

.message.bot .booking-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.message.bot .action-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.message.bot .whatsapp-btn {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.message.bot .whatsapp-btn:hover {
    background: transparent;
    color: #25d366;
}

.message.bot .call-btn {
    background: #D4AF37;
    color: #000;
    border: 2px solid #D4AF37;
}

.message.bot .call-btn:hover {
    background: transparent;
    color: #D4AF37;
}

/* Availability Warning */
.message.bot .availability-warning {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}

.message.bot .warning-title {
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.message.bot .warning-title i {
    font-size: 1.2rem;
}

.message.bot .available-slot {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid #25d366;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    display: inline-block;
}
/* ========== BOOKING SYSTEM ADDITIONS ========== */
/* Do not remove - required for booking.html */

/* Summary details */
.summary-detail {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-light);
}

.peak-badge {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 10px;
    margin-left: 5px;
}

.past-badge {
    background: #6b7280;
    color: white;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 10px;
    margin-left: 5px;
}

.time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.time-slot.disabled:hover {
    transform: none;
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

/* Flatpickr overrides */
.flatpickr-day.disabled {
    color: #6b7280 !important;
    text-decoration: line-through;
}

/* Loyalty section enhancements */
.loyalty-note {
    font-size: 0.8rem;
    color: var(--accent);
}

/* Payment method logos */
.tabby-logo, .tamara-logo {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Success animation */
@keyframes bookingSuccess {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.booking-success {
    animation: bookingSuccess 0.5s ease;
}