/* ============================================
   NATURE NEST EVENT VENUE - MAIN STYLES
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Colors */
  --color-primary: #1a2332;
  --color-secondary: #d4af37;
  --color-accent: #ffffff;
  --color-text: #333333;
  --color-light-gray: #f8f9fa;
  --color-dark-gray: #6c757d;
  --color-border: #dee2e6;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #f4ece1;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

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

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
}

.section {
  padding: var(--spacing-lg) 0;
}

.section-lg {
  padding: var(--spacing-xl) 0;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.flex-column {
  flex-direction: column;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(248, 249, 250, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-normal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

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

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #000000;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand-logo {
  position: relative;
}

.navbar-brand-logo img,
.navbar-brand img {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-brand-content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: center;
  color: #000000;
}

.navbar-brand-name {
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  color: #000000;
  font-weight: 700;
  line-height: 1.2;
}

.navbar-brand-address {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #000000;
  font-weight: 600;
}

.navbar-brand-phone {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #000000;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.navbar-brand-social {
  position: absolute;
  right: -75px;
  bottom: 5px;
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
}

.navbar-brand-social a {
  width: 28px;
  height: 28px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--color-primary);
  transition: var(--transition-normal);
}

.navbar-brand-social a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.nav-link {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-secondary);
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  margin: 3px 0;
  transition: var(--transition-normal);
  border-radius: 2px;
}

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-xl);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--color-accent);
    font-size: 1.2rem;
    padding: 1rem;
  }

  .nav-link.active {
    color: var(--color-secondary);
  }

  .nav-link:hover {
    color: var(--color-secondary);
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.btn-primary:hover {
  background: #c29d2e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn-secondary {
  background: var(--color-primary);
  color: var(--color-accent);
}

.btn-secondary:hover {
  background: #2a3342;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
/* Default hero style (for weddings, private events, etc.) */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 35, 50, 0.6), rgba(26, 35, 50, 0.7));
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero video styles (for all hero sections) */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Homepage hero style (video with content below) */
.hero-home {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: auto;
}

.hero-home .hero-video-container {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--color-primary);
}

.hero-home .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Wedding page hero style (video only) */
.hero-wedding {
  height: 60vh;
  min-height: 450px;
}

.hero-wedding .hero-video-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: var(--color-primary);
}

.hero-wedding .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-home .hero-content {
  background: transparent;
  color: var(--color-text);
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  animation: fadeInUp 1s ease;
}

.hero-home .hero-content h1 {
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-home .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text);
}

.hero-home .btn-outline,
.hero-intro .btn-outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.hero-home .btn-outline:hover,
.hero-intro .btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--color-accent);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

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

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.card-text {
  color: var(--color-dark-gray);
  margin-bottom: 1rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--color-primary);
}

/* ============================================
   EVENT TYPES SECTION
   ============================================ */
.event-card {
  text-align: center;
  padding: 2rem;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

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

.event-card i {
  font-size: 3rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.event-card h3 {
  margin-bottom: 0.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  background: var(--color-light-gray);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark-gray);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--color-dark-gray);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--color-secondary);
  transform: scale(1.2);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-accent);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 50, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

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

.gallery-item-overlay i {
  font-size: 3rem;
  color: var(--color-accent);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

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

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  color: var(--color-accent);
  cursor: pointer;
  z-index: 2001;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--color-accent);
  cursor: pointer;
  padding: 1rem;
  z-index: 2001;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}

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

.form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #dc3545;
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: none;
}

.form-success.show {
  display: block;
}

.form-message {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-message-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.form-message-error {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.form-message-info {
  background: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #dc3545;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #f4ece1;
  color: var(--color-text);
  padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

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

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(26, 35, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 35, 50, 0.1);
  color: rgba(51, 51, 51, 0.6);
}

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

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

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.bg-light {
  background: var(--color-light-gray);
}

.bg-dark {
  background: #f4eee1;
  color: var(--color-text);
}

.bg-dark .btn-outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.bg-dark .btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.hidden {
  display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .section {
    padding: 3rem 0;
  }

  .section-lg {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }

  .hero-home .hero-video-container {
    height: 50vh;
    min-height: 400px;
  }

  .hero-home .hero-content {
    padding: 3rem 1.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    padding: 0.5rem;
  }

  .lightbox-close {
    right: 20px;
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  :root {
    font-size: 14px;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 0;
  }
}

/* ============================================
   PACKAGES
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: var(--color-accent);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.package-featured {
  border: 3px solid var(--color-secondary);
  transform: scale(1.05);
}

.package-featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 1;
}

.package-header {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 2rem;
  text-align: center;
}

.package-header h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.package-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
}

.price-duration {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.package-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-description {
  font-size: 1rem;
  color: var(--color-dark-gray);
  margin-bottom: 1.5rem;
  text-align: center;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
}

.package-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features i {
  color: var(--color-secondary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.faq-item {
  background: var(--color-accent);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.faq-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.faq-item p {
  color: var(--color-dark-gray);
  margin: 0;
  line-height: 1.7;
}

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

  .package-featured {
    transform: scale(1);
  }

  .package-featured:hover {
    transform: translateY(-5px);
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
