/* ==========================================================================
   WINGOLF TRAVEL - LUXURY LEISURE & GOLF REDESIGN
   ========================================================================== */

:root {
  --primary-emerald: #0D3B2E;
  --emerald-accent: #1B5E4B;
  --emerald-light: #2A7E67;
  --gold: #C5A059;
  --gold-hover: #B08B44;
  --gold-light: #F4EBD9;
  --dark: #111614;
  --dark-surface: #18221E;
  --gray-100: #F7F9F8;
  --gray-200: #EAEFEA;
  --gray-600: #66706B;
  --gray-800: #2C3531;
  --white: #FFFFFF;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

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

/* Typography Hierarchy */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--primary-emerald);
  line-height: 1.2;
}

.section-header {
  margin-bottom: 48px;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-tag.gold-tag {
  color: var(--gold);
  background: rgba(197, 160, 89, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 680px;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

.white-text {
  color: var(--white) !important;
}

.light-gray {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* ==========================================================================
   Top Announcement Bar & Header
   ========================================================================== */

.top-bar {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.contact-quick {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar i {
  color: var(--gold);
  margin-right: 6px;
}

.divider {
  color: rgba(255, 255, 255, 0.2);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Main Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
  padding: 16px 0;
}

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-emerald), var(--emerald-accent));
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-emerald);
  display: block;
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-emerald);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
}

.highlight-link {
  color: var(--gold);
  font-weight: 700;
}

.nav-btn {
  background: var(--primary-emerald);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 30px;
}

.nav-btn:hover {
  background: var(--emerald-accent);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-emerald);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 100px 0 80px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 59, 46, 0.85) 0%, rgba(17, 22, 20, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-weight: 300;
}

/* Relocated Filter Bar (Floating overlap design for unobscured Hero image) */
.filter-bar-wrapper {
  position: relative;
  z-index: 20;
  margin-top: -45px; /* Subtle negative margin to overlap beautifully between Hero & Destinations */
  margin-bottom: 40px;
}

.search-filter-card {
  background: var(--white);
  color: var(--gray-800);
  padding: 22px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 20px;
  align-items: center;
  text-align: left;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-emerald);
  letter-spacing: 0.5px;
}

.filter-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gray-800);
  background-color: var(--gray-100);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.filter-group select:focus {
  border-color: var(--primary-emerald);
  background-color: var(--white);
}

.btn-search {
  background: var(--primary-emerald);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  height: 100%;
}

.btn-search:hover {
  background: var(--gold);
  color: var(--dark);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Destinations Section
   ========================================================================== */

.destinations-section {
  padding: 100px 0;
  background-color: var(--gray-100);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

.destination-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.card-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.destination-card:hover .card-img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(13, 59, 46, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-location {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-emerald);
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  margin-bottom: 20px;
}

.btn-card-action {
  width: 100%;
  background: var(--gray-100);
  color: var(--primary-emerald);
  border: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-card-action:hover {
  background: var(--primary-emerald);
  color: var(--white);
}

/* ==========================================================================
   Packages Section (Tabs)
   ========================================================================== */

.packages-section {
  padding: 100px 0;
  background-color: var(--white);
}

.package-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  padding: 14px 24px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary-emerald);
  color: var(--white);
  border-color: var(--primary-emerald);
  box-shadow: var(--shadow-md);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.package-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.package-card.featured {
  background: var(--white);
  border: 2px solid var(--primary-emerald);
  box-shadow: var(--shadow-md);
}

.package-card.featured-gold {
  background: var(--dark-surface);
  border: 2px solid var(--gold);
  color: var(--white);
}

.pkg-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-emerald);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
}

.pkg-ribbon.gold {
  background: var(--gold);
  color: var(--dark);
}

.pkg-duration {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pkg-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 8px 0 16px;
}

.featured-gold .pkg-title {
  color: var(--white);
}

.pkg-route {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--gray-600);
}

.featured-gold .pkg-route {
  color: rgba(255, 255, 255, 0.8);
}

.pkg-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.pkg-features li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pkg-features i {
  color: var(--gold);
}

.btn-pkg-inquire {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-emerald);
  background: transparent;
  color: var(--primary-emerald);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-pkg-inquire:hover, .btn-pkg-inquire.primary {
  background: var(--primary-emerald);
  color: var(--white);
}

.btn-pkg-inquire.primary-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-pkg-inquire.primary-gold:hover {
  background: var(--gold-hover);
}

/* ==========================================================================
   Golf Section & Nations Cup
   ========================================================================== */

.golf-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--primary-emerald) 0%, var(--dark-surface) 100%);
  color: var(--white);
}

.nations-cup-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 64px;
  position: relative;
  backdrop-filter: blur(10px);
}

.nc-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.nc-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}

.nc-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.nc-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.nc-details {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.nc-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold);
}

.nc-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-gold:hover {
  background: var(--white);
  color: var(--primary-emerald);
}

/* Golf Regions Grid */
.golf-regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.golf-region-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px;
}

.gr-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.gr-header i {
  font-size: 1.5rem;
  color: var(--gold);
}

.gr-header h4 {
  font-size: 1.35rem;
  color: var(--white);
}

.gr-courses li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  line-height: 1.5;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
  padding: 100px 0;
  background-color: var(--gray-100);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.contact-title {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.method-icon {
  width: 54px;
  height: 54px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.method-text label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.method-text strong, .method-text a {
  font-size: 1.15rem;
  color: var(--primary-emerald);
  font-weight: 700;
}

/* Form Styling */
.booking-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.booking-form h3 {
  font-size: 1.75rem;
  margin-bottom: 24px;
  color: var(--primary-emerald);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gray-800);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-emerald);
  box-shadow: 0 0 0 3px rgba(13, 59, 46, 0.1);
}

.btn-submit {
  width: 100%;
  background: var(--primary-emerald);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--gold);
  color: var(--dark);
}

.form-alert {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: #E6F4EA;
  color: #137333;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 400px;
}

.footer-links h5 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links ul a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Modal System
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalUp 0.3s ease forwards;
}

@keyframes modalUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.modal-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.modal-content-inner {
  padding: 32px;
}

.modal-title {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.modal-highlights {
  background: var(--gray-100);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.modal-highlights h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.modal-highlights ul li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-highlights i {
  color: var(--gold);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title { font-size: 2.75rem; }
  .search-filter-card { grid-template-columns: 1fr; }
  .filter-bar-wrapper { margin-top: 0; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .nc-grid { grid-template-columns: 1fr; }
  .nc-image { order: -1; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
}
