/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d9a3;
    --secondary-color: #2c3e50;
    --dark-bg: #ffffff;
    --card-bg: #ffffff;
    --text-color: #333333;
    --text-muted: #666666;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --black: #0a0a0a;
    --danger: #ff4757;
    --success: #00d9a3;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --glow: 0 0 20px rgba(0, 217, 163, 0.3);
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--dark-bg);
    transition: background 0.3s, color 0.3s;
}

/* Dark Theme */
body.dark-theme {
    --secondary-color: #1a1a1a;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --light-bg: #0f0f0f;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
    --border-color: rgba(255, 255, 255, 0.1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Navigation */
.main-header {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logo img {
    height: 60px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: transparent;
    border: 2px solid var(--border-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--text-color);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(180deg);
}

.btn-order {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00c896 100%);
    color: #ffffff !important;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 217, 163, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-order:hover::before {
    left: 100%;
}

body.dark-theme .btn-order {
    color: #ffffff !important;
}

.btn-order:hover {
    box-shadow: 0 6px 25px rgba(0, 217, 163, 0.5);
    transform: translateY(-3px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: var(--dark-bg);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--text-color);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    width: 500px;
    height: 400px;
    border: 3px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--card-bg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 163, 0.1);
    color: var(--primary-color);
    text-align: center;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .image-frame {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

body.dark-theme .btn-primary {
    color: #0a0a0a;
}

.btn-primary:hover {
    box-shadow: var(--glow);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

body.dark-theme .btn-secondary {
    color: var(--white);
}

body.dark-theme .btn-secondary:hover {
    color: var(--black);
}

.btn-small {
    padding: 0.7rem 1.8rem !important;
    font-size: 0.9rem !important;
    background: linear-gradient(135deg, #00d9a3 0%, #00c896 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 12px rgba(0, 217, 163, 0.4) !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    position: relative !important;
    z-index: 10 !important;
}

.btn-small:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(0, 217, 163, 0.6) !important;
    background: linear-gradient(135deg, #00e6b0 0%, #00d9a3 100%) !important;
    color: #ffffff !important;
}

body.dark-theme .btn-small {
    background: linear-gradient(135deg, #00d9a3 0%, #00c896 100%) !important;
    color: #ffffff !important;
}

body.dark-theme .btn-small:hover {
    background: linear-gradient(135deg, #00e6b0 0%, #00d9a3 100%) !important;
    color: #ffffff !important;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-color);
    padding: 5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

body.dark-theme .page-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--card-bg) 100%);
    color: var(--white);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-section {
    background: var(--light-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Social Media Section on About Page */
.social-media-section {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    background: var(--card-bg);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 217, 163, 0.3);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.menu-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 217, 163, 0.2);
}

.menu-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.menu-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.menu-card-content {
    padding: 2rem;
}

.category-badge {
    background: rgba(0, 217, 163, 0.15);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-card h3 {
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.menu-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.menu-card-footer .btn-small,
.menu-card-footer a.btn-small {
    background: linear-gradient(135deg, #00d9a3 0%, #00c896 100%) !important;
    color: #ffffff !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 12px rgba(0, 217, 163, 0.4) !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 0.9rem !important;
}

.menu-card-footer .btn-small:hover,
.menu-card-footer a.btn-small:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(0, 217, 163, 0.6) !important;
    background: linear-gradient(135deg, #00e6b0 0%, #00d9a3 100%) !important;
    color: #ffffff !important;
}

body.dark-theme .menu-card-footer .btn-small,
body.dark-theme .menu-card-footer a.btn-small {
    background: linear-gradient(135deg, #00d9a3 0%, #00c896 100%) !important;
    color: #ffffff !important;
}

body.dark-theme .menu-card-footer .btn-small:hover,
body.dark-theme .menu-card-footer a.btn-small:hover {
    background: linear-gradient(135deg, #00e6b0 0%, #00d9a3 100%) !important;
    color: #ffffff !important;
}

.price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.services-section {
    background: var(--light-bg);
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 217, 163, 0.15);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Menu Page */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.menu-list {
    max-width: 1000px;
    margin: 0 auto;
}

.category-title {
    margin: 4rem 0 2.5rem;
}

.category-title h2 {
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.menu-item {
    display: flex;
    gap: 2.5rem;
    background: var(--card-bg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.menu-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 217, 163, 0.15);
}

.menu-item-image {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item-details {
    flex: 1;
}

.menu-item-details .btn.btn-small {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #00d9a3 0%, #00c896 100%) !important;
    color: #ffffff !important;
    padding: 0.8rem 2.5rem !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 217, 163, 0.4) !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 0.95rem !important;
}

.menu-item-details .btn.btn-small:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 25px rgba(0, 217, 163, 0.6) !important;
    background: linear-gradient(135deg, #00e6b0 0%, #00d9a3 100%) !important;
}

body.dark-theme .menu-item-details .btn.btn-small {
    background: linear-gradient(135deg, #00d9a3 0%, #00c896 100%) !important;
    color: #ffffff !important;
}

body.dark-theme .menu-item-details .btn.btn-small:hover {
    background: linear-gradient(135deg, #00e6b0 0%, #00d9a3 100%) !important;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.menu-item-header h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.description {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.ingredients {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.menu-item-meta {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.menu-item-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.allergens {
    color: var(--danger);
}

/* Forms */
.reservation-section,
.contact-section {
    background: var(--light-bg);
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.reservation-form-container,
.contact-form-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.reservation-form-container h2,
.contact-form-container h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--dark-bg);
    color: var(--text-color);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 217, 163, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.info-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.info-card:hover {
    border-color: var(--primary-color);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.info-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 0.5rem 0;
    color: var(--text-muted);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Alerts */
.alert {
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(0, 217, 163, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.alert-error {
    background: rgba(255, 71, 87, 0.1);
    color: var(--danger);
    border-color: var(--danger);
}

/* Feature Sections - New Clean Style */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
}

.feature-category {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    min-height: 100px;
}

.feature-category h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: capitalize;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

.feature-item-check i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

/* Make sure the section is visible */
.services-section {
    background: var(--dark-bg);
    padding: 4rem 0;
    min-height: 400px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-category {
        padding: 1.25rem;
    }
}

/* Testimonial Section */
.testimonial-section {
    background: var(--light-bg);
    padding: 4rem 0;
}

.testimonial-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.testimonial-form .form-group {
    margin-bottom: 1.5rem;
}

.rating-input select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--dark-bg);
    color: var(--text-color);
    transition: all 0.3s;
}

.rating-input select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 217, 163, 0.1);
}

.testimonial-form button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00c896 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.testimonial-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 217, 163, 0.4);
}

/* Testimonials Display - Card/Table Style */
.testimonials-section {
    background: var(--dark-bg);
    padding: 5rem 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 217, 163, 0.15);
    transform: translateY(-5px);
}

.testimonial-card-header {
    background: rgba(0, 217, 163, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.testimonial-card-header h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.testimonial-underline {
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.testimonial-item span {
    flex: 1;
}

.testimonial-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-cta:hover {
    border-color: var(--primary-color);
    background: rgba(0, 217, 163, 0.05);
}

.testimonial-cta h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonial-cta p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.testimonial-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 217, 163, 0.3);
}

.testimonial-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 163, 0.4);
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card-header {
        padding: 1.25rem;
    }
    
    .testimonial-content {
        padding: 1.25rem;
    }
    
    .testimonial-cta {
        padding: 2rem 1.5rem;
    }
}

/* Legacy feature sections - keep for backward compatibility */
.feature-section {
    margin-bottom: 3rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.feature-section h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-section h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 217, 163, 0.05);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
    border: 1px solid rgba(0, 217, 163, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 217, 163, 0.1);
    border-color: rgba(0, 217, 163, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Footer */
.main-footer {
    background: var(--card-bg);
    color: var(--text-muted);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(0, 217, 163, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(0, 217, 163, 0.2);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: start;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

/* Selected Item Card */
.selected-item-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 217, 163, 0.2);
}

.selected-item-card h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.selected-item-card img {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .selected-item-card {
        flex-direction: column;
        text-align: center;
    }
    
    .selected-item-card img {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Menu Item Anchor Targeting */
.menu-item[id] {
    scroll-margin-top: 100px; /* Account for fixed header */
}

/* Responsive */
@media (max-width: 768px) {
    .main-header .navbar .container {
        padding: 0 16px;
    }

    .nav-wrapper {
        gap: 0.5rem;
        padding: 0.35rem 0;
        position: relative;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .logo img {
        height: 38px !important;
    }

    .logo-text,
    .logo h2 {
        font-size: 1.15rem;
    }

    .logo-container {
        gap: 0.35rem;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        padding: 4px;
        order: 3;
    }

    .mobile-menu-toggle span {
        width: 22px;
    }

    .nav-actions {
        width: auto;
        margin-top: 0;
        gap: 0.4rem;
        flex-shrink: 0;
        order: 2;
    }

    .btn-order {
        display: none !important;
    }

    .theme-toggle {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 1.25rem 1.25rem;
        box-shadow: var(--shadow);
        display: none;
        border-top: 1px solid var(--border-color);
        gap: 0;
        order: 4;
        z-index: 1001;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.65rem 0;
        font-size: 0.95rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a::after {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item-image {
        width: 100%;
        height: 250px;
    }
    
    .reservation-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 32px !important;
    }

    .logo-text,
    .logo h2 {
        font-size: 1rem;
    }

    .nav-wrapper {
        padding: 0.25rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .reservation-form-container,
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}
