/* Main CSS file for Sri Laxmi Vedic Jyotish */

:root {
  /* Color variables */
  --primary-dark: #0a0a2a;
  --primary-darker: #050518;
  --primary-light: #1a1a4a;
  --accent-gold: #d4af37;
  --accent-gold-light: #f1d875;
  --accent-purple: #9b59b6;
  --text-light: #f8f8ff;
  --text-gold: #d4af37;
  
  /* Font variables */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', 'Noto Sans Devanagari', sans-serif;
}

/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-dark);
  color: var(--text-light);
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(10, 10, 60, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(10, 10, 60, 0.2) 0%, transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-gold);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: var(--accent-gold);
  transition: color 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: var(--primary-dark);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 0 10px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
  padding: 10px 30px;
  position: relative;
  background-color: rgba(5, 5, 24, 0.6);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-gold);
}

/* Cosmic background with stars - replaced by canvas animation */
.stars {
  display: none; /* Hidden as we're using the canvas-based animation instead */
}

/* Canvas styling for solar system */
#solar-system {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Navbar styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background-color: rgba(5, 5, 24, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background-color: rgba(5, 5, 24, 0.95);
  padding: 15px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

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

.language-toggle {
  display: flex;
  align-items: center;
  margin-left: 30px;
  cursor: pointer;
}

.language-toggle span {
  margin: 0 5px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.language-toggle span.active {
  opacity: 1;
  color: var(--accent-gold);
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
}

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

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  background-color: rgba(5, 5, 24, 0.5);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.5s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.7s;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-btns {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.9s;
}

.hero-btns .btn {
  margin: 0 10px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.planet {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
}

.planet-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 30% 30%, var(--accent-purple), var(--primary-darker));
  top: -150px;
  right: -150px;
  animation: float 15s infinite ease-in-out;
}

.planet-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 70% 70%, var(--accent-gold), var(--primary-darker));
  bottom: -100px;
  left: -100px;
  animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

/* Offers ticker */
.offers-ticker {
  background-color: var(--accent-gold);
  color: var(--primary-darker);
  padding: 10px 0;
  overflow: hidden;
}

.ticker-content {
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Services section */
.services {
  position: relative;
}

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

.service-card {
  background: linear-gradient(135deg, rgba(26, 26, 74, 0.8), rgba(10, 10, 42, 0.8));
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  color: var(--accent-gold);
  font-size: 2rem;
}

.service-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-desc {
  color: var(--text-light);
  opacity: 0.8;
}

/* About section */
.about {
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.2), transparent);
}

.about-text h3 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-certs {
  display: flex;
  margin-top: 30px;
}

.cert-badge {
  display: flex;
  align-items: center;
  margin-right: 20px;
  padding: 10px 15px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 5px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.cert-badge i {
  margin-right: 10px;
  color: var(--accent-gold);
}

/* Testimonials section */
.testimonials {
  position: relative;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 350px;
  background: linear-gradient(135deg, rgba(26, 26, 74, 0.8), rgba(10, 10, 42, 0.8));
  border-radius: 10px;
  padding: 30px;
  margin: 0 15px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-gold);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  margin-bottom: 5px;
}

.testimonial-stars {
  color: var(--accent-gold);
}

.testimonial-content {
  line-height: 1.6;
  font-style: italic;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background: rgba(212, 175, 55, 0.2);
}

/* Gallery section */
.gallery {
  position: relative;
}

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

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 24, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-zoom {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--primary-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
  transform: scale(1);
}

/* Location section */
.location {
  position: relative;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.location-map {
  border-radius: 10px;
  overflow: hidden;
  height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info {
  padding: 30px;
  background: linear-gradient(135deg, rgba(26, 26, 74, 0.7), rgba(10, 10, 42, 0.7));
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.location-info h3 {
  margin-bottom: 20px;
}

.location-address {
  margin-bottom: 20px;
  line-height: 1.6;
}

.location-contact {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 15px;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* Contact form */
.contact {
  position: relative;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(26, 26, 74, 0.7), rgba(10, 10, 42, 0.7));
  border-radius: 10px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 5px;
  color: var(--text-light);
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

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

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  background: #25D366;
}

.whatsapp-btn i {
  margin-right: 10px;
}

/* Booking section */
.booking {
  position: relative;
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.booking-form {
  background: linear-gradient(135deg, rgba(26, 26, 74, 0.7), rgba(10, 10, 42, 0.7));
  border-radius: 10px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.booking-calendar {
  background: linear-gradient(135deg, rgba(26, 26, 74, 0.7), rgba(10, 10, 42, 0.7));
  border-radius: 10px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-nav {
  display: flex;
}

.calendar-nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
  background: rgba(212, 175, 55, 0.2);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-day:hover {
  background: rgba(212, 175, 55, 0.1);
}

.calendar-day.active {
  background: var(--accent-gold);
  color: var(--primary-darker);
}

.calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.time-slots {
  margin-top: 30px;
}

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

.time-slot {
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot:hover {
  background: rgba(212, 175, 55, 0.2);
}

.time-slot.active {
  background: var(--accent-gold);
  color: var(--primary-darker);
}

.time-slot.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Blog section */
.blog {
  position: relative;
}

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

.blog-card {
  background: linear-gradient(135deg, rgba(26, 26, 74, 0.7), rgba(10, 10, 42, 0.7));
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.blog-img {
  height: 200px;
  overflow: hidden;
}

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

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

.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 0.9rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.blog-title {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.blog-excerpt {
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.8;
}

.blog-link {
  display: inline-block;
  color: var(--accent-gold);
  font-weight: 500;
  position: relative;
}

.blog-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.blog-link:hover::after {
  width: 100%;
}

/* Kundli samples section */
.kundli-samples {
  position: relative;
}

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

.sample-card {
  background: linear-gradient(135deg, rgba(26, 26, 74, 0.7), rgba(10, 10, 42, 0.7));
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.sample-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  color: var(--accent-gold);
  font-size: 2rem;
}

.sample-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.sample-desc {
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: var(--primary-darker);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-about p {
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--primary-darker);
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: all 0.3s ease;
}

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

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact-item i {
  margin-right: 15px;
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Login/Register modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(26, 26, 74, 0.9), rgba(10, 10, 42, 0.9));
  border-radius: 10px;
  padding: 40px;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(212, 175, 55, 0.2);
}

.modal-title {
  text-align: center;
  margin-bottom: 30px;
}

.modal-tabs {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-tab {
  flex: 1;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-tab.active {
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
}

.modal-body {
  margin-bottom: 20px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Responsive styles */
@media (max-width: 992px) {
  .navbar-container {
    padding: 0 20px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-darker);
    flex-direction: column;
    padding: 80px 20px 30px;
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 1000;
  }
  
  .about-content,
  .location-content,
  .booking-container {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    min-width: 280px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-btns .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  
  .service-card,
  .testimonial-card,
  .blog-card,
  .sample-card {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1s forwards;
}

.fade-in-up {
  animation: fadeInUp 1s forwards;
}

.fade-in-left {
  animation: fadeInLeft 1s forwards;
}

.fade-in-right {
  animation: fadeInRight 1s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@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);
  }
}

/* Performance optimization */
.low-performance {
  display: none;
}

/* Bilingual support */
[data-lang="en"] .hindi-content {
  display: none;
}

[data-lang="hi"] .english-content {
  display: none;
}
