/* ===== Base Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  
  /* Colors */
  --primary: #b22222;
  --primary-dark: #8a1a1a;
  --accent: #ffd700;
  --accent-dark: #e6c200;
  --light: #f9f9f9;
  --dark: #222222;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.7;
  background-color: var(--light);
  -webkit-font-smoothing: antialiased;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: var(--space-md) auto 0;
}

.text-center {
  text-align: center;
}

.bg-light {
  background-color: var(--light-gray);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2); /* Add this */
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-accent {
  background-color: var(--accent);
  color: var(--dark);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  color: var(--dark);
}

.btn-link {
  white-space: nowrap;
  overflow: hidden;
}

.btn-link:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #121C2B;
  padding: var(--space-sm) 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.navbar a:hover {
  color: #D4AF37;  /* Royal gold hover */
}


.navbar.scrolled {
  padding: var(--space-xs) 5%;
  box-shadow: var(--shadow-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-links li a {
  color: white;
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
}

/* ===== Hero Section ===== */
.hero {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url('./assets/images/hero/chennai-wedding-hero.jpeg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 var(--space-md);
  position: relative;
  margin-top: 80px; /* Account for fixed navbar */
}

/* Fallback if the image fails to load */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark); /* Fallback color */
  z-index: -1;
}

.rooms-hero {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url('./assets/images/hero/rooms-hero.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.rooms-hero .hero-content {
  position: relative; /* Brings content above the overlay */
  z-index: 1; /* Ensures content stays above the overlay */
  color: white; /* White text for contrast */
  text-align: center;
  padding: 2rem;
}

/* Your existing content styles */
.rooms-hero .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Better readability */
}

.rooms-hero .hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.rooms-hero .hero-buttons {
  margin-top: 2rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  margin-bottom: var(--space-lg);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-bottom: var(--space-xl);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: var(--transition);
  z-index: 10;
}

.scroll-down:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--accent);
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* ===== Features Section ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.feature-content {
  padding: var(--space-lg);
}

.feature-content h3 {
  color: var(--primary);
}

/* ===== About Content ===== */
.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.img-rounded {
  border-radius: 12px;
}

.feature-list {
  margin: var(--space-lg) 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.feature-item i {
  color: var(--accent);
}

/* ===== Testimonials ===== */
.testimonials-section {
  background-color: var(--light-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  position: absolute;
  top: -1rem;
  left: 1rem;
  opacity: 0.2;
  line-height: 1;
}

.rating {
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.client-info {
  margin-top: var(--space-md);
}

.client-info h4 {
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.client-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Gallery ===== */
/* Gallery Tabs */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.tab-btn {
  padding: 10px 20px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  color: var(--dark);
}

.tab-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Enhanced Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: white;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Lightbox Overrides */
.lb-data .lb-caption {
  font-size: 16px;
  line-height: 1.4;
}

.lb-nav a.lb-prev, 
.lb-nav a.lb-next {
  opacity: 1;
}

.lb-nav a.lb-prev:hover, 
.lb-nav a.lb-next:hover {
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-tabs {
      gap: 8px;
  }
  
  .tab-btn {
      padding: 8px 15px;
      font-size: 14px;
  }
  
  .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
  }
  
  .gallery-overlay h3 {
      font-size: 1rem;
  }
  
  .gallery-overlay p {
      font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-tabs {
      gap: 5px;
  }
  
  .tab-btn {
      padding: 6px 12px;
      font-size: 12px;
  }
  
  .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 10px;
  }
}

/* ===== Rooms Section ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.rooms-hero {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url('./assets/images/hero/rooms-hero.jpeg');
}

.room-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-10px);
}

.room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.room-content {
  padding: var(--space-lg);
}

.room-content h3 {
  color: var(--primary);
}

.room-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: var(--space-sm) 0;
}

.room-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}

.room-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.room-features li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.room-features li i {
  color: var(--accent);
}

/* ===== Packages Section ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.package-card {
  background: white;
  border-radius: 12px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 5px solid var(--accent);
  text-align: center;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.package-card h3 {
  color: var(--primary);
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: var(--space-md) 0;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
}

.package-features {
  list-style: none;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.package-features li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.package-features li i {
  color: var(--accent);
}

/* ===== Contact CTA ===== */
    .cta-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-top: 1px solid #e9ecef;
        border-bottom: 1px solid #e9ecef;
        text-align: center;
    }
    
    .contact-cta {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    .text-center {
        text-align: center;
    }
    
    .justify-center {
        justify-content: center;
    }
    
    .cta-buttons {
        display: flex;
        gap: 15px;
        margin: 25px 0;
        flex-wrap: wrap;
    }
    
    .btn-call {
        background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
        border: none;
    }
    
    .btn-whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        border: none;
    }
    
    .btn-call:hover {
        background: linear-gradient(135deg, #1e4761 0%, #3b3261 100%);
    }
    
    .btn-whatsapp:hover {
        background: linear-gradient(135deg, #1fa855 0%, #0e7a5e 100%);
    }
    
    .cta-alternate {
        color: #6c757d;
        font-size: 0.95rem;
        margin-top: 20px;
    }
    
    .cta-alternate a {
        color: #4e4376;
        font-weight: 600;
    }
    
    .cta-note {
        margin-top: 8px;
        font-size: 0.85rem;
        color: #6c757d;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    
    @media (max-width: 480px) {
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-call, 
        .btn-whatsapp {
            width: 100%;
            max-width: 280px;
        }
    }

/* ===== Footer ===== */
.footer {
  background-color: var(--dark);
  color: white;
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-col h3 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: var(--space-xs);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Newsletter Form Styles */
.newsletter-form {
  margin-top: 15px;
}

.newsletter-form .form-group {
  position: relative;
  margin-bottom: 10px;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: #f9f9f9;
}

.newsletter-form label {
  position: absolute;
  top: 12px;
  left: 15px;
  color: #999;
  transition: all 0.3s ease;
  pointer-events: none;
}

.newsletter-form input:focus + label,
.newsletter-form input:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  background: #fff;
  padding: 0 5px;
  color: var(--primary-color);
}

.newsletter-form button {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
}

.newsletter-message {
  font-size: 13px;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 4px;
  display: none;
}

.newsletter-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
}

.newsletter-message.error {
  display: block;
  background: #ffebee;
  color: #c62828;
}

.copyright {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.copyright a {
  color: var(--accent);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  .nav-links {
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: var(--space-sm);
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    transition: var(--transition);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .hamburger {
    display: block;
    color: white;
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons, .cta-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .btn {
    width: 100%;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-image {
    order: -1;
  }
}

@media (max-width: 576px) {
  .section {
    padding: var(--space-lg) 0;
  }
  
  .section-title::after {
    width: 50px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .hero {
    margin-top: 60px;
    min-height: 80vh;
  }
  
  .package-price {
    font-size: 1.5rem;
  }
}

/* Add this to your CSS file */
.nav-book-now {
  background-color: var(--accent);
  color: var(--dark);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-left: var(--space-md);
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}

.nav-book-now:hover {
  background-color: var(--accent-dark);
  color: var(--dark); /* Explicitly set text color on hover */
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.nav-book-now i {
  font-size: 1rem;
}

/* Add this to your responsive CSS */
@media (max-width: 992px) {
  .nav-book-now {
      margin-left: var(--space-sm);
  }
}

@media (max-width: 768px) {
  .nav-book-now {
      display: none; /* Hide on mobile - will be in hamburger menu */
  }
}

/* Offers Grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.offer-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.offer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--dark);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
}

.offer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.offer-content {
  padding: var(--space-lg);
}

.offer-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: var(--space-sm) 0;
}

.offer-features {
  list-style: none;
  margin: var(--space-md) 0;
}

.offer-features li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.offer-features li i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
