/* ========================================
   HEREKE MARINA - Premium Coastal Theme
   ======================================== */

:root {
    --navy: #0E1C36;
    --sea-blue: #1E3A5F;
    --gold: #C6A75E;
    --gold-light: #D4B96E;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --gray-light: #E8E8E8;
    --gray: #888888;
    --text-dark: #333333;
    --text-light: #666666;
    --success: #28a745;
    --danger: #dc3545;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 5px 30px rgba(0, 0, 0, 0.12);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 15px 0;
}

.site-header.scrolled {
    background: rgba(14, 28, 54, 0.97);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white) !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-brand img {
    height: 45px;
    transition: var(--transition);
}

.site-header.scrolled .navbar-brand img {
    height: 35px;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover { color: var(--gold) !important; }

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
}

.lang-link {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 3px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    line-height: 1;
}

.lang-link.active-lang {
    color: var(--gold) !important;
    background: rgba(198, 167, 94, 0.15);
}

.lang-link:hover { color: var(--gold) !important; }

.lang-divider {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    padding: 0 2px;
    line-height: 1;
}

/* Mobile Menu */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14,28,54,0.4) 0%, rgba(14,28,54,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    opacity: 0.7;
}

.carousel-indicators .active {
    background: var(--gold);
    opacity: 1;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary-custom {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 12px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 167, 94, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
    padding: 12px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-navy:hover {
    background: var(--sea-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--off-white);
}

.section-dark {
    background-color: var(--navy);
    color: var(--white);
}

.section-dark h2, .section-dark h3 {
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.gold-underline {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
}

/* Page Headers */
.page-header {
    background: var(--navy);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--sea-blue) 100%);
}

.page-header h1 {
    position: relative;
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.page-header .gold-underline {
    position: relative;
}

/* ========================================
   ABOUT SECTION (Homepage)
   ======================================== */
.about-section .about-image {
    border-radius: 5px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-section .about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-section .about-image:hover img {
    transform: scale(1.03);
}

.about-section .about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-section .about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

/* ========================================
   MENU CARDS
   ======================================== */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.menu-tab {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--gray-light);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-tab:hover, .menu-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.menu-card {
    background: var(--white);
    border: none;
    box-shadow: var(--shadow);
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    height: 200px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 20px;
}

.menu-card-body h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.menu-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.menu-card-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
}

/* Menu List Style (alternative) */
.menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px dashed var(--gray-light);
}

.menu-list-item:last-child { border-bottom: none; }

.menu-list-info h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--navy);
}

.menu-list-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.menu-list-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
    margin-left: 20px;
}

/* ========================================
   GALLERY GRID
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 28, 54, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1rem;
    margin-top: 8px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
    background: none;
    border: none;
}

/* ========================================
   GOOGLE REVIEWS
   ======================================== */
.reviews-section .rating-display {
    text-align: center;
    margin-bottom: 40px;
}

.rating-display .rating-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 700;
}

.rating-display .stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 10px 0;
}

.review-card {
    background: var(--white);
    border: none;
    box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 25px;
    height: 100%;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.review-card .review-author {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.review-card .review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.review-card .review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.review-card .review-date {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 10px;
}

/* ========================================
   RESERVATION CTA
   ======================================== */
.cta-section {
    background: linear-gradient(rgba(14,28,54,0.85), rgba(14,28,54,0.85)),
                url('/images/cta-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ========================================
   FORMS
   ======================================== */
.form-section {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 0.9rem;
}

.form-control {
    border: 1px solid var(--gray-light);
    border-radius: 3px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
    font-family: var(--font-body);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.15);
    outline: none;
}

.form-select {
    border: 1px solid var(--gray-light);
    border-radius: 3px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
    font-family: var(--font-body);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
}

.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.15);
    outline: none;
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.kvkk-check {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* OTP Steps */
.otp-section {
    background: var(--off-white);
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
}

.otp-input {
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 8px;
    font-weight: 700;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.step.active {
    color: var(--gold);
    font-weight: 600;
}

.step .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.step.active .step-number {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.step.completed .step-number {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-info-card {
    background: var(--navy);
    color: var(--white);
    padding: 35px;
    border-radius: 5px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 3px;
    min-width: 25px;
}

.contact-info-item h6 {
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info-item p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 0.95rem;
}

.contact-info-item a {
    color: rgba(255,255,255,0.85);
}

.contact-info-item a:hover {
    color: var(--gold);
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-directions:hover {
    background: var(--gold-light);
    color: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-section h5 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    min-width: 18px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

.whatsapp-btn .whatsapp-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* ========================================
   POPUP MODAL
   ======================================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-modal {
    background: var(--white);
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    z-index: 1;
    line-height: 1;
}

.popup-close:hover { color: var(--navy); }

.popup-modal img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.popup-content {
    padding: 25px 30px 30px;
}

.popup-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.popup-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   EVENT PAGE
   ======================================== */
.event-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.event-type-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-type-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.event-type-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.event-type-card h6 {
    font-family: var(--font-heading);
    color: var(--navy);
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-page-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
}

.about-page-content img {
    border-radius: 5px;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   ANIMATIONS (Subtle fade-in)
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   ALERT MESSAGES
   ======================================== */
.alert-custom {
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    font-size: 0.95rem;
}

.alert-success-custom {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.alert-error-custom {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .navbar-collapse {
        background: rgba(14,28,54,0.98);
        padding: 15px 20px;
        margin-top: 10px;
        border-radius: 5px;
    }
    .lang-toggle { margin-left: 0; margin-top: 10px; }
}

@media (max-width: 767px) {
    .hero-content h1 { font-size: 2rem; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.8rem; }
    .page-header { padding: 120px 0 40px; }
    .page-header h1 { font-size: 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .menu-card-img { height: 160px; }
    .footer-section { margin-bottom: 30px; }
    .whatsapp-btn { width: 55px; height: 55px; font-size: 1.6rem; bottom: 20px; right: 20px; }
    .cta-section h2 { font-size: 1.8rem; }
    .form-section { padding: 0 10px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.6rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .step-indicator { flex-direction: column; gap: 10px; }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-navy { background-color: var(--navy); }
.bg-gold { background-color: var(--gold); }
.mb-section { margin-bottom: 80px; }
.letter-spacing-1 { letter-spacing: 1px; }
.letter-spacing-2 { letter-spacing: 2px; }

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
