/* ===== HEADER COMPONENTS ===== */
.modern-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.navbar-brand {
    text-decoration: none;
    color: var(--text-primary);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-icon {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
}

.logo-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav {
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

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

.nav-link i {
    font-size: var(--font-size-sm);
}

/* Search Container */
.search-container {
    margin: 0 var(--spacing-lg);
}

/* Header search input and button as a single group */
.search-form {
  display: flex;
  align-items: center;
}
.search-form .search-input,
.search-form .search-btn {
  height: 44px;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1.2;
  border-width: 2px;
  border-style: solid;
  margin: 0;
  padding: 0 16px;
  vertical-align: middle;
  outline: none;
  appearance: none;
}
.search-form .search-input {
  border-radius: 24px 0 0 24px;
  border-right: none;
  background: var(--bg-secondary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
}
.search-form .search-btn {
  border-radius: 0 24px 24px 0;
  border-left: none;
  background: var(--gradient-primary, #ff6b35);
  color: #fff;
  width: 44px;
  min-width: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  position: static;
  transition: none;
  font-size: 1.1rem;
}
.search-form .search-btn:hover, .search-form .search-btn:focus {
  background: var(--gradient-primary, #ff6b35);
  color: #fff;
  border: 2px solid var(--border-color, #e0e0e0);
  box-shadow: none;
}

.search-form .search-btn i {
    font-size: 12px;
    line-height: 1;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.user-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: none;
    /* Hover effects removed */
}

.user-name {
    font-weight: 600;
}

.theme-toggle-btn {
    background: var(--gradient-secondary);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.theme-toggle-modal {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    animation: fadeIn 0.3s ease-out;
}

.theme-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.theme-toggle-header h4 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.close-btn {
    background: none;
    border: none;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.close-btn:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.theme-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.theme-btn {
    flex: 1;
    padding: var(--spacing-md);
    border: 2px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.theme-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--text-light);
}

.theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

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

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Search Card */
.hero-search-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-xl);
    animation: slideInRight 0.8s ease-out;
    border: 1px solid var(--border-color);
}

.search-card-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.search-card-header h3 {
    margin: 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.search-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.search-btn {
    width: 100%;
    padding: var(--spacing-md);
    font-size: var(--font-size-lg);
    border-radius: var(--radius-lg);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== VENUE CARDS ===== */
.venue-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.venue-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--primary-color);
    color: var(--text-light);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

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

.venue-card:hover .venue-overlay {
    opacity: 1;
}

.venue-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.venue-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.venue-location {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.venue-features {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    background: var(--bg-tertiary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.venue-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
}

.price {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--primary-color);
}

.per {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* ===== EVENT DETAIL PAGE ===== */
.event-detail-section {
    padding: var(--spacing-3xl) 0;
}

.event-images {
    margin-bottom: var(--spacing-2xl);
}

.main-image {
    margin-bottom: var(--spacing-lg);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.image-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.image-gallery img:hover {
    transform: scale(1.05);
}

.event-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.event-meta {
    margin-bottom: var(--spacing-2xl);
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.meta-item i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

.event-description,
.venue-details,
.amenities-section,
.menus-section,
.services-section,
.videos-section,
.policies-section,
.booking-section {
    margin-bottom: var(--spacing-2xl);
}

.event-description h3,
.venue-details h3,
.amenities-section h3,
.menus-section h3,
.services-section h3,
.videos-section h3,
.policies-section h3,
.booking-section h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.description-content {
    line-height: 1.8;
    color: var(--text-secondary);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.detail-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.status-badge {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.status-open {
    background: var(--accent-color);
    color: var(--text-light);
}

.status-closed {
    background: #ef4444;
    color: var(--text-light);
}

.status-renovating {
    background: #f59e0b;
    color: var(--text-light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.amenity-item i {
    color: var(--accent-color);
}

.menus-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.menu-item,
.service-item {
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-fast);
}

.menu-item:hover,
.service-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.menu-item h4,
.service-item h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.menu-category,
.service-package {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
}

.menu-price,
.service-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.video-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
}

.video-title {
    margin-top: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.policies-content,
.booking-content {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===== EVENT SIDEBAR ===== */
.event-sidebar {
    position: sticky;
    top: var(--spacing-xl);
}

.booking-card,
.contact-card,
.social-card,
.similar-venues-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
}

.booking-card h3,
.contact-card h4,
.social-card h4,
.similar-venues-card h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.price-display {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.price-display .price {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary-color);
}

.price-display .per {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-light);
}

.similar-venue {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
}

.similar-venue-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.similar-venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-venue-info {
    flex-grow: 1;
}

.similar-venue-info h5 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.similar-venue-info p {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.similar-venue-info .price {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.reviews-section h3 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    color: var(--text-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.reviewer-info h5 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.rating {
    display: flex;
    gap: var(--spacing-xs);
}

.rating i {
    color: #fbbf24;
    font-size: var(--font-size-sm);
}

.rating i.filled {
    color: #f59e0b;
}

.review-date {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.review-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== EVENT CARDS ===== */
.event-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
}

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

.event-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-category {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--secondary-color);
    color: var(--text-light);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.event-content {
    padding: var(--spacing-md);
}

.event-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.event-date,
.event-location {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.event-stats {
    margin-top: var(--spacing-sm);
}

.stat {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

/* ===== SECTIONS ===== */
.featured-venues-section,
.popular-events-section,
.how-it-works-section,
.testimonials-section,
.cta-section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== STEP CARDS ===== */
.step-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: var(--font-size-2xl);
    color: var(--text-light);
}

.step-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--bg-secondary);
    padding: var(--spacing-3xl) 0;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
    min-height: 320px;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px) scale(1.02);
}

.testimonial-content {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: auto;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    background: var(--bg-secondary);
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.author-event {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: var(--spacing-lg);
        min-height: 260px;
    }
    .author-avatar {
        width: 44px;
        height: 44px;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.page-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.breadcrumb-item a:hover {
    opacity: 1;
}

.breadcrumb-item.active {
    opacity: 0.6;
}

/* ===== FILTERS ===== */
.filters-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-xl);
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.no-results {
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.no-results-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-results-content i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    opacity: 0.5;
}

.no-results-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.no-results-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.no-results-content .btn {
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.no-results-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    list-style: none;
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
    background: var(--bg-card);
}

.page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .venue-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .results-info {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .filters-section {
        padding: var(--spacing-lg);
    }
    
    .search-row {
        grid-template-columns: 1fr;
    }
    
    .meta-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .menus-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .event-sidebar {
        position: static;
        margin-top: var(--spacing-xl);
    }
    
    .similar-venue {
        flex-direction: column;
        text-align: center;
    }
    
    .similar-venue-image {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .cta-title {
        font-size: var(--font-size-2xl);
    }
    
    .hero-search-card {
        padding: var(--spacing-lg);
    }
}

/* ===== FOOTER ===== */
.modern-footer {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-lg);
}

.footer-content {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
}

.footer-section {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
}

.footer-logo i {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-sm);
}

.footer-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    position: relative;
    padding-left: var(--spacing-sm);
}

.footer-links a::before {
    content: '→';
    color: var(--primary-color);
    font-weight: bold;
    opacity: 0;
    transition: all var(--transition-fast);
    transform: translateX(-10px);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.contact-item i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    font-size: var(--font-size-sm);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-lg) 0;
}

.copyright {
    color: var(--text-secondary);
    margin: 0;
    font-size: var(--font-size-sm);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-bottom-links li {
    margin: 0;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
    background: var(--bg-secondary);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        padding: var(--spacing-xl) 0 var(--spacing-lg);
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: var(--spacing-xl);
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
        margin-top: var(--spacing-lg);
    }
    
    .contact-item {
        text-align: left;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    
    .copyright {
        text-align: center;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .social-links {
        gap: var(--spacing-sm);
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* ===== DYNAMIC FILTER SECTION ===== */
.filter-section {
    background: var(--bg-secondary);
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.filter-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.filter-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.filter-header p {
    color: var(--text-secondary);
    margin: 0;
}

.filter-form .form-group {
    margin-bottom: 0;
}

.filter-form label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.filter-form label i {
    color: var(--primary-color);
}

.filter-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    transition: all var(--transition-fast);
}

.filter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}

.filter-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-end;
    height: 100%;
}

.filter-actions .btn {
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.filter-actions .btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.filter-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.filter-actions .btn-outline-secondary {
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
}

.filter-actions .btn-outline-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* Active Filters Display */
.active-filters {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

.filter-badge {
    background: var(--primary-color);
    color: var(--text-light);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-fast);
}

.filter-badge:hover {
    background: var(--primary-color-dark);
    transform: translateY(-1px);
}

.filter-badge i {
    font-size: var(--font-size-xs);
}

.remove-filter {
    color: var(--text-light);
    text-decoration: none;
    margin-left: var(--spacing-xs);
    padding: 2px;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.remove-filter:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-wrapper {
        padding: var(--spacing-lg);
    }
    
    .filter-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-actions .btn {
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }
    
    .active-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .filter-badge {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .filter-header h3 {
        font-size: var(--font-size-lg);
    }
    
    .filter-wrapper {
        padding: var(--spacing-md);
    }
}

/* Contact Page Styles */
.contact-hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,107,53,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-header h2 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form-header h2 i {
    color: #ff6b35;
    margin-right: 10px;
}

.contact-form-header p {
    color: #666;
    font-size: 1.1rem;
}

.messages-container {
    margin-bottom: 30px;
}

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

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.contact-form label i {
    color: #ff6b35;
    margin-right: 8px;
    width: 16px;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form .form-control:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255,107,53,0.25);
    background: white;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-actions .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.form-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.form-actions .btn i {
    margin-right: 8px;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,107,53,0.1);
    height: 100%;
    position: sticky;
    top: 20px;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.contact-info-header h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-header h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.contact-info-header p {
    color: #666;
    margin: 0;
}

.contact-info-items {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.social-links-section {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.social-links-section h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
    color: white;
}

.social-link i {
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.map-header h2 i {
    color: #ff6b35;
    margin-right: 15px;
}

.map-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,107,53,0.1);
}

.map-container iframe {
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-header h2 i {
    color: #ff6b35;
    margin-right: 15px;
}

.faq-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,107,53,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.faq-item h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-item h4 i {
    color: #ff6b35;
    margin-right: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
    
    .map-header h2,
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding: 60px 0;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-form .row {
        margin: 0;
    }
    
    .contact-form .col-md-6 {
        padding: 0;
    }
    
    .form-actions .btn {
        width: 100%;
        padding: 15px 20px;
    }
}

/* Animation for contact form elements */
.contact-form-card {
    animation: fadeInUp 0.6s ease-out;
}

.contact-info-card {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.contact-info-item {
    animation: fadeInLeft 0.5s ease-out;
}

.contact-info-item:nth-child(1) { animation-delay: 0.1s; }
.contact-info-item:nth-child(2) { animation-delay: 0.2s; }
.contact-info-item:nth-child(3) { animation-delay: 0.3s; }
.contact-info-item:nth-child(4) { animation-delay: 0.4s; }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Contact Form Styles */
.contact-form .form-group.focused label {
    color: #ff6b35;
    transform: translateY(-2px);
}

.contact-form .form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.char-counter {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 5px;
    text-align: right;
}

.contact-form .form-group {
    position: relative;
}

.contact-form .form-group label {
    transition: all 0.3s ease;
}

/* FAQ Item Active State */
.faq-item.active {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-left: 4px solid #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.faq-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Loading Button State */
.form-actions .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-actions .btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Info Item Enhanced Hover */
.contact-info-item {
    cursor: pointer;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-item:hover .contact-details h4 {
    color: #ff6b35;
}

/* Social Links Enhanced Hover */
.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) rotate(5deg) scale(1.1);
}

/* Map Container Enhanced */
.map-container {
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Form Input Focus Animation */
.contact-form .form-control:focus {
    animation: inputFocus 0.3s ease;
}

@keyframes inputFocus {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Success/Error Message Styling */
.alert {
    border-radius: 12px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border-left: 4px solid #ffc107;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .contact-form-card,
    .contact-info-card {
        margin-bottom: 30px;
    }
    
    .contact-info-item {
        margin-bottom: 20px;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .char-counter {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-form .form-control {
        padding: 12px 15px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 25px 15px;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
}

/* Event Detail Page Styles */
.event-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.8) 0%, rgba(247,147,30,0.8) 100%);
    z-index: 2;
}

.event-hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    padding: 40px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-meta i {
    color: #fff;
    font-size: 1.2rem;
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.hero-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.hero-price .per {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Hero Booking Card */
.hero-booking-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.booking-highlight h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.booking-highlight h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.price-display {
    text-align: center;
    margin-bottom: 25px;
}

.main-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.price-label {
    font-size: 1rem;
    color: #666;
    margin-left: 5px;
}

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

.btn-book-now {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,53,0.5);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.secondary-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.secondary-actions .btn {
    flex: 1;
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Floating Booking Button (Mobile) */
.floating-booking-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
}

.floating-booking-btn .btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
    white-space: nowrap;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

/* Event Detail Section */
.event-detail-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Image Gallery */
.image-gallery-section h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* About Section */
.about-section h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-section h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.about-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    line-height: 1.8;
}

/* Venue Details */
.venue-details-section h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.venue-details-section h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

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

.detail-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    color: white;
    font-size: 1.5rem;
}

.detail-content h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.detail-content p {
    color: #666;
    margin: 0;
}

/* Amenities */
.amenities-section h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.amenities-section h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.amenity-item {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-3px);
}

.amenity-item i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Menus */
.menus-section h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.menus-section h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

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

.menu-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-header h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.menu-category {
    color: #666;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 3px 10px;
    border-radius: 15px;
}

.menu-price {
    margin-top: 15px;
    text-align: center;
}

.menu-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.menu-price .per {
    color: #666;
    font-size: 0.9rem;
}

/* Services */
.services-section h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.services-section h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

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

.service-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-header h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-package {
    color: #666;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 3px 10px;
    border-radius: 15px;
}

.service-price {
    margin-top: 15px;
    text-align: center;
}

.service-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

/* Videos */
.videos-section h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.videos-section h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-title {
    padding: 20px;
}

.video-title h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Policies */
.policies-section h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.policies-section h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.policy-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.policy-card h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.policy-card h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.policy-content {
    line-height: 1.8;
    color: #666;
}

/* Sidebar */
.event-sidebar {
    position: relative;
}

/* Sticky Booking Card - Removed sticky behavior */
.sticky-booking-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,107,53,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.sticky-booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Ensure the sidebar container maintains proper spacing */
.event-sidebar {
    position: relative;
    z-index: 2;
}

/* Improve responsive behavior */
@media (max-width: 768px) {
    .floating-booking-btn {
        display: block;
    }
}

/* Placeholder for layout stability */
/* .sticky-placeholder {
    background: transparent;
    pointer-events: none;
} */

/* Add a placeholder when sticky to prevent layout shift */
/* .sticky-booking-card.sticky + .contact-card {
    margin-top: 20px;
} */

/* Improve sticky behavior on different screen sizes */
/* @media (max-width: 1200px) {
    .sticky-booking-card.sticky {
        width: calc(33.333% - 30px);
        max-width: 320px;
    }
}

@media (max-width: 992px) {
    .sticky-booking-card.sticky {
        width: calc(33.333% - 20px);
        max-width: 300px;
    }
} */

.booking-header {
    text-align: center;
    margin-bottom: 25px;
}

.booking-header h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.booking-header h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.price-highlight {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-highlight .price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

.price-highlight .per {
    color: #666;
    font-size: 1rem;
}

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

.btn-book-now-sticky {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
    transition: all 0.3s ease;
    margin-bottom: 15px;
    width: 100%;
}

.btn-book-now-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,53,0.5);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.contact-card h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-card h4 i {
    color: #ff6b35;
    margin-right: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: #ff6b35;
    width: 20px;
}

.contact-item span {
    color: #666;
}

/* Social Card */
.social-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.social-card h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-card h4 i {
    color: #ff6b35;
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
    color: white;
}

/* Similar Venues */
.similar-venues-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.similar-venues-card h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.similar-venues-card h4 i {
    color: #ff6b35;
    margin-right: 10px;
}

.similar-venue {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.similar-venue:hover {
    transform: translateY(-3px);
}

.similar-venue-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.similar-venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-venue-info h5 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.similar-venue-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.similar-venue-info .price {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h3 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
}

.section-header h3 i {
    color: #ff6b35;
    margin-right: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info h5 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ddd;
    font-size: 1rem;
}

.rating i.filled {
    color: #ffc107;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Status Badges */
.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-accepted {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-hero-section {
        height: auto;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-booking-card {
        margin-top: 30px;
    }
    
    .floating-booking-btn {
        display: block;
    }
    
    .sticky-booking-card.sticky {
        position: static;
        width: auto;
    }
    
    .details-grid,
    .amenities-grid,
    .menus-grid,
    .services-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-price .price {
        font-size: 2rem;
    }
    
    .main-price {
        font-size: 2rem;
    }
    
    .detail-card {
        flex-direction: column;
        text-align: center;
    }
    
    .secondary-actions {
        flex-direction: column;
    }
    
    .floating-booking-btn .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Utility class for truncating text with ellipsis */
.text-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
} 

.category-title.text-truncate, .location-title.text-truncate {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.btn, .btn-sm, .btn-outline-primary, .btn-primary {
  min-width: 100px;
  min-height: 44px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-title.text-truncate {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.booking-info .text-truncate, .review-header .text-truncate {
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.btn, .btn-lg, .btn-outline-secondary {
  min-height: 48px;
}

/* Fix: Only apply min-height to general buttons, not header search */
.btn:not(.search-btn), .btn-lg:not(.search-btn), .btn-outline-secondary:not(.search-btn) {
  min-height: 48px;
}

/* Header search button should remain compact */
.search-form .search-btn {
  min-height: 32px;
  width: 32px;
  height: 32px;
  padding: 6px 10px;
  font-size: 1rem;
}