/* ===================================
   Stat Grill Clean - Styles
   =================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: #ffffff;
}

.hero .btn-outline {
    color: #ffffff;
    border-color: #ffffff;
}

.hero .btn-outline:hover {
    background: #ffffff;
    color: #1a1a2e;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    gap: 16px;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #ff9a2e;
    padding: 10px 24px 8px;
    background: linear-gradient(135deg, #0d0d1a 0%, #141428 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 154, 46, 0.15);
    transform: rotate(-2deg);
    box-shadow:
        0 0 6px rgba(255, 154, 46, 0.15),
        0 0 16px rgba(255, 154, 46, 0.06);
    animation: neonPulse 3s ease-in-out infinite alternate;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-logo:hover {
    transform: rotate(-2deg) scale(1.04);
    box-shadow:
        0 0 10px rgba(255, 154, 46, 0.25),
        0 0 24px rgba(255, 154, 46, 0.12);
}

.nav-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow:
        0 0 6px rgba(255, 154, 46, 0.9),
        0 0 16px rgba(255, 154, 46, 0.5),
        0 0 36px rgba(255, 120, 20, 0.25);
}

.nav-logo:hover .nav-logo-text {
    color: #ffb05e;
    text-shadow:
        0 0 8px rgba(255, 154, 46, 1),
        0 0 22px rgba(255, 154, 46, 0.7),
        0 0 44px rgba(255, 120, 20, 0.35);
}

.nav-logo-icons {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-icon-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 12px;
}

.nav-grill-icon {
    width: 32px;
    height: 26px;
    color: #ff9a2e;
    filter: drop-shadow(0 0 3px rgba(255, 154, 46, 0.7));
    transition: filter 0.3s;
}

.nav-icon-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 154, 46, 0.7);
    text-shadow: 0 0 4px rgba(255, 154, 46, 0.4);
}

.nav-icon-pipe {
    color: rgba(255, 154, 46, 0.35);
    font-size: 1.4rem;
    font-weight: 200;
    line-height: 1;
    align-self: center;
    text-shadow: 0 0 4px rgba(255, 154, 46, 0.3);
}

.nav-logo:hover .nav-grill-icon {
    color: #ffb05e;
    filter: drop-shadow(0 0 5px rgba(255, 154, 46, 0.9));
}

.nav-logo:hover .nav-icon-label {
    color: rgba(255, 176, 94, 0.85);
}

.nav-logo:hover .nav-icon-pipe {
    color: rgba(255, 176, 94, 0.5);
}

@keyframes neonPulse {
    0% {
        text-shadow:
            0 0 6px rgba(255, 154, 46, 0.9),
            0 0 16px rgba(255, 154, 46, 0.5),
            0 0 36px rgba(255, 120, 20, 0.25);
    }
    50% {
        text-shadow:
            0 0 4px rgba(255, 154, 46, 0.6),
            0 0 10px rgba(255, 154, 46, 0.3),
            0 0 22px rgba(255, 120, 20, 0.12);
    }
    100% {
        text-shadow:
            0 0 8px rgba(255, 170, 50, 0.95),
            0 0 20px rgba(255, 170, 50, 0.55),
            0 0 42px rgba(255, 130, 20, 0.3);
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: #2563eb;
    background: #f0f4ff;
}

.nav-cta {
    margin-left: 8px;
    color: #ffffff !important;
}

.nav-cta:hover {
    background: #1d4ed8 !important;
    color: #ffffff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1505405241694-58823de133e1?w=1920&q=80&fit=crop') center/cover no-repeat;
    text-align: center;
    position: relative;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 36px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-service-area {
    margin-top: 28px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
}

/* --- Sections --- */
.section {
    padding: 96px 0;
}

.section-alt {
    background: #f8fafc;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

/* --- About / Story --- */
.about-story {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.about-story p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-story p:last-child {
    margin-bottom: 0;
}

.about-story strong {
    color: #1a1a2e;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 36px 28px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* --- Services / Pricing --- */
.grill-types {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.grill-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.grill-type-icon {
    width: 100px;
    height: 84px;
}

.grill-type-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
}

.grill-type-divider {
    width: 1px;
    height: 80px;
    background: #d1d5db;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .grill-types {
        gap: 16px;
        padding: 20px 16px;
    }

    .grill-type-icon {
        width: 64px;
        height: 54px;
    }

    .grill-type-label {
        font-size: 0.8rem;
    }

    .grill-type-divider {
        height: 60px;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.pricing-featured {
    border-color: #2563eb;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 20px;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    color: #4b5563;
    font-size: 0.95rem;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "\2713";
    color: #22c55e;
    font-weight: 700;
    margin-right: 10px;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
}

.pricing-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 4px;
    font-style: italic;
}

.pricing-badge-sub {
    background: #059669;
}

.pricing-toggle {
    cursor: pointer;
}

.pricing-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.pricing-options.open {
    max-height: 200px;
    margin-top: 16px;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
    font-size: 0.95rem;
    color: #1a1a2e;
}

.pricing-option:last-child {
    margin-bottom: 0;
}

.pricing-option:hover {
    background: #f0f4ff;
    border-color: #2563eb;
}

.pricing-option strong {
    color: #2563eb;
    font-size: 1.05rem;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gallery-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.gallery-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.gallery-label {
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.gallery-comparison {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gallery-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.gallery-img-wrapper.gallery-img-wrapper-square {
    aspect-ratio: 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-img-rotate {
    transform: rotate(-90deg) scale(1.4);
}

.gallery-img-rotate-right {
    transform: rotate(90deg) scale(1.4);
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.gallery-badge-before {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35);
}

.gallery-badge-after {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.35);
}

.gallery-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.6;
}

.gallery-arrow {
    flex-shrink: 0;
    font-size: 1.4rem;
    color: #2563eb;
    font-weight: 700;
    align-self: center;
}

.gallery-note {
    text-align: center;
    color: #9ca3af;
    font-size: 0.85rem;
    margin-top: 28px;
}

.gallery-note code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.gallery-clickable {
    cursor: pointer;
    transition: opacity 0.2s, filter 0.2s;
}

.gallery-img-wrapper:hover .gallery-clickable {
    opacity: 0.9;
    filter: brightness(1.05);
}

.gallery-img-wrapper:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 32px;
    animation: lightboxFadeIn 0.25s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
    z-index: 2001;
}

.lightbox-close:hover {
    color: #fbbf24;
    transform: scale(1.15);
}

.lightbox-content {
    max-width: 720px;
    width: 100%;
    text-align: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 65vh;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    margin-bottom: 24px;
}

.lightbox-img.lightbox-img-rotate {
    transform: rotate(-90deg);
    max-height: 55vh;
}

.lightbox-img.lightbox-img-rotate-right {
    transform: rotate(90deg);
    max-height: 55vh;
}

.lightbox-text {
    color: #ffffff;
}

.lightbox-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fbbf24;
}

.lightbox-caption {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .lightbox {
        padding: 16px;
    }

    .lightbox-img {
        max-height: 50vh;
    }

    .lightbox-label {
        font-size: 1.1rem;
    }

    .lightbox-caption {
        font-size: 0.9rem;
    }
}

/* --- Reviews --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.review-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.review-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
}

.review-source {
    font-size: 0.8rem;
    color: #9ca3af;
}

.reviews-cta {
    text-align: center;
}

.fb-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #1877f2;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
}

.fb-review-btn:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.35);
    color: #ffffff;
}

.fb-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto 40px;
    }
}

/* --- Booking --- */
.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-iframe {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.booking-alt {
    text-align: center;
    margin-top: 20px;
    color: #6b7280;
    font-size: 0.95rem;
}

.booking-alt a {
    color: #2563eb;
}

.booking-alt a:hover {
    text-decoration: underline;
}

.booking-placeholder {
    text-align: center;
    padding: 64px 32px;
    background: #ffffff;
    border: 2px dashed #d1d5db;
    border-radius: 16px;
}

.booking-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.booking-placeholder h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.booking-placeholder p {
    color: #6b7280;
    margin-bottom: 12px;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a2e;
}

.contact-item p {
    color: #4b5563;
}

.contact-item a {
    color: #2563eb;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-group textarea {
    resize: vertical;
}

/* --- Footer --- */
.footer {
    background: #1a1a2e;
    color: #d1d5db;
    padding: 64px 0 24px;
}

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

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #374151;
    border-radius: 8px;
    color: #9ca3af;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #2d2d44;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
}

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

    .nav-logo {
        padding: 6px 10px 5px;
        gap: 3px;
    }

    .nav-logo-text {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .nav-grill-icon {
        width: 18px;
        height: 15px;
    }

    .nav-icon-group {
        padding: 0 5px;
    }

    .nav-icon-label {
        font-size: 0.4rem;
    }

    .nav-icon-pipe {
        font-size: 0.9rem;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }

    .hero {
        padding: 130px 0 72px;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .gallery-card {
        padding: 18px 14px;
    }

    .gallery-comparison {
        gap: 6px;
    }

    .gallery-arrow {
        font-size: 1.1rem;
    }

    .gallery-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
    }

    .gallery-label {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .booking-iframe {
        height: 520px;
        border-radius: 12px;
    }

    .hero-service-area {
        font-size: 0.85rem;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 80px;
    }

    .nav-logo {
        padding: 5px 8px 4px;
    }

    .nav-logo-text {
        font-size: 0.85rem;
    }

    .nav-grill-icon {
        width: 14px;
        height: 12px;
    }

    .nav-icon-group {
        padding: 0 3px;
    }

    .nav-icon-label {
        font-size: 0.35rem;
    }

    .nav-icon-pipe {
        font-size: 0.7rem;
    }

    .nav-menu {
        top: 80px;
    }

    .hero {
        padding: 110px 0 60px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-service-area {
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 36px;
    }

    .gallery-grid {
        max-width: 100%;
    }

    .gallery-card {
        padding: 14px 10px;
    }

    .gallery-comparison {
        gap: 4px;
    }

    .gallery-arrow {
        font-size: 0.9rem;
    }

    .gallery-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .gallery-label {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .booking-iframe {
        height: 450px;
    }

    .review-card {
        padding: 24px 20px;
    }

    .review-text {
        font-size: 0.88rem;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .grill-types {
        gap: 10px;
        padding: 16px 10px;
        flex-wrap: wrap;
    }

    .grill-type-icon {
        width: 48px;
        height: 40px;
    }

    .grill-type-label {
        font-size: 0.7rem;
    }

    .grill-type-divider {
        height: 40px;
    }

    .lightbox-img.lightbox-img-rotate,
    .lightbox-img.lightbox-img-rotate-right {
        max-height: 40vh;
    }
}
