/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Watoto Church official palette — coated green (Pantone 2426 C), accent yellow #FBD110 */
    --primary-color: #008C15;
    --primary-dark: #006010;
    --primary-light: #78BE20;
    --secondary-color: #000000; /* Black */
    --accent-color: #008C15;
    --accent-yellow: #FBD110;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #1a1a1a; /* Near black for text */
    --success: #008C15;
    --warning: #ffc107;
    --error: #dc3545;
    
    /* Color variations for gradients and overlays */
    --green-50: rgba(0, 140, 21, 0.05);
    --green-100: rgba(0, 140, 21, 0.1);
    --green-200: rgba(0, 140, 21, 0.2);
    --green-300: rgba(0, 140, 21, 0.3);
    --green-400: rgba(0, 140, 21, 0.4);
    --black-50: rgba(0, 0, 0, 0.05);
    --black-100: rgba(0, 0, 0, 0.1);
    --black-200: rgba(0, 0, 0, 0.2);
    
    /* Fonts */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 50px 0;
    --container-padding: 0 20px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Ensure all sections don't overflow */
section {
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Flash Messages & Alerts */
.flash-alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.flash-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: currentColor;
    opacity: 0.6;
}

.flash-alert .alert-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    margin-top: 2px;
}

.flash-alert .alert-content {
    flex: 1;
    min-width: 0;
}

.flash-alert .btn-close {
    flex-shrink: 0;
    opacity: 0.6;
}

.flash-alert .btn-close:hover {
    opacity: 1;
}

/* Alert Type Colors */
.flash-alert.alert-success {
    background: rgba(0, 140, 21, 0.12);
    color: #006010;
    border-color: rgba(0, 140, 21, 0.3);
}

.flash-alert.alert-success .alert-icon {
    color: var(--primary-color);
}

.flash-alert.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.flash-alert.alert-danger .alert-icon {
    color: #dc3545;
}

.flash-alert.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-color: #ffecb5;
}

.flash-alert.alert-warning .alert-icon {
    color: #ffc107;
}

.flash-alert.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

.flash-alert.alert-info .alert-icon {
    color: #17a2b8;
}


/* Responsive Alert Adjustments */
@media (max-width: 768px) {
    .flash-alert {
        padding: 14px 16px;
        gap: 12px;
        font-size: 0.9rem;
    }
    
    .flash-alert .alert-icon {
        font-size: 1.1rem;
    }
}

/* Modern Main Navbar */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    height: 70px;
}

.main-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.main-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.main-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    border-radius: 8px;
}

.main-nav-link:hover {
    background: rgba(0, 140, 21, 0.08);
    color: #008C15;
}

.main-nav-link i {
    font-size: 14px;
}

.main-nav-link span {
    display: inline;
}

.main-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
}

.main-btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 3px 12px rgba(0, 140, 21, 0.25);
}

.main-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(0, 140, 21, 0.35);
    color: white;
}

.main-btn-secondary {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.main-btn-secondary:hover {
    background: rgba(108, 117, 125, 0.15);
    color: #495057;
}

.main-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    border-radius: 8px;
    background: rgba(108, 117, 125, 0.08);
}

.main-nav-icon:hover {
    background: rgba(0, 140, 21, 0.1);
    color: #008C15;
    transform: scale(1.05);
}

.main-nav-icon i {
    font-size: 16px;
}

/* Hamburger Menu Button (Mobile) */
.main-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.main-hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #495057;
    border-radius: 2px;
    margin: 3px 0;
}

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

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

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

/* Mobile Menu Overlay */
.main-mobile-menu {
    display: none !important;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 1001;
    overflow-y: auto;
    width: 100%;
    height: calc(100vh - 64px);
}

.main-mobile-menu.show {
    display: block !important;
}

.main-mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 32px 20px;
    gap: 12px;
}

.main-mobile-close {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f3f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #495057;
    font-size: 16px;
    margin-bottom: 8px;
}

.main-mobile-close:hover {
    background: #e9ecef;
    color: #1a1a1a;
}

.main-mobile-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.main-mobile-link:hover,
.main-mobile-link:active {
    background: #ffffff;
    color: #008C15;
    border-color: #008C15;
    box-shadow: 0 2px 8px rgba(0, 140, 21, 0.1);
}

.main-mobile-link i {
    font-size: 20px;
    width: 24px;
    text-align: center;
    color: #6c757d;
}

.main-mobile-link:hover i,
.main-mobile-link:active i {
    color: #008C15;
}

.main-mobile-link span {
    flex: 1;
    font-weight: 500;
}

.main-mobile-btn {
    margin-top: 8px;
    justify-content: center;
    font-weight: 600;
}

.main-mobile-btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 140, 21, 0.25);
}

.main-mobile-btn-primary i {
    color: white;
}

.main-mobile-btn-primary:hover,
.main-mobile-btn-primary:active {
    background: var(--primary-dark);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 140, 21, 0.35);
}

.main-mobile-btn-primary:hover i,
.main-mobile-btn-primary:active i {
    color: white;
}

/* Legacy navbar classes for backward compatibility */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

/* Modern Bottom Navigation (Mobile) - Subtle Integrated Design */
.main-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(248, 249, 250, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.03);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    display: none;
    z-index: 999;
    max-width: 100vw;
}

.main-bottom-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 4px;
    text-decoration: none;
    color: #6c757d;
    position: relative;
    min-width: 0;
}

.main-bottom-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
}

.main-bottom-item i {
    font-size: 20px;
    color: #6c757d;
    display: block;
}

.main-bottom-label {
    font-size: 11px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: #6c757d;
    letter-spacing: 0.1px;
}

.main-bottom-item.active i,
.main-bottom-item:hover i {
    color: #008C15;
}

.main-bottom-item.active .main-bottom-label,
.main-bottom-item:hover .main-bottom-label {
    color: #008C15;
    font-weight: 600;
}

.main-bottom-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: #008C15;
    border-radius: 0 0 3px 3px;
}

/* Legacy bottom nav for backward compatibility */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
    .main-bottom-nav,
    .bottom-nav {
        display: none !important;
        visibility: hidden !important;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8e9ba7;
    font-weight: 500;
    padding: 10px 8px;
    border-radius: 16px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    gap: 5px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    background: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    padding: 110px 0 40px;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: var(--white);
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.highlight {
    color: var(--white);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.banns-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    color: var(--white);
}

.banns-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.banns-header i {
    font-size: 1.2rem;
    color: var(--white);
}

.banns-header h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin: 0;
}

.banns-notice {
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 20px;
    border-left: 3px solid var(--white);
    padding-left: 15px;
}

.upcoming-weddings h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
}

.wedding-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.wedding-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 50px;
    font-weight: 600;
}

.wedding-date .day {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.wedding-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
}

.wedding-details p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.3;
}

.wedding-details p:first-child {
    font-weight: 600;
}

.wedding-details p:last-child {
    opacity: 0.8;
}

.info-cards {
    display: flex;
    gap: 15px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.info-card i {
    font-size: 1.8rem;
    color: var(--white);
}

.info-card h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin: 0;
    color: var(--white);
}

.info-card p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    /* font-family: var(--font-secondary); */
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px var(--green-300);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 25px var(--green-400);
}

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

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    color: var(--white);
    text-align: center;
}

.hero-scroll span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Quick Booking Card */
.quick-booking-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
}

/* .quick-booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
} */

.quick-booking-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.quick-booking-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-form label {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-form input,
.quick-form select {
    padding: 12px 16px;
    border: 2px solid var(--green-100);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    color: var(--dark-gray);
    outline: none;
}

.quick-form input:focus,
.quick-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--green-100);
}

.quick-form input::placeholder {
    color: var(--gray);
    font-style: italic;
}

.quick-form select {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23008C15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.btn-check {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.btn-check:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 25px var(--green-300);
}

.btn-check:active {
    transform: translateY(0);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Custom Select Dropdown */
.custom-select-wrapper {
    position: relative;
}

.custom-select {
    position: relative;
    background: var(--white);
    border: 2px solid var(--green-100);
    border-radius: 10px;
    cursor: pointer;
}

.custom-select:hover {
    border-color: var(--green-200);
}

.custom-select.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--green-100);
}

.select-trigger {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border-radius: 8px;
}

.select-value {
    font-size: 1rem;
    color: var(--dark-gray);
}

.select-value.placeholder {
    color: var(--gray);
    font-style: italic;
}

.select-arrow {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}


.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.custom-select.active .select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.option {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--green-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option:last-child {
    border-bottom: none;
}

.option:hover {
    background: var(--green-50);
    transform: translateX(2px);
}

.option.selected {
    background: var(--green-100);
    color: var(--primary-color);
    font-weight: 600;
}

.option-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.option-location {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

.option-price {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
}

.option.selected .option-text,
.option.selected .option-location {
    color: var(--primary-color);
}

/* Custom scrollbar for select options */
.select-options::-webkit-scrollbar {
    width: 6px;
}

.select-options::-webkit-scrollbar-track {
    background: var(--green-100);
    border-radius: 3px;
}

.select-options::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.select-options::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

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

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

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Venues Preview */
.venues-preview {
    padding: var(--section-padding);
}

/* Venues Slider */
.venues-slider-wrapper {
    position: relative;
    margin: 40px 0 30px;
}

.venues-slider-container {
    overflow: hidden;
    position: relative;
    margin: 0 50px;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
}

.venues-slider {
    display: flex;
    gap: 25px;
    scroll-behavior: smooth;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    will-change: scroll-position; /* Better performance in Chrome */
}

.venues-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.venues-slider .venue-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--green-100);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px var(--black-100);
    color: var(--primary-color);
    font-size: 1.2rem;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.slider-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px var(--green-300);
}

.slider-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav-prev {
    left: 0;
}

.slider-nav-next {
    right: 0;
}

.slider-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.slider-nav-btn:disabled:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--green-100);
    transform: translateY(-50%);
    box-shadow: 0 4px 15px var(--black-100);
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.slider-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-100);
    cursor: pointer;
    border: 2px solid transparent;
}

.slider-indicator:hover {
    background: var(--green-200);
    transform: scale(1.2);
}

.slider-indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
    border-color: var(--primary-color);
}

/* Legacy grid support for fallback */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.venue-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--black-50);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--green-50);
}

.venues-slider {
    cursor: grab;
}

.venues-slider:active {
    cursor: grabbing;
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--black-200);
    border-color: var(--green-100);
}

.venue-image {
    position: relative;
    height: 180px;
    background: var(--primary-color);
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.venue-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.venue-price {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--green-300);
}

/* Venue Content Styling */
.venue-content {
    padding: 20px;
    background: var(--white);
    position: relative;
}

.venue-name {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.venue-location,
.venue-capacity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 0.85rem;
}

.venue-location i,
.venue-capacity i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 14px;
    text-align: center;
}

.venue-description {
    color: var(--dark-gray);
    line-height: 1.5;
    margin-bottom: 18px;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.venue-facilities {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-color);
}

.venue-facilities h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.venue-facilities h4::before {
    content: '✨';
    font-size: 1rem;
}

.venue-facilities p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Venue Card Button */
.venue-content .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    border-radius: 10px;
    position: relative;
}

.venue-content .btn:hover {
    box-shadow: 0 8px 25px var(--green-300);
}

/* Enhanced Hover Effects */
.venue-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--black-50);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--green-50);
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--black-200);
    border-color: var(--green-100);
}

.venue-image {
    position: relative;
    height: 280px;
    background: var(--primary-color);
    overflow: hidden;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.about-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="20" cy="20" r="1" fill="rgba(100,1,127,0.03)"/><circle cx="80" cy="80" r="1" fill="rgba(100,1,127,0.03)"/><circle cx="40" cy="60" r="1" fill="rgba(100,1,127,0.03)"/><circle cx="60" cy="40" r="1" fill="rgba(100,1,127,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content {
    position: relative;
}

.about-content .section-title {
    margin-bottom: 30px;
    position: relative;
}

.about-content .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--black-50);
    border: 1px solid var(--green-50);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--green-100);
    border-color: var(--green-100);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 5px 20px var(--green-200);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    pointer-events: none;
}

.feature-item:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px var(--green-300);
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.feature-content h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.85rem;
    margin: 0;
}

.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 40px;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: var(--primary-color);
    border-radius: 35px;
    opacity: 0.08;
    z-index: -1;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: -40px;
    background: var(--green-50);
    border-radius: 45px;
    z-index: -2;
}

.about-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 25px 60px var(--green-200);
}

/* Animation for feature items */
.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }


/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--green-100);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1rem;
    color: var(--white);
}

.contact-content h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: var(--white);
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0aec0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--green-100);
}

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

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0 15px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-yellow);
}

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

.footer-section h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-brand .logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: var(--white);
    padding: 8px;
    border-radius: 10px;
}

.footer-brand .brand-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer Links */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-section ul li i {
    color: var(--white);
    width: 16px;
    font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    position: relative;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Admin Access */
.admin-access {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.admin-link {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 5px;
    border-radius: 3px;
}

.admin-link:hover {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive Design - Mobile Unique Design */
@media (max-width: 768px) {
    /* Prevent horizontal scroll on mobile */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    /* Main Navbar - Mobile - Elegant Design */
    .main-navbar {
        height: 64px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }
    
    .main-navbar-container {
        padding: 0 20px;
        justify-content: space-between;
        position: relative;
    }
    
    .main-nav-logo {
        flex: 1;
        justify-content: center;
        position: relative;
    }
    
    .main-logo-img {
        height: 40px;
        max-width: 180px;
        object-fit: contain;
    }
    
    .main-nav-actions {
        display: none;
    }
    
    /* Hamburger Menu Button - Show on Mobile */
    .main-hamburger {
        display: flex;
    }
    
    /* Main Bottom Nav - Hidden */
    .main-bottom-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Legacy Navigation - Mobile Unique */
    .navbar {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        height: 60px;
        width: 100%;
        max-width: 100vw;
    }
    
    .navbar .container {
        justify-content: center;
        padding: 10px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: none;
    }
    
    .nav-brand {
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .logo {
        height: 45px;
        max-width: 100%;
    }
    
    /* Ensure all containers don't overflow */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    /* Prevent any element from causing horizontal scroll */
    section, main, header, footer {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Main Bottom Navigation - Mobile Design - Subtle Integrated */
    .main-bottom-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(248, 249, 250, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-top: 1px solid rgba(0, 0, 0, 0.04);
        box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.03);
        padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
        min-height: 60px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        left: 0;
        right: 0;
    }
    
    /* Legacy Bottom Navigation - Premium Mobile Design */
    .bottom-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-top: 1px solid rgba(0, 140, 21, 0.15);
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.06);
        padding: 12px 8px calc(12px + env(safe-area-inset-bottom));
        min-height: 72px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        left: 0;
        right: 0;
    }
    
    /* Add padding to main content to account for bottom nav */
    main {
        padding-bottom: 70px;
    }
    
    body {
        padding-bottom: 0;
    }
    
    /* Premium Bottom Nav Items */
    .bottom-nav-item {
        flex: 1 1 0;
        min-width: 0;
        padding: 10px 6px;
        border-radius: 16px;
        position: relative;
        margin: 0 4px;
    }
    
    .bottom-nav-item i {
        font-size: 1.4rem;
        margin-bottom: 4px;
        display: block;
    }
    
    .bottom-nav-item span {
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.2px;
    }
    
    .bottom-nav-item.active {
        background: rgba(0, 140, 21, 0.1);
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .bottom-nav-item.active::before {
        width: 40px;
        margin-left: -20px;
        height: 3px;
        border-radius: 0 0 4px 4px;
    }
    
    .bottom-nav-item.active i {
        color: var(--primary-color);
        font-size: 1.5rem;
    }
    
    /* Hero Section - Mobile Unique */
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .title-line {
        display: block;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    /* Quick Booking Card Responsive */
    .quick-booking-card {
        padding: 25px 20px;
        margin-top: 20px;
        border-radius: 15px;
    }
    
    .quick-booking-card h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .quick-form {
        gap: 15px;
    }
    
    .quick-form input,
    .quick-form select {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .btn-check {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* Custom Select Responsive */
    .select-options {
        max-height: 250px;
    }
    
    .option {
        padding: 10px 12px;
    }
    
    .option-text {
        font-size: 0.9rem;
    }
    
    .option-location {
        font-size: 0.8rem;
    }
    
    .option-price {
        font-size: 0.85rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .banns-section {
        padding: 20px;
    }
    
    .info-cards {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Venues Slider Responsive */
    .venues-slider-container {
        margin: 0 40px;
    }
    
    .slider-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .venues-slider .venue-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
    
    .venues-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .venue-content {
        padding: 20px;
    }
    
    .venue-image {
        height: 200px;
    }
    
    /* About Section Tablet */
    .about-section {
        padding: 40px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px 15px;
        flex-direction: column;
        text-align: left;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        flex-shrink: 0;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        max-width: 250px;
        padding: 30px;
    }
    
    /* Contact Section Tablet */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .contact-item {
        padding: 18px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    /* Footer Tablet */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 35px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .feature-item {
        padding: 18px 15px;
        flex-direction: column;
        text-align: left;
        gap: 12px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-content h4 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    
    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        max-width: 200px;
        padding: 25px;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 35px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-item {
        padding: 15px;
        flex-direction: row;
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-content h4 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    
    .contact-content p {
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 11px 12px;
        font-size: 0.9rem;
    }
    
    .contact-form button {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step::after {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Container padding for mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .navbar .container {
        padding: 12px 15px;
    }
    
    .logo {
        height: 35px;
    }
    
    /* Bottom Navigation - Smaller on very small screens */
    .bottom-nav {
        padding: 10px 6px calc(10px + env(safe-area-inset-bottom));
        min-height: 68px;
    }
    
    .bottom-nav-item {
        padding: 8px 4px;
        gap: 4px;
        margin: 0 2px;
    }
    
    .bottom-nav-item i {
        font-size: 1.3rem;
    }
    
    .bottom-nav-item.active i {
        font-size: 1.4rem;
    }
    
    .bottom-nav-item span {
        font-size: 0.68rem;
    }
    
    .bottom-nav-item.active::before {
        width: 35px;
        margin-left: -17.5px;
    }
    
    main {
        padding-bottom: 80px;
    }
    
    /* Hero Section */
    .hero {
        padding: 70px 0 25px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .title-line {
        display: block;
        margin-right: 0;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    /* Quick Booking Card Mobile */
    .quick-booking-card {
        padding: 20px 15px;
        border-radius: 15px;
        margin-top: 15px;
    }
    
    .quick-booking-card h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .quick-form {
        gap: 12px;
    }
    
    .quick-form label {
        font-size: 0.8rem;
    }
    
    .quick-form input,
    .quick-form select {
        padding: 11px 12px;
        font-size: 0.9rem;
    }
    
    .btn-check {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    /* Venue Cards Mobile */
    .venues-slider-container {
        margin: 0 15px;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slider-nav-prev {
        left: -10px;
    }
    
    .slider-nav-next {
        right: -10px;
    }
    
    .venues-slider .venue-card {
        flex: 0 0 85%;
        min-width: 85%;
        max-width: 300px;
        border-radius: 15px;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .venue-card {
        border-radius: 15px;
    }
    
    .venue-image {
        height: 160px;
    }
    
    .venue-content {
        padding: 20px;
    }
    
    .venue-name {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .venue-facilities {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .quick-form input,
    .quick-form select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .btn-check {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Custom Select Mobile */
    .select-trigger {
        padding: 10px 12px;
    }
    
    .select-value {
        font-size: 0.9rem;
    }
    
    .select-options {
        max-height: 200px;
    }
    
    .option {
        padding: 8px 12px;
    }
    
    .option-text {
        font-size: 0.85rem;
    }
    
    .option-location {
        font-size: 0.75rem;
    }
    
    .option-price {
        font-size: 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 18px 15px;
    }
    
    .about-grid {
        gap: 30px;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .wedding-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .admin-access {
        position: static;
        transform: none;
        margin-top: 10px;
    }
}
