* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #3a2a1a;
    overflow-x: hidden;
}

/* Generic layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 5% 3rem;
    /* account for fixed nav */
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mt-1 {
    margin-top: .5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.flex {
    display: flex;
}

.gap-1 {
    gap: .5rem;
}

.gap-2 {
    gap: 1rem;
}

/* Buttons */
.btn-inline {
    display: inline-block;
}

.btn-dark {
    background: #3a2a1a;
    color: #fff;
}

.btn-dark:hover {
    background: #2a1a0a;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: .4rem;
}

.form-control,
textarea {
    width: 100%;
    padding: .7rem .9rem;
    border: 1px solid #d9d2c6;
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
}

.form-check {
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.table th,
.table td {
    padding: .9rem 1rem;
    border-bottom: 1px solid #eee4d8;
    text-align: left;
}

.table thead th {
    background: #f8f5f0;
    font-weight: 700;
}

.table tr:hover {
    background: #fdfaf5;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(58, 42, 26, 0.95);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1001;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.logo-icon-img {
    height: 50px;
    width: auto;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-text-span {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Georgia', serif;
    white-space: nowrap;
    line-height: 1.2;
}

.logo-tagline {
    color: #d4af37;
    font-size: 0.65rem;
    font-weight: 300;
    font-family: 'Cormorant Garamond', 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0.9;
}

/* Mobile logo - smaller */
@media (max-width: 768px) {
    .logo-icon-img {
        height: 35px;
    }

    .logo-text-span {
        font-size: 1.1rem;
    }

    .logo-tagline {
        font-size: 0.5rem;
        letter-spacing: 0.3px;
    }

    .logo-link {
        gap: 0.5rem;
    }
}

.logo-text {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 10px;
    background: transparent;
    border: none;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .nav-overlay {
        z-index: 999 !important;
    }

    .nav-overlay.active {
        z-index: 999 !important;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a.active {
    color: #d4af37;
}

.btn-reservasi {
    background: #d4af37;
    color: #3a2a1a;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-reservasi:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Mobile Navigation Close Button */
.nav-close-container {
    display: none;
    /* Hidden on desktop */
}

.nav-close-btn {
    background: transparent;
    border: none;
    color: #d4af37;
    cursor: pointer;
    padding: 0.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-close-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: rotate(90deg);
}

.nav-close-btn:active {
    transform: rotate(90deg) scale(0.9);
}


/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(58, 42, 26, 0.6), rgba(58, 42, 26, 0.6)), url('/images/bg1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 5%;
}

.hero-subtitle {
    color: #d4af37;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: normal;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #d4af37;
    color: #3a2a1a;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 6rem 5%;
    background: #f8f5f0;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3a2a1a;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #3a2a1a;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item::before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    background: #9b7a5c;
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

/* Values Section */
.values {
    padding: 6rem 5%;
    background: white;
}

.values-header {
    text-align: center;
    margin-bottom: 1rem;
}

.values-subtitle {
    color: #d4af37;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.values h2 {
    font-size: 2.5rem;
    color: #3a2a1a;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #3a2a1a;
}

.value-card p {
    line-height: 1.7;
    color: #666;
    font-size: 0.95rem;
}

/* Menu Section */
.menu-section {
    padding: 6rem 5%;
    background: #f8f5f0;
}

.menu-header {
    text-align: center;
    margin-bottom: 1rem;
}

.menu-header h2 {
    font-size: 2.5rem;
    color: #3a2a1a;
    margin-bottom: 1rem;
}

.menu-header p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.menu-image {
    height: 250px;
    background: #9b7a5c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.menu-content {
    padding: 2rem;
}

.menu-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3a2a1a;
}

.menu-content p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-label {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-pesan {
    background: #3a2a1a;
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-pesan:hover {
    background: #2a1a0a;
    transform: scale(1.05);
}

/* Menu Toggle Button & Description */
.menu-toggle-btn {
    width: 100%;
    background: #f8f5f0;
    border: 1px solid #d4af37;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    color: #3a2a1a;
    transition: all 0.3s ease;
}

.menu-toggle-btn:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.menu-toggle-btn.active {
    background: #d4af37;
    color: white;
}

.toggle-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.menu-description {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f5f0;
    border-radius: 8px;
    border-left: 3px solid #d4af37;
    animation: slideDown 0.3s ease;
}

.menu-description p {
    margin: 0;
    line-height: 1.7;
    color: #555;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* Improve hero subtitle on mobile */
    .hero-subtitle {
        letter-spacing: 2px;
        /* Reduced from 3px */
        font-size: 0.9rem;
    }

    /* Better hero description */
    .hero-description {
        font-size: 1rem;
        max-width: 90%;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    /* Facilities grid - 1 column on mobile */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Gallery - keep 2 columns on mobile for better layout */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        height: 180px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    /* Improve button touch targets */
    .btn {
        padding: 1.1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        /* Ensure minimum touch target */
    }

    /* Better container padding on mobile */
    .container {
        padding: 5rem 1.5rem 2.5rem;
    }
}

/* Extra sections */
.split-section {
    padding: 6rem 5%;
    background: #fff;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split-media {
    background: #9b7a5c;
    height: 320px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.feat {
    background: #f8f5f0;
    padding: 1rem;
    border-radius: 10px;
}

.gallery {
    padding: 6rem 5%;
    background: #f8f5f0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    background: #ddd;
    border-radius: 10px;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.contact {
    padding: 6rem 5%;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact .card {
    padding: 2rem;
}

.contact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 992px) {
    .split {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Facilities grid - 2 columns on tablet */
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-page {
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, #f8f5f0 0%, #fff 100%);
    min-height: 100vh;
}

.contact-page .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease;
}

.contact-header h1 {
    font-size: 3rem;
    color: #3a2a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.contact-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4cf67);
    border-radius: 2px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    animation: fadeInLeft 0.8s ease;
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

/* Contact Map Card */
.contact-map-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    animation: fadeInRight 0.8s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}

.contact-map-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.contact-map-card .contact-card-header {
    padding: 2rem 2.5rem 1.5rem;
    margin-bottom: 0;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    grid-column: 1 / -1;
    animation: fadeInUp 0.8s ease;
}

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

/* Card Header */
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f5f0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4cf67);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

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

.contact-card-header h3 {
    font-size: 1.8rem;
    color: #3a2a1a;
    margin: 0;
    font-weight: 700;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1;
}

.contact-detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: #f8f5f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    background: linear-gradient(135deg, #f8f5f0, #fff);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4af37, #f4cf67);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.detail-icon svg {
    width: 22px;
    height: 22px;
}

.detail-content h4 {
    font-size: 1rem;
    color: #3a2a1a;
    margin: 0 0 0.4rem 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Social Media Links */
.social-media-links {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f8f5f0;
}

.social-media-links h4 {
    font-size: 1rem;
    color: #3a2a1a;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-media-links .social-links {
    display: flex;
    gap: 1rem;
}

.social-media-links .social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4cf67);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.social-media-links .social-icon:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Map Container */
.map-container {
    flex: 1;
    min-height: 350px;
    background: #f8f5f0;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-footer {
    padding: 1.2rem 2rem;
    background: #f8f5f0;
}

.map-footer .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3a2a1a, #5a4a3a);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.map-footer .btn:hover {
    background: linear-gradient(135deg, #2a1a0a, #4a3a2a);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Contact Form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.contact-form .form-group:nth-child(4),
.contact-form .form-group:nth-child(5) {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #3a2a1a;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-control,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e8e4dc;
    border-radius: 12px;
    background: #f8f5f0;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #3a2a1a;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

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

.contact-form button[type="submit"] {
    grid-column: 1 / -1;
    margin-top: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #d4af37, #f4cf67);
    color: #3a2a1a;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4cf67, #d4af37);
}

/* Animations */
@keyframes fadeInDown {
    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);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form .form-group:nth-child(4),
    .contact-form .form-group:nth-child(5) {
        grid-column: 1;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 4rem 1.5rem 3rem;
    }

    .contact-header {
        margin-bottom: 2.5rem;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-cards-grid {
        gap: 1.5rem;
    }

    .contact-info-card,
    .contact-map-card,
    .contact-form-card {
        padding: 2rem;
    }

    .contact-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-card-header h3 {
        font-size: 1.5rem;
    }

    .contact-details {
        gap: 1.5rem;
    }

    .contact-detail-item {
        padding: 1.2rem;
    }

    .map-container {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 1.7rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
    }

    .detail-icon svg {
        width: 20px;
        height: 20px;
    }

    .social-media-links .social-icon {
        width: 45px;
        height: 45px;
    }
}

/* Facilities Section */
.facilities-section {
    padding: 6rem 5%;
    background: white;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.facility-card {
    background: #f8f5f0;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.facility-card:hover {
    transform: translateY(-10px);
    background: white;
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.facility-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.facility-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3a2a1a;
}

.facility-card p {
    line-height: 1.7;
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 5%;
    background: #f8f5f0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: #d4af37;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f8f5f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-author h5 {
    margin: 0 0 0.3rem 0;
    color: #3a2a1a;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #3a2a1a 0%, #5a4a3a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/pattern.png') repeat;
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #2a1a0a;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo-main-text {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Georgia', serif;
    line-height: 1.2;
}

.footer-logo-tagline {
    color: #d4af37;
    font-size: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Mobile footer logo - smaller */
@media (max-width: 768px) {
    .footer-logo img {
        height: 40px;
    }

    .footer-logo-main-text {
        font-size: 1.3rem;
    }

    .footer-logo-tagline {
        font-size: 0.6rem;
    }
}

.footer-tagline {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item .day {
    color: rgba(255, 255, 255, 0.7);
}

.hour-item .time {
    color: #d4af37;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-item svg {
    color: #d4af37;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #d4af37;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Card Hover Effects */
.menu-card,
.facility-card,
.testimonial-card {
    cursor: pointer;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Navigation Mobile */
    .hamburger {
        display: flex !important;
    }

    nav .nav-links,
    ul.nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        bottom: 0 !important;
        left: auto !important;
        height: 100vh !important;
        width: 280px !important;
        max-width: 80vw !important;
        background: rgba(58, 42, 26, 0.98) !important;
        backdrop-filter: blur(10px);
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 80px 2rem 2rem !important;
        margin: 0 !important;
        gap: 0 !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 1001 !important;
        pointer-events: auto !important;
    }

    nav .nav-links.active,
    ul.nav-links.active {
        right: 0 !important;
        display: flex !important;
        z-index: 1001 !important;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        list-style: none;
    }

    /* Show close button in mobile */
    .nav-close-container {
        display: block !important;
        border-bottom: none !important;
        margin-bottom: 0.5rem;
    }


    .nav-links a {
        display: block;
        padding: 1.2rem 0;
        width: 100%;
        font-size: 0.95rem;
        pointer-events: auto !important;
        cursor: pointer;
        position: relative;
        z-index: 1;
    }

    .btn-reservasi {
        margin-top: 1rem;
        text-align: center;
        border-radius: 8px;
        display: block;
        pointer-events: auto !important;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 0 1.5rem;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.9rem 2rem;
    }

    /* Sections Mobile */
    .about,
    .menu-section,
    .facilities-section,
    .testimonials,
    .cta-section,
    .gallery {
        padding: 3rem 1.5rem;
    }

    .menu-header h2,
    .about-header h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .menu-header p,
    .about-header p {
        font-size: 1rem;
    }

    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 250px;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    /* Values Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    /* Menu Grid Mobile */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-card {
        max-width: 100%;
    }

    .menu-content {
        padding: 1.5rem;
    }

    /* Facilities Mobile */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .facility-card {
        padding: 2rem 1.5rem;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .gallery-item {
        height: 150px;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card::before {
        font-size: 4rem;
        top: -10px;
        left: 20px;
    }

    /* CTA Mobile */
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-large {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-tagline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-bottom-links {
        font-size: 0.85rem;
    }

    /* Container Mobile */
    .container {
        padding: 4rem 1.5rem 2rem;
    }

    /* Split Section Mobile */
    .split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .split-media {
        height: 250px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        /* Slightly larger for readability */
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        /* Further reduced for very small screens */
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .menu-header h2,
    .about-header h2,
    .cta-content h2 {
        font-size: 1.6rem;
        /* Slightly larger for better hierarchy */
    }

    .btn {
        padding: 1rem 1.8rem;
        /* Better touch target */
        font-size: 0.95rem;
        min-height: 48px;
        /* Ensure minimum touch target */
    }

    /* Keep gallery 2-column for better layout */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-item {
        height: 160px;
        /* Slightly smaller for very small screens */
    }

    /* Ensure facilities stay 1-column */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .facility-card {
        padding: 2rem 1.5rem;
    }

    .nav-links {
        width: 85%;
        max-width: none;
    }
}

/* Social Media Icons - Remove Underline */
.social-links a,
.social-icon {
    text-decoration: none !important;
}

.social-links a:hover,
.social-icon:hover {
    text-decoration: none !important;
    opacity: 0.8;
}

/* About Section Responsive */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    max-width: 100%;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-text p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive for About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 250px;
        order: -1;
        /* Gambar di atas pada mobile */
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}

/* Contact Page Spacing */
.contact-page {
    padding-top: 120px;
    padding-bottom: 60px;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-page {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }
}

/* Extra Small Mobile Devices (320px) - Fix overflow issues */
@media (max-width: 320px) {

    /* Fix hero text overflow below navbar */
    .hero {
        padding: 0 3%;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.65rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
        max-width: 95%;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        width: 100%;
        gap: 0.75rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
        min-height: 44px;
    }

    /* Fix contact page cards overflow */
    .contact-page {
        padding: 4rem 0.8rem 2rem;
        /* Reduced side padding */
        box-sizing: border-box;
    }

    .contact-header h1 {
        font-size: 1.5rem;
        /* Smaller */
    }

    .contact-header p {
        font-size: 0.85rem;
        /* Smaller */
    }

    .contact-info-card,
    .contact-map-card,
    .contact-form-card {
        padding: 1.2rem 0.8rem;
        /* Reduced padding */
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .contact-card-header {
        margin-bottom: 1rem;
    }

    .contact-card-header h3 {
        font-size: 1.1rem;
        /* Smaller */
    }

    .contact-icon {
        width: 45px;
        /* Smaller */
        height: 45px;
    }

    .contact-icon svg {
        width: 22px;
        /* Smaller */
        height: 22px;
    }

    .contact-detail-item {
        padding: 0.8rem;
        /* Reduced */
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        /* Reduced */
        max-width: 100%;
        box-sizing: border-box;
    }

    .detail-icon {
        width: 32px;
        /* Smaller */
        height: 32px;
    }

    .detail-icon svg {
        width: 16px;
        /* Smaller */
        height: 16px;
    }

    .detail-content {
        max-width: 100%;
        overflow: hidden;
    }

    .detail-content h4 {
        font-size: 0.9rem;
        /* Smaller */
        margin-bottom: 0.3rem;
    }

    .detail-content p {
        font-size: 0.75rem;
        /* Smaller */
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Fix contact form */
    .contact-form {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        /* Reduced */
    }

    .contact-form .form-group:nth-child(4),
    .contact-form .form-group:nth-child(5) {
        grid-column: 1;
    }

    .contact-form label {
        font-size: 0.85rem;
        /* Smaller */
        margin-bottom: 0.5rem;
    }

    .contact-form .form-control,
    .contact-form textarea,
    .contact-form select {
        padding: 0.7rem 0.9rem;
        /* Reduced */
        font-size: 0.85rem;
        /* Smaller */
    }

    .contact-form button[type="submit"] {
        padding: 0.9rem 1.3rem;
        /* Reduced */
        font-size: 0.9rem;
        /* Smaller */
    }

    /* Fix social media links */
    .social-media-links h4 {
        font-size: 0.95rem;
        /* Smaller */
    }

    .social-icon {
        width: 38px;
        /* Smaller */
        height: 38px;
        font-size: 1rem;
        /* Smaller */
    }

    /* Fix map container */
    .map-container {
        min-height: 220px;
        /* Smaller */
    }

    .map-footer .btn {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    /* Fix menu cards */
    .menu-header h2 {
        font-size: 1.4rem;
    }

    .menu-header p {
        font-size: 0.95rem;
    }

    .menu-card {
        margin-bottom: 1rem;
    }

    .menu-content h3 {
        font-size: 1.2rem;
    }

    /* Fix testimonials */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-author h5 {
        font-size: 0.95rem;
    }

    /* Fix CTA section */
    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    /* Fix container */
    .container {
        padding: 4rem 1rem 2rem;
    }

    /* Fix about section */
    .about-header h2 {
        font-size: 1.4rem;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.85rem;
    }

    /* Fix gallery */
    .gallery-item {
        height: 140px;
    }

    /* Fix facilities */
    .facility-card h4 {
        font-size: 1rem;
        /* Reduced from 1.1rem */
    }

    .facility-card p {
        font-size: 0.8rem;
        /* Reduced from 0.85rem */
        line-height: 1.4;
    }

    /* Additional card adjustments for carousel */
    .menu-card {
        border-radius: 10px;
    }

    .menu-content {
        padding: 1rem;
        /* Reduced from 1.2rem */
    }

    .menu-content h3 {
        font-size: 1rem;
        /* Reduced from 1.1rem */
        margin-bottom: 0.5rem;
    }

    .menu-toggle-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        /* Reduced */
    }

    .facility-card {
        padding: 1.2rem 0.8rem;
        /* Reduced from 1.5rem 1rem */
    }

    .facility-icon {
        font-size: 2rem;
        /* Reduced from 2.5rem */
        height: 50px;
        /* Reduced from 60px */
        margin-bottom: 0.8rem;
        /* Reduced from 1rem */
    }

    .testimonial-card {
        padding: 1.2rem 0.8rem;
        /* Reduced from 1.5rem 1rem */
    }

    .testimonial-text {
        font-size: 0.8rem;
        /* Reduced from 0.85rem */
        line-height: 1.4;
        /* Reduced from 1.5 */
        margin-bottom: 0.8rem;
        /* Reduced from 1rem */
    }

    .testimonial-author {
        gap: 0.4rem;
        /* Reduced from 0.5rem */
    }

    .author-avatar {
        width: 30px;
        /* Reduced from 35px */
        height: 30px;
        font-size: 1rem;
        /* Reduced from 1.2rem */
    }

    .testimonial-author h5 {
        font-size: 0.9rem;
        /* Reduced from 0.95rem */
        margin-bottom: 0.2rem;
    }

    .testimonial-author span {
        font-size: 0.75rem;
        /* Reduced from 0.8rem */
    }

    .stars {
        font-size: 0.85rem;
        /* Reduced from 0.9rem */
        margin-bottom: 0.6rem;
        /* Reduced from 0.8rem */
    }
}