/* Valley The Kings - Egyptian Tourism Design System
   Inspired by ancient Egyptian aesthetics with modern touch
   Colors: Gold, Nile Blue, Sandy Beige, Rich Brown
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Core Egyptian-Inspired Palette */
  --primary-gold: #d4af37;
  --gold-light: #e8c547;
  --gold-dark: #b8941e;
  
  --nile-blue: #1e5a96;
  --nile-blue-light: #2e7db4;
  --nile-blue-dark: #0f3d62;
  
  --sand: #d4a574;
  --sand-light: #e8b898;
  --sand-dark: #c89560;
  
  --terracotta: #c85a3a;
  --pharaoh-brown: #5c4033;
  --papyrus: #f5f3f0;
  
  --dark-bg: #0f1419;
  --dark-card: #1a1f2e;
  
  /* Text colors */
  --text-dark: #2c2c2c;
  --text-light: #f5f5f5;
  --text-muted: #666;
  
  /* Neutral */
  --border: #e0d5c8;
  --border-light: #f0ebe4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--papyrus);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 15px;
}

h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 15px;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 243, 240, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 15px 0 !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark) !important;
  letter-spacing: 2px;
}

.navbar-brand span {
  color: var(--primary-gold);
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 15px;
  margin: 0 12px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--gold-light));
  transition: width 0.4s ease;
}

.nav-link:hover {
  color: var(--primary-gold) !important;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--pharaoh-brown) 0%, var(--dark-bg) 50%, #1a1a1a 100%);
  background-image: 
    linear-gradient(135deg, rgba(92, 64, 51, 0.75) 0%, rgba(15, 20, 25, 0.8) 50%, rgba(26, 26, 26, 0.85) 100%),
    url('https://images.unsplash.com/photo-1539768942893-daf53e448371?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  opacity: 0.5;
  animation: pulse 3s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 128px;
  right: 80px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  animation: fadeInUp 0.8s ease-out;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 24px;
  color: var(--primary-gold);
  font-size: 14px;
  font-weight: 500;
}

.hero-section h1 {
  color: var(--text-light);
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 42px;
  }
}

.hero-section h1 .gold-text {
  display: block;
  color: var(--primary-gold);
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section p {
  font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 30px;
    animation: fadeInUp 0.9s ease-out 0.1s backwards;
    letter-spacing: -1px;
    color: #95f0e1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 8px rgba(0, 0, 0, 0.8), 0 8px 16px rgba(0, 0, 0, 0.85), 0 12px 24px rgba(0, 0, 0, 0.8);
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 28rem;
  margin: 64px auto 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .hero-stat-number {
    font-size: 32px;
  }
}

.hero-stat-label {
  color: var(--sand);
  font-size: 14px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator .scroll-wheel {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px;
}

.hero-scroll-indicator .scroll-wheel::after {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(212, 175, 55, 0.7);
  border-radius: 2px;
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scrollDown {
  0%, 100% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* Featured Tours Section */
.featured-section {
  padding: 100px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.section-header .section-tag {
  color: var(--primary-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-header h2 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--gold-light));
  margin: 20px auto 0;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 20px auto 0;
}

/* Tour Cards Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }
}

.tour-card-featured {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
}

.tour-card-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-card-featured-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.tour-card-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card-featured:hover .tour-card-featured-image img {
  transform: scale(1.1);
}

.tour-card-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(92, 64, 51, 0.6), transparent);
}

.tour-card-featured-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 8px;
}

.tour-badge {
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.tour-badge-sale {
  background: var(--terracotta);
  color: white;
}

.tour-price-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 8px;
}

.tour-price-current {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-gold);
}

.tour-price-old {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 3px;
}

.tour-card-featured-content {
  padding: 25px;
}

.tour-card-featured-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.star {
  color: var(--primary-gold);
  font-size: 16px;
}

.tour-card-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.tour-card-featured-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.tour-card-featured-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-card-featured-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  min-height: 42px;
}

.tour-card-featured-btn {
  width: 100%;
  padding: 12px 16px;
  background: var(--primary-gold);
  color: var(--text-dark);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tour-card-featured-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Destinations Section */
.destinations-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--papyrus) 0%, #f9f7f4 100%);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  group-relation: group;
  transition: all 0.3s ease;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(92, 64, 51, 0.8), rgba(92, 64, 51, 0.4), transparent);
  transition: opacity 0.3s ease;
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: var(--text-light);
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-content {
  transform: translateY(0);
}

.destination-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.destination-desc {
  font-size: 12px;
  color: var(--sand);
  margin-bottom: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.destination-card:hover .destination-desc {
  opacity: 1;
}

.destination-tours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--primary-gold);
  font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--pharaoh-brown) 0%, var(--text-dark) 100%);
  color: var(--text-light);
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 40px;
}

.testimonial-quote-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 25px;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.testimonial-meta {
  color: var(--sand);
  font-size: 14px;
  margin-bottom: 3px;
}

.testimonial-tour {
  color: var(--primary-gold);
  font-size: 13px;
  font-weight: 600;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-nav-btn {
  background: var(--primary-gold);
  color: var(--text-dark);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  transform: scale(1.1);
  background: var(--gold-light);
}

/* Reviews Section */
.reviews-section {
  padding: 100px 0;
  background: white;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.review-item {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.review-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--gold-light));
}

.review-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-gold);
}

.review-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
  color: var(--primary-gold);
  font-size: 14px;
}

.review-stars i {
  color: var(--primary-gold);
}

.review-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.review-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 3px;
}

.review-location {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.review-date {
  color: var(--primary-gold);
  font-size: 12px;
  font-weight: 500;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reviews-cta .btn {
  padding: 12px 35px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.reviews-cta .btn-primary {
  background: var(--primary-gold);
  color: var(--text-dark);
}

.reviews-cta .btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.reviews-cta .btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.reviews-cta .btn-outline:hover {
  background: var(--text-dark);
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .review-item {
    padding: 20px;
  }

  .review-title {
    font-size: 18px;
  }

  .reviews-section {
    padding: 60px 0;
  }
}

/* Enhanced Footer */
footer {
  background: linear-gradient(135deg, var(--pharaoh-brown) 0%, var(--text-dark) 100%);
  color: var(--papyrus);
  padding-top: 0 !important;
}

.footer-newsletter {
  background: linear-gradient(135deg, rgba(30, 90, 150, 0.4) 0%, rgba(212, 175, 55, 0.25) 100%),
              repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.05) 2px, rgba(212, 175, 55, 0.05) 4px);
  border-bottom: 3px solid var(--primary-gold);
  padding: 80px 0;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,200 L0,200 Z" fill="rgba(212,175,55,0.08)"/></svg>') repeat-x;
  background-size: 400px 100px;
  pointer-events: none;
}

.footer-newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.footer-newsletter-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
  margin: 15px auto 0;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 550px;
  margin: 30px auto 0;
  align-items: center;
}

@media (max-width: 640px) {
  .footer-newsletter-form {
    flex-direction: column;
    gap: 12px;
  }
}

.footer-newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.footer-newsletter-input::placeholder {
  color: rgba(212, 175, 55, 0.6);
}

.footer-newsletter > div > p {
  position: relative;
  z-index: 1;
}

.footer-newsletter-btn {
  padding: 16px 50px;
  background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.footer-newsletter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.footer-newsletter-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.footer-newsletter-btn:hover::before {
  left: 100%;
}

.footer-main {
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.99) 0%, rgba(5, 8, 12, 1) 50%, rgba(0, 0, 0, 1) 100%),
              radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.1), transparent 70%);
  padding: 100px 0 50px;
  border-top: 3px solid rgba(212, 175, 55, 0.5);
  position: relative;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.footer-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 80"><defs><pattern id="pattern" x="0" y="0" width="100" height="40" patternUnits="userSpaceOnUse"><polygon points="50,0 100,20 50,40 0,20" fill="rgba(212,175,55,0.03)"/></pattern></defs><rect width="1200" height="80" fill="url(%23pattern)"/></svg>');
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section {
  animation: fadeInUp 0.6s ease-out;
}

.footer-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  padding-bottom: 20px;
}

.footer-section h4::before {
  content: '◆';
  margin-right: 12px;
  color: var(--gold-light);
  font-size: 18px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--gold-light));
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.footer-section > p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 243, 240, 0.85);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(245, 243, 240, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding-left: 25px;
  font-weight: 500;
}

.footer-links a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 18px;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 35px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: rgba(245, 243, 240, 0.85);
  font-size: 16px;
  line-height: 1.7;
  transition: all 0.4s ease;
  padding: 12px;
  border-radius: 8px;
  position: relative;
}

.footer-contact-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-gold);
  padding-left: 20px;
  border-left: 3px solid var(--primary-gold);
}

.footer-contact-item span {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  transition: all 0.4s ease;
}

.footer-contact-item:hover span {
  background: var(--primary-gold);
  transform: scale(1.2) rotate(10deg);
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.05));
  border: 2px solid var(--primary-gold);
  border-radius: 10px;
  color: var(--primary-gold);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 800;
  font-size: 22px;
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gold);
  transition: left 0.4s ease;
  z-index: -1;
}

.footer-social a:hover {
  color: var(--text-dark);
  transform: translateY(-10px) scale(1.15) rotate(-5deg);
  border-color: var(--gold-light);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6), inset 0 0 20px rgba(212, 175, 55, 0.3);
}

.footer-social a:hover::before {
  left: 0;
}

.footer-divider {
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  padding: 40px 0 0;
  margin-top: 50px;
  text-align: center;
  position: relative;
}

.footer-divider::before {
  content: '◆';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-gold);
  font-size: 24px;
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.99) 0%, rgba(5, 8, 12, 1) 50%, rgba(0, 0, 0, 1) 100%);
  padding: 0 15px;
}

.footer-divider p {
  color: rgba(212, 175, 55, 0.8);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  transition: all 0.3s ease;
}

.footer-divider p:hover {
  color: var(--primary-gold);
}

/* Buttons */
.btn-primary {
  background: var(--primary-gold);
  color: var(--text-dark);
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--primary-gold);
  color: var(--text-dark);
}

/* Cards */
.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-body {
  padding: 20px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Section Titles */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--gold-light));
  margin: 15px auto 0;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: var(--papyrus);
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h5 {
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-size: 16px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 12px;
}

footer ul li a {
  color: var(--papyrus);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

footer ul li a:hover {
  color: var(--primary-gold);
}

footer .divider {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 30px;
  padding-top: 20px;
}

footer p {
  color: var(--papyrus);
  font-size: 14px;
  text-align: center;
  margin: 0;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--nile-blue) 0%, var(--nile-blue-dark) 100%);
  color: var(--text-light);
  padding: 80px 0;
  margin: 80px 0;
}

.stat-box {
  text-align: center;
  margin-bottom: 40px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .navbar-brand {
    font-size: 22px;
  }

  .nav-link {
    font-size: 14px;
    margin: 0 8px;
  }
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.5s ease-out;
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slide-in-right 0.5s ease-out;
}
