/* StoreNGo - Global Stylesheet */

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

:root {
    --yellow: #ffd75e;
    --yellow-hover: #ffcc33;
    --dark: #191919;
    --gray-dark: #4a4a4a;
    --gray: #6b6b6b;
    --gray-light: #f7f7f7;
    --white: #ffffff;
    --border-light: #f0f0f0;
    --max-width: 1200px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(25, 25, 25, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 3px solid var(--yellow);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--yellow);
    text-decoration: none;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--yellow);
    color: var(--dark);
}

.cookie-btn-accept:hover {
    background: var(--yellow-hover);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.logo:hover {
    color: var(--gray-dark);
}

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

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--dark);
}

.nav-cta {
    background: var(--yellow);
    color: var(--dark);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.nav-cta:hover {
    background: var(--yellow-hover);
    transform: translateY(-1px);
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
}

.lang-toggle {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 150px;
    z-index: 1000;
}

.language-switcher:hover .lang-dropdown {
    display: block;
}

.lang-option {
    display: block;
    padding: 8px 12px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.lang-option:hover {
    background-color: var(--gray-light);
}

.lang-option.active {
    background-color: var(--yellow);
    font-weight: 500;
}

/* Season Info Banner */
.season-banner {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
}

.season-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Hero Section */
.hero {
    margin-top: 115px;
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-light) 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--gray);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--yellow);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--gray-dark);
    transform: translateY(-2px);
}

/* Features Grid */
.features {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
}

.feature-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

.feature h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Main Content Section */
.content-section {
    padding: 5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-4px);
    background: var(--yellow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--dark);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    transition: color 0.3s;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
    transition: color 0.3s;
}

/* Pricing Section */
.pricing {
    background: var(--gray-light);
    padding: 5rem 2rem;
}

.pricing-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.price-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.price sup {
    font-size: 1.5rem;
    position: relative;
    top: -1rem;
}

.price-description {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-dark);
    border-bottom: 1px solid var(--gray-light);
}

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

.check {
    color: #22c55e;
    font-size: 1.25rem;
    margin-right: 8px;
}

.warning {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.warning p {
    color: #92400e;
    font-size: 0.9rem;
    margin: 0;
}

/* Location Section */
.location {
    padding: 5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-container {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.map-placeholder {
    background: white;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    margin-bottom: 1rem;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .map-placeholder {
        height: 300px;
    }
}

.location-details h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.location-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.location-icon {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.location-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@media (max-width: 768px) {
    .location-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

.location-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.location-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Our Store Section */
.store-section {
    background: var(--gray-light);
    padding: 5rem 2rem;
}

.store-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.store-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.store-container h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.store-container p {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Store Images Grid */
.store-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.store-image-item {
    text-align: center;
}

.store-image-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--dark);
}

.store-image-item p {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 768px) {
    .store-images-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* FAQ Section */
.faq {
    background: var(--gray-light);
    padding: 5rem 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 94, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--yellow);
    transition: left 0.3s;
    z-index: 0;
}

.faq-question:hover::before {
    left: 0;
}

.faq-question:hover {
    color: var(--dark);
}

.faq-question span {
    position: relative;
    z-index: 1;
}

.faq-question:hover .faq-toggle {
    color: var(--dark);
    background: var(--white);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gray);
    transition: all 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    line-height: 0;
    padding: 0;
    text-align: center;
    font-family: monospace;
}

.faq-item.active .faq-question {
    background: var(--yellow);
    color: var(--dark);
}

.faq-item.active .faq-question::before {
    left: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--dark);
    background: var(--white);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    background: linear-gradient(to bottom, rgba(255, 215, 94, 0.05) 0%, transparent 100%);
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--dark);
    color: var(--white);
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--white);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--gray);
    font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: var(--yellow);
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--dark);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

/* Floating Messenger Button */
.messenger-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9000;
}

.fab-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.fab-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.fab-options {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    flex-direction: column;
    gap: 0.5rem;
}

.fab-options.show {
    display: flex;
}

.fab-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.fab-option:hover {
    transform: translateX(-4px);
}

.fab-option.whatsapp {
    background: #25D366;
    color: white;
}

.fab-option.phone {
    background: var(--dark);
    color: white;
}

.fab-option.sms {
    background: #2196F3;
    color: white;
}

/* Quick Check-in Section */
.checkin-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    color: var(--white);
}

.checkin-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.checkin-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.checkin-section p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.checkin-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.checkin-step {
    padding: 1rem;
}

.checkin-step-number {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}

.checkin-step h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.checkin-step p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.btn-checkin {
    background: var(--yellow);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-checkin:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
}

/* Service Info Page - Text Content */
.text-content {
    background: var(--white);
    padding: 4rem 2rem;
}

.text-container {
    max-width: 800px;
    margin: 0 auto;
}

.text-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.text-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.text-container p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--gray-dark);
}

.text-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.text-container li {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.highlight-box {
    background: var(--yellow);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.highlight-box h3 {
    margin: 0 0 1rem;
    color: var(--dark);
}

.highlight-box p {
    margin: 0;
    color: var(--dark);
    font-weight: 500;
}

.pricing-detail {
    background: rgba(255, 215, 94, 0.1);
    border-left: 4px solid var(--yellow);
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.pricing-detail p {
    margin: 0;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

/* Service Info Page - Features Grid */
.features-section {
    background: var(--gray-light);
    padding: 5rem 2rem;
}

.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}

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

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Service Info Page - Footer variant */
.footer-info {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-info p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0.5rem 0;
}

.footer-links {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    body {
        font-size: 16px;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        font-size: 1.1rem;
        color: var(--gray-dark);
        border-bottom: 1px solid var(--border-light);
    }

    .nav-cta {
        margin-top: 15px;
        text-align: center;
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .season-banner {
        top: 56px;
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }

    .hero {
        margin-top: 105px;
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }

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

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

    .btn {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .feature-icon span {
        font-size: 2.2rem;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

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

    .location-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }

    .location-icon span {
        font-size: 2rem;
    }

    .location-text h4 {
        font-size: 1.1rem;
    }

    .location-text p {
        font-size: 1rem;
    }

    .pricing-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .price {
        font-size: 3rem;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-toggle {
        width: 36px;
        height: 36px;
        font-size: 1.8rem;
    }

    .faq-answer {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .cta {
        padding: 4rem 1rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
        padding: 0 1rem;
    }

    .content-section {
        padding: 3rem 1rem;
    }

    .pricing {
        padding: 3rem 0;
    }

    .faq {
        padding: 3rem 0;
    }

    .store-section {
        padding: 3rem 1rem;
    }

    /* Service info page mobile */
    .text-content {
        padding: 3rem 1rem;
    }

    .features-section {
        padding: 3rem 1rem;
    }

    /* Messenger FAB mobile */
    .fab-toggle {
        width: 56px;
        height: 56px;
    }

    .messenger-fab {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    /* Check-in mobile */
    .checkin-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .checkin-section h2 {
        font-size: 2rem;
    }
}
