  @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');
:root {
  --primary-gold: #d97706;
  --primary-gold-hover: #b45309;
  --gold-light: #fef3c7;
  --gold-accent: #fbbf24;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  --dark-navy: #0f172a;
  --card-dark: #1e293b;
  --light-bg: #faf8f5;
  --light-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --accent-red: #c2410c;
  --border-light: #e2e8f0;
  --border-gold: rgba(217, 119, 6, 0.3);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-gold: 0 10px 25px -5px rgba(217, 119, 6, 0.3);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Inter', sans-serif;
  direction: ltr;
  text-align: left;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.25;
}
.brand-font {
  font-family: 'Cinzel', serif;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Section Header Reusable */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}
.section-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--primary-gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 12px;
  border: 1px solid var(--border-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-title {
  font-size: 2.5rem;
  color: var(--dark-navy);
  margin-bottom: 15px;
}
.section-title span {
  color: var(--primary-gold);
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  outline: none;
}
.btn-primary {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(217, 119, 6, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--dark-navy);
  border: 2px solid var(--primary-gold);
}
.btn-outline:hover {
  background: var(--primary-gold);
  color: #ffffff;
  transform: translateY(-3px);
}
.btn-light {
  background: #ffffff;
  color: var(--dark-navy);
  box-shadow: var(--shadow-md);
}
.btn-light:hover {
  background: var(--gold-light);
  color: var(--primary-gold);
  transform: translateY(-3px);
}
/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-normal);
}
.header.scrolled {
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: var(--transition-normal);
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-accent);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}
/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.92) 100%), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(217, 119, 6, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 780px;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.4);
  backdrop-filter: blur(8px);
  color: var(--gold-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  font-weight: 400;
  max-width: 680px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 1.3rem;
}
.feature-text h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.feature-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}
/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--light-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-experience-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--dark-navy);
  color: #ffffff;
  padding: 25px 35px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  border: 2px solid var(--primary-gold);
  text-align: center;
}
.about-experience-card h3 {
  font-size: 2.8rem;
  color: var(--gold-accent);
  line-height: 1;
}
.about-experience-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}
.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.about-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}
/* Timeline Cards */
.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}
.timeline-item {
  display: flex;
  gap: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-gold);
  transition: var(--transition-normal);
}
.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}
.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary-gold);
  min-width: 60px;
}
.timeline-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.timeline-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Why Choose Us Grid */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}
.why-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 65px;
  height: 65px;
  background: var(--gold-light);
  color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px auto;
}
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
/* Menu Section */
.menu-section {
  padding: 100px 0;
  background: #ffffff;
}
.menu-search-wrapper {
  max-width: 500px;
  margin: 0 auto 30px auto;
  position: relative;
}
.menu-search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border: 2px solid var(--border-light);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-normal);
}
.menu-search-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.15);
}
.menu-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
.tab-btn {
  padding: 12px 26px;
  border-radius: 50px;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  color: var(--dark-navy);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-normal);
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.menu-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}
.menu-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}
.menu-card:hover .menu-card-img {
  transform: scale(1.08);
}
.menu-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-red);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.menu-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.menu-item-title {
  font-size: 1.2rem;
  color: var(--dark-navy);
}
.menu-item-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-gold);
}
.menu-item-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 15px;
}
.menu-rating {
  color: #f59e0b;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
/* Offers Section */
.offers-section {
  padding: 100px 0;
  background: var(--dark-navy);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.offers-section .section-title {
  color: #ffffff;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.offer-card {
  background: var(--card-dark);
  border-radius: var(--radius-md);
  padding: 35px 30px;
  border: 1px solid rgba(217, 119, 6, 0.3);
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}
.offer-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-accent);
  box-shadow: 0 15px 30px rgba(217, 119, 6, 0.25);
}
.offer-tag {
  background: var(--accent-red);
  color: #ffffff;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.offer-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.offer-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 25px;
}
.offer-timer {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}
.timer-unit {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  min-width: 60px;
}
.timer-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold-accent);
  display: block;
}
.timer-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background: var(--light-bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}
.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
  color: #ffffff;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay-icon {
  font-size: 2rem;
  color: var(--gold-accent);
  margin-bottom: 10px;
}
.gallery-overlay-title {
  font-size: 1.15rem;
  font-weight: 700;
}
/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active {
  display: flex;
}
.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
}
/* Customer Reviews */
.reviews-section {
  padding: 100px 0;
  background: #ffffff;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.review-card {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 15px;
}
.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.author-info h4 {
  font-size: 1.05rem;
  color: var(--dark-navy);
}
.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.add-review-box {
  background: var(--light-bg);
  padding: 35px;
  border-radius: var(--radius-md);
  max-width: 650px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
}
.add-review-box h3 {
  text-align: center;
  margin-bottom: 20px;
}
/* Reservation Section */
.reservation-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
  color: #ffffff;
}
.reservation-section .section-title {
  color: #ffffff;
}
.reservation-container {
  max-width: 850px;
  margin: 0 auto;
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(217, 119, 6, 0.3);
  padding: 45px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full-width {
  grid-column: span 2;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-normal);
}
.form-control:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--light-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  color: var(--primary-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.contact-card h4 {
  font-size: 1.1rem;
}
.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.map-container {
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #cbd5e1;
  position: relative;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  gap: 15px;
  text-align: center;
  padding: 20px;
}
/* Footer */
.footer {
  background: var(--dark-navy);
  color: #ffffff;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  font-size: 0.95rem;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transition: var(--transition-normal);
}
.social-icon:hover {
  background: var(--primary-gold);
  transform: translateY(-4px);
}
.footer-title {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-accent);
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--gold-accent);
  padding-left: 6px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}
.hours-list span:last-child {
  color: var(--gold-accent);
  font-weight: 700;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}
/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.active {
  display: flex;
}
.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes modalPop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.modal-icon {
  width: 80px;
  height: 80px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px auto;
}
.modal-title {
  font-size: 1.8rem;
  color: var(--dark-navy);
  margin-bottom: 10px;
}
.modal-ticket {
  background: var(--light-bg);
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 25px 0;
  text-align: left;
}
.modal-ticket p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
}
/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--dark-navy);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 50px;
  border-left: 4px solid var(--primary-gold);
  box-shadow: var(--shadow-lg);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .about-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-navy);
    flex-direction: column;
    padding: 100px 30px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.active {
    left: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title { font-size: 2.2rem; }
  .hero-features { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
