/* ════════════════════════════════════════════════════════════════════════════
   DARK GLASSMORPHISM STYLESHEET - Professional Scooter Repair Website
   ════════════════════════════════════════════════════════════════════════════ */

/* CSS VARIABLES */
:root {
    --bg-primary: #f5f0eb;
    --bg-secondary: #e8e0d8;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(180, 160, 140, 0.3);
    --accent-primary: #f5a623;
    --accent-secondary: #e8950f;
    --text-primary: #2c1e10;
    --text-secondary: rgba(44, 30, 16, 0.78);
    --text-muted: rgba(44, 30, 16, 0.55);
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a:visited,
a:active {
    color: inherit;
}

a[href^="mailto:"],
a[href^="mailto:"]:visited,
a[href^="mailto:"]:active {
    color: inherit;
}

/* UTILITY CLASSES */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}



.gradient-text {
    background: linear-gradient(135deg, #f5a623 0%, #e8950f 50%, #d4860a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #f5a623 0%, #e8950f 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.18);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.25);
    background: linear-gradient(135deg, #e8950f 0%, #f5a623 100%);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-primary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(212, 134, 10, 0.12);
    border-color: var(--accent-secondary);
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 2rem;
    animation: slideDown 0.6s ease;
    border-radius: 0 !important;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    display: block;
    height: 46px;
    width: auto;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f5a623 0%, #e8950f 100%);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: var(--glass-bg);
    color: var(--text-primary);
    cursor: pointer;
    padding: 0;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-toggle:hover {
    background: rgba(212, 134, 10, 0.1);
    border-color: rgba(245, 166, 35, 0.45);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/hero-background.webp') top center / cover no-repeat;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245,240,235,0.72);
}

body.dark-mode .hero-background::after {
    background: rgba(18,22,28,0.75);
}

.hero-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-content {
    flex: 1;
    text-align: left;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-status-wrap {
    margin-bottom: 1.1rem;
}

.hero-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.hero-status-badge.open {
    color: #3dbb66;
    background: rgba(61, 187, 102, 0.14);
    border-color: rgba(61, 187, 102, 0.3);
}

.hero-status-badge.closed {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.12);
    border-color: rgba(255, 107, 107, 0.26);
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: flex-start;
}

.hero-image {
    display: none;
}

.hero-contact-section {
    flex: 0 0 330px;
}

.contact-form {
    padding: 1.4rem;
    border-radius: 18px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.contact-form h3 {
    font-size: 1.45rem;
    margin-bottom: 0.35rem;
}

.contact-form p {
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(179, 109, 0, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(179, 109, 0, 0.06);
    box-shadow: 0 0 0 3px rgba(179, 109, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* SERVICES SECTION */
.services {
    padding: 6rem 2rem;
    position: relative;
}

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

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

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.service-card {
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card[data-index="0"] { transition-delay: 0s; }
.service-card[data-index="1"] { transition-delay: 0.1s; }
.service-card[data-index="2"] { transition-delay: 0.2s; }
.service-card[data-index="3"] { transition-delay: 0.3s; }
.service-card[data-index="4"] { transition-delay: 0.4s; }
.service-card[data-index="5"] { transition-delay: 0.5s; }

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

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

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(179, 109, 0, 0.06);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    color: var(--accent-primary);
    font-weight: 700;
}

.service-card .price {
    color: var(--accent-primary);
}

/* SHOP SECTION */
.shop {
    padding: 6rem 2rem;
    background: none;
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.filter-btn:hover {
    color: var(--text-primary);
    background: rgba(179, 109, 0, 0.08);
}

.filter-btn.active {
    background: var(--accent-primary);
    color: white;
    border-color: transparent;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-5px);
    background: rgba(179, 109, 0, 0.06);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: rgba(179, 109, 0, 0.06);
}

.product-content {
    padding: 1.5rem;
}

.product-card h3 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.product-card .description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    min-height: 45px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.product-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin: 1rem 0;
    font-family: 'Space Mono', monospace;
}

.product-card .stock {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-card .stock.in-stock {
    color: var(--accent-primary);
}

.product-card .stock.out-of-stock {
    color: #ff4444;
}

.product-card button {
    width: 100%;
    padding: 1rem;
    background: var(--accent-primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(179, 109, 0, 0.4);
}

.product-card button:disabled {
    background: rgba(179, 109, 0, 0.08);
    cursor: not-allowed;
    color: var(--text-muted);
}

.loading {
    text-align: center;
    color: var(--text-muted);
    grid-column: 1 / -1;
    padding: 3rem;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 100;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-primary);
    border-radius: 15px;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes scrollDot {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(24px);
        opacity: 0;
    }
}

/* TIPS SECTION */
.tips {
    padding: 6rem 2rem;
    position: relative;
    background: none;
}

.tips-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tip-card {
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tip-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tip-card[data-index="0"] { transition-delay: 0s; }
.tip-card[data-index="1"] { transition-delay: 0.1s; }
.tip-card[data-index="2"] { transition-delay: 0.2s; }
.tip-card[data-index="3"] { transition-delay: 0.3s; }
.tip-card[data-index="4"] { transition-delay: 0.4s; }
.tip-card[data-index="5"] { transition-delay: 0.5s; }

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

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

.tip-card:hover {
    transform: translateY(-5px);
    background: rgba(179, 109, 0, 0.06);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tip-category {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.tip-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.tip-details {
    order: 2;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.tip-card.expanded .tip-details {
    max-height: 260px;
    opacity: 1;
    margin-top: 1rem;
}

.btn-tip-toggle {
    order: 3;
    align-self: stretch;
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.5rem 0.95rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-tip-toggle:hover {
    border-color: var(--accent-primary);
    background: rgba(179, 109, 0, 0.08);
}

.tip-difficulty {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.difficulty-easy {
    color: #10b981;
    font-weight: 600;
}

.difficulty-medium {
    color: #f59e0b;
    font-weight: 600;
}

.difficulty-hard {
    color: #ef4444;
    font-weight: 600;
}

.tip-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.tip-link:hover {
    gap: 1rem;
    color: var(--accent-secondary);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 24px;
    max-width: 680px;
    width: 90%;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-primary);
}

.modal-body {
    margin: 1.5rem 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 1rem;
}

/* FAQ SECTION */
.faq {
    padding: 6rem 2rem;
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
}

.faq-header {
    width: 100%;
    padding: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-header:hover {
    background: rgba(179, 109, 0, 0.04);
}

.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    color: var(--accent-primary);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-body.open {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.faq-body p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* REVIEWS SECTION */
.reviews {
    padding: 6rem 2rem;
    background: none;
}

.reviews-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    padding: 2.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card[data-index="0"] { transition-delay: 0s; }
.review-card[data-index="1"] { transition-delay: 0.1s; }
.review-card[data-index="2"] { transition-delay: 0.2s; }

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(179, 109, 0, 0.06);
}

.review-stars {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex: 1;
}

.review-author {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
}

/* BTN TIP */
.btn-tip {
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-tip:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    gap: 0.5rem;
}

/* PROMO BANNER */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 2rem;
    text-align: center;
    animation: slideDown 0.6s ease;
}

.promo-banner.hidden {
    display: none !important;
}

.promo-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    color: var(--text-primary);
    font-weight: 500;
}

.promo-icon {
    font-size: 1.5rem;
}

.promo-close {
    position: absolute;
    right: 0;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.promo-close:hover {
    color: var(--accent-primary);
}

/* PRICE CALCULATOR */
.calculator {
    padding: 6rem 2rem;
    background: none;
}

.calculator-container {
    max-width: 600px;
    margin: 0 auto;
}

.calc-panel {
    padding: 2.5rem;
}

.calc-group {
    margin-bottom: 1.5rem;
}

.calc-select {
    width: 100%;
    padding: 1rem;
    background: rgba(179, 109, 0, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(179, 109, 0, 0.06);
    box-shadow: 0 0 0 3px rgba(179, 109, 0, 0.1);
}

.calc-result {
    animation: fadeInUp 0.6s ease;
}

/* PACKAGES SECTION */
.packages {
    padding: 6rem 2rem;
}

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

.package-card {
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.package-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.package-card[data-index="0"] { transition-delay: 0s; }
.package-card[data-index="1"] { transition-delay: 0.1s; }
.package-card[data-index="2"] { transition-delay: 0.2s; }

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-family: 'Space Mono', monospace;
    color: var(--accent-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    color: var(--text-secondary);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
    line-height: 1.6;
}

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

.package-card:hover {
    transform: translateY(-10px);
    background: rgba(179, 109, 0, 0.06);
}

/* LOYALTY PROGRAM */
.loyalty {
    padding: 6rem 2rem;
    background: none;
}

.loyalty-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.loyalty-info {
    padding: 2.5rem;
}

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

.loyalty-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(179, 109, 0, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.loyalty-card:hover {
    background: rgba(179, 109, 0, 0.1);
    transform: scale(1.05);
}

.loyalty-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-family: 'Space Mono', monospace;
}

.loyalty-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.loyalty-rewards {
    padding: 2.5rem;
}

.loyalty-rewards h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.rewards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reward-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(179, 109, 0, 0.04);
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
}

.reward-points {
    background: var(--accent-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    min-width: 60px;
}

.reward-desc {
    color: var(--text-secondary);
}

.loyalty-signup {
    background: rgba(179, 109, 0, 0.05) !important;
    padding: 2rem !important;
}

/* CONTACT SECTION */
.contact {
    padding: 6rem 2rem;
}

.contact-container {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    padding: 2.5rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.info-item {
    margin-bottom: 1.35rem;
}

.info-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.info-item p,
.info-item a {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.45;
    text-decoration: none;
}

.info-item a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-primary);
}

.map-container {
    aspect-ratio: 1 / 0.8;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-embed {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.location-photo {
    flex: 0.85;
    overflow: hidden;
}

.location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
    }

    .hero-status-wrap {
        display: flex;
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-contact-section {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

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

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .shop-filters {
        flex-direction: column;
    }

    .map-container {
        aspect-ratio: 4 / 3;
    }

    .modal-content {
        padding: 2rem;
    }

    .faq-header {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .faq-body.open {
        padding: 0 1.5rem 1.5rem;
    }

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

    .loyalty-container {
        grid-template-columns: 1fr;
    }

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

    .promo-content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    nav {
        padding: 1rem;
    }

    .hero {
        padding: 4rem 1rem 2rem;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   15 SMALL IMPROVEMENTS
   ════════════════════════════════════════════════════════════════════════════ */

/* 1. SCROLL TO TOP BUTTON */
.scroll-top-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(179, 109, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-button.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-button:hover {
    transform: translateY(-0.5rem) scale(1.1);
    box-shadow: 0 12px 40px rgba(179, 109, 0, 0.5);
}

/* 2. TOAST NOTIFICATIONS */
#toast-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 1000;
    max-width: 400px;
}

.toast {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.4s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toast.success {
    border-left: 4px solid #10b981;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast.info {
    border-left: 4px solid var(--accent-primary);
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 0.95rem;
}

.toast-close {
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.toast-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 3. CHARACTER COUNTER FOR TEXTAREA */
.form-group {
    position: relative;
}

.char-counter {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    pointer-events: none;
}

.char-counter.warning {
    color: #f59e0b;
    font-weight: 600;
}

.char-counter.limit-reached {
    color: #ef4444;
}

/* 4. PULSE ANIMATION FOR CTA BUTTONS */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(179, 109, 0, 0.35);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(179, 109, 0, 0);
    }
}

.btn-primary {
    animation: pulse 2s infinite;
}

.btn:hover {
    animation: none;
}

/* 5. INPUT ICONS & BETTER VISUAL HIERARCHY */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    background: rgba(179, 109, 0, 0.04);
    border: 1.5px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(179, 109, 0, 0.05);
    box-shadow: 0 0 20px rgba(179, 109, 0, 0.2);
}

/* 6. LOADING SPINNER FOR BUTTONS */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn.loading::before {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

/* 7. SECTION FADE-IN ON SCROLL */
section {
    opacity: 1;
    transition: opacity 0.6s ease;
    scroll-margin-top: 100px;
}

section:not(.visible) {
    opacity: 0.95;
}

/* 8. FAQ SEARCH ENHANCEMENT */
#faqSearch {
    width: 100%;
    padding: 1rem;
    background: rgba(179, 109, 0, 0.04);
    border: 1.5px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

#faqSearch::placeholder {
    color: var(--text-muted);
}

#faqSearch:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(179, 109, 0, 0.2);
}

.faq-item.hidden {
    display: none;
}

/* 9. TRUST BADGES STYLING */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.badge:nth-child(1) { animation-delay: 0s; }
.badge:nth-child(2) { animation-delay: 0.1s; }
.badge:nth-child(3) { animation-delay: 0.2s; }
.badge:nth-child(4) { animation-delay: 0.3s; }

.badge-icon {
    font-size: 2.5rem;
}

.badge-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 10. BETTER FORM VALIDATION STATES */
input.valid,
select.valid {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

input.invalid,
select.invalid {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.validation-message {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.validation-message.error {
    color: #ef4444;
    display: block;
}

.validation-message.success {
    color: #10b981;
    display: block;
}

/* 12. FAQ SMOOTH ANIMATIONS */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body.open {
    max-height: 500px;
}

.faq-arrow {
    display: inline-block;
    transition: transform 0.4s ease;
}

.faq-header:not(.open-header) .faq-arrow {
    transform: rotate(0deg);
}

.faq-header.open-header .faq-arrow {
    transform: rotate(180deg);
}

/* 13. TESTIMONIALS BETTER STYLING */
.review-card {
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(179, 109, 0, 0.15);
}

.review-card .stars {
    display: inline-flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.review-card .star {
    font-size: 1rem;
    opacity: 0;
    animation: starPop 0.3s ease forwards;
}

.review-card .star:nth-child(1) { animation-delay: 0s; }
.review-card .star:nth-child(2) { animation-delay: 0.1s; }
.review-card .star:nth-child(3) { animation-delay: 0.2s; }
.review-card .star:nth-child(4) { animation-delay: 0.3s; }
.review-card .star:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPop {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 14. SMOOTH SECTION TRANSITIONS */
section[data-visible="true"] {
    opacity: 1;
}

section[data-visible="false"] {
    opacity: 0.7;
}

/* 15. BUTTON MICRO-INTERACTIONS */
.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.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

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

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(179, 109, 0, 0.3);
}

.btn:active {
    transform: scale(0.98);
}

/* ════════════════════════════════════════════════════════════════════════════
    HOURS DISPLAY STYLES
    ════════════════════════════════════════════════════════════════════════════ */

/* Hours Display */
.hours-section {
    background: var(--bg-primary);
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.hours-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hours-display {
    padding: 1.5rem;
}

.hours-display h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.hours-today-status {
    color: var(--text-primary);
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hours-progress {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(179, 109, 0, 0.12);
    border: 1px solid rgba(179, 109, 0, 0.18);
    margin-bottom: 0.55rem;
}

.hours-progress.hidden {
    display: none;
}

.hours-progress-fill {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    transition: width 0.4s ease;
}

.hours-progress-label {
    min-height: 1.35rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.status-badge.open {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.status-badge.closed {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.4);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--accent-primary);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hour-item .day {
    font-weight: 600;
    color: var(--text-primary);
}

.hour-item .time {
    color: var(--text-secondary);
    font-weight: 500;
}

.hour-item.is-today {
    background: rgba(179, 109, 0, 0.12);
    border-left-color: var(--accent-secondary);
    box-shadow: inset 0 0 0 1px rgba(179, 109, 0, 0.12);
}

.hour-item.is-open-now {
    transform: translateX(4px);
    background: rgba(179, 109, 0, 0.18);
    box-shadow: 0 10px 30px rgba(179, 109, 0, 0.12);
}

/* Map Controls */
.map-controls {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    flex-wrap: wrap;
}

.map-controls .status-badge {
    margin: 0;
    flex: 1 0 100%;
    text-align: center;
}

.map-btn {
    padding: 0.75rem 1.25rem;
    background: rgba(179, 109, 0, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

/* Contact Hours Table */
.contact-hours-table {
    width: 100%;
    border-collapse: collapse;
}

.contact-hours-table td {
    padding: 0.35rem 0;
    vertical-align: top;
}

.contact-hours-table td:first-child {
    font-weight: 600;
    width: 130px;
    white-space: nowrap;
    color: var(--text-primary);
}

.contact-hours-table td:last-child {
    text-align: right;
    color: var(--text-secondary);
}

/* ════════════════════════════════════════════════════════════════════════════
   WORKFLOW SECTION - Animated repair process
   ════════════════════════════════════════════════════════════════════════════ */
.workflow-section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.workflow-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.workflow-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--glass-border);
    z-index: 0;
}

.workflow-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 3px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-line.animated::after {
    transform: scaleY(1);
}

.workflow-step {
    position: relative;
    padding-left: 72px;
    padding-bottom: 2.5rem;
    z-index: 1;
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.72s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--workflow-delay, 0ms);
}

.workflow-step:last-child {
    padding-bottom: 0;
}

.workflow-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.workflow-dot {
    position: absolute;
    left: 16px;
    top: 1.5rem;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--glass-border);
    z-index: 2;
    opacity: 0;
    transform: scale(0.72);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, border-color 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
    transition-delay: calc(var(--workflow-delay, 0ms) + 70ms);
}

.workflow-step.visible .workflow-dot {
    opacity: 1;
    transform: scale(1);
}

.workflow-step.visible .workflow-dot {
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.25);
}

.workflow-card {
    padding: 1.8rem 2rem;
    opacity: 0;
    transform: translate3d(-26px, 0, 0);
    transition: opacity 0.75s ease, transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--workflow-delay, 0ms) + 120ms);
}

.workflow-step.visible .workflow-card {
    opacity: 1;
    transform: translateX(0);
}

.workflow-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-family: 'Space Mono', monospace;
}

.workflow-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.workflow-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 600px) {
    .workflow-step {
        padding-left: 58px;
    }
    .workflow-line {
        left: 20px;
    }
    .workflow-dot {
        left: 8px;
        width: 24px;
        height: 24px;
    }
    .workflow-card {
        padding: 1.3rem 1.2rem;
    }
}

.map-btn:hover {
    background: rgba(179, 109, 0, 0.2);
    box-shadow: 0 4px 16px rgba(179, 109, 0, 0.2);
    transform: translateY(-2px);
}

.map-btn:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .map-controls {
        flex-direction: column;
    }

    .map-btn {
        min-width: auto;
    }
}

/* ════════════════════════════════════════════════════════════════════════════ */

/* 2026 refresh: cleaner colors + stronger scaling */
:root {
    --bg-primary: #f5f0eb;
    --bg-secondary: #faf8f5;
    --glass-bg: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(180, 160, 140, 0.2);
    --accent-primary: #f5a623;
    --accent-secondary: #e8950f;
    --text-primary: #2c1e10;
    --text-secondary: rgba(44, 30, 16, 0.78);
    --text-muted: rgba(44, 30, 16, 0.55);
    --mobile-menu-bg: rgba(245, 240, 235, 0.96);
    --mobile-menu-link-bg: rgba(255, 255, 255, 0.62);
    --mobile-menu-link-border: rgba(180, 160, 140, 0.35);
    --mobile-menu-link-color: #2c1e10;
    --mobile-menu-toggle-bg: rgba(255, 255, 255, 0.82);
    --mobile-menu-toggle-border: rgba(180, 160, 140, 0.5);
}

body {
    background:
        radial-gradient(1000px 520px at 6% -10%, rgba(212, 134, 10, 0.16), transparent 60%),
        radial-gradient(900px 560px at 96% 8%, rgba(238, 147, 42, 0.14), transparent 60%),
        var(--bg-primary);
    color: var(--text-primary);
}

.glass {
    box-shadow: 0 10px 34px rgba(179, 109, 0, 0.08);
}

.btn-primary {
    box-shadow: 0 4px 10px rgba(212, 134, 10, 0.14);
}

.btn-primary:hover {
    box-shadow: 0 6px 14px rgba(212, 134, 10, 0.18);
}

.service-icon,
.tip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.2rem;
    height: 2.2rem;
    padding: 0 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(179, 109, 0, 0.28);
    background: rgba(179, 109, 0, 0.1);
    color: var(--accent-secondary);
    font-family: 'Space Mono', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.review-stars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: fit-content;
    min-width: 2.9rem;
    height: 1.7rem;
    padding: 0 0.58rem;
    border-radius: 999px;
    background: rgba(179, 109, 0, 0.12);
    border: 1px solid rgba(179, 109, 0, 0.25);
    color: var(--accent-secondary);
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-content h1 {
    font-size: clamp(2.1rem, 5.6vw, 4.2rem);
    line-height: 1.08;
}

.hero-content p,
.section-header p {
    font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.section-header h2 {
    font-size: clamp(1.7rem, 4vw, 3rem);
}

.contact-form,
.service-card,
.tip-card,
.review-card,
.contact-info,
.hours-display {
    padding: clamp(1.2rem, 2vw, 2.5rem);
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.map-btn {
    background: rgba(179, 109, 0, 0.08);
    border-color: rgba(179, 109, 0, 0.3);
    color: var(--accent-secondary);
}

.map-btn:hover {
    background: rgba(179, 109, 0, 0.16);
    box-shadow: 0 6px 14px rgba(179, 109, 0, 0.2);
}

.quick-phone-number {
    margin-top: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.quick-phone-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    font-weight: 600;
}

.quick-phone-number a {
    color: var(--text-primary);
    text-decoration: underline;
}

.copy-phone-btn {
    border: 1px solid var(--glass-border);
    background: rgba(179, 109, 0, 0.08);
    color: var(--text-primary);
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.copy-phone-btn:hover {
    background: rgba(179, 109, 0, 0.16);
    border-color: var(--accent-primary);
    transform: translateY(-1px);
}

.theme-toggle-btn {
    border: 1px solid var(--glass-border);
    background: rgba(179, 109, 0, 0.08);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.theme-toggle-btn:hover {
    background: rgba(179, 109, 0, 0.15);
    border-color: var(--accent-primary);
}

body.dark-mode {
    --bg-primary: #12161c;
    --bg-secondary: #1a1f28;
    --glass-bg: rgba(24, 28, 36, 0.82);
    --glass-border: rgba(179, 109, 0, 0.18);
    --accent-primary: #ffb833;
    --accent-secondary: #ffc94d;
    --text-primary: #f0ebe5;
    --text-secondary: rgba(240, 235, 229, 0.8);
    --text-muted: rgba(240, 235, 229, 0.5);
    --mobile-menu-bg: rgba(14, 19, 27, 0.96);
    --mobile-menu-link-bg: rgba(255, 255, 255, 0.06);
    --mobile-menu-link-border: rgba(255, 255, 255, 0.14);
    --mobile-menu-link-color: #f0ebe5;
    --mobile-menu-toggle-bg: rgba(20, 27, 37, 0.9);
    --mobile-menu-toggle-border: rgba(255, 255, 255, 0.2);
}

body.dark-mode {
    background:
        radial-gradient(1000px 520px at 6% -10%, rgba(212, 134, 10, 0.08), transparent 60%),
        radial-gradient(900px 560px at 96% 8%, rgba(212, 134, 10, 0.05), transparent 60%),
        var(--bg-primary);
}

body.dark-mode .theme-toggle-btn {
    background: rgba(179, 109, 0, 0.12);
    color: var(--text-primary);
}

body.theme-no-transition *,
body.theme-no-transition *::before,
body.theme-no-transition *::after {
    transition: none !important;
    animation: none !important;
}

body.dark-mode .quick-phone-number,
body.dark-mode .quick-phone-number a {
    color: var(--text-primary);
}

body.dark-mode .copy-phone-btn {
    background: rgba(179, 109, 0, 0.12);
    color: var(--text-primary);
}

body.dark-mode .copy-phone-btn:hover {
    background: rgba(179, 109, 0, 0.2);
}

body.dark-mode .btn-secondary {
    background: rgba(179, 109, 0, 0.12);
    border-color: rgba(179, 109, 0, 0.25);
    color: var(--text-primary);
}

body.dark-mode .btn-secondary:hover {
    background: rgba(179, 109, 0, 0.22);
}

body.dark-mode .service-card:hover {
    background: rgba(179, 109, 0, 0.08);
}

body.dark-mode .tip-card:hover,
body.dark-mode .review-card:hover,
body.dark-mode .product-card:hover,
body.dark-mode .package-card:hover {
    background: rgba(179, 109, 0, 0.08);
}

body.dark-mode .faq-header:hover {
    background: rgba(179, 109, 0, 0.06);
}

body.dark-mode .glass {
    border-color: rgba(179, 109, 0, 0.15);
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        margin-top: 0;
        padding: 5.8rem 1rem 2.4rem;
    }

    .hero-container {
        gap: 1.4rem;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-buttons .btn,
    .contact-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .map-controls {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* GLOBAL: usuń efekt glow */
.glass,
.btn,
.btn-primary,
.btn-primary:hover,
.btn-secondary,
.btn-secondary:hover,
.copy-phone-btn,
.copy-phone-btn:hover,
.theme-toggle-btn,
.theme-toggle-btn:hover,
.map-btn,
.map-btn:hover,
.hero-status-badge,
.workflow-step.visible .workflow-dot,
.service-icon,
.tip-icon,
.package-card.highlight {
    box-shadow: none !important;
}

.btn,
.btn-primary,
.btn:hover {
    animation: none !important;
}

@media (max-width: 520px) {
    .hero {
        margin-top: 0;
        padding-top: 6.2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.05rem;
    }

    .quick-phone-number {
        font-size: 0.95rem;
    }
}

/* Trust counters */
.trust-metrics {
    padding: 4.5rem 2rem 2rem;
}

.trust-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.trust-card {
    padding: 1.8rem;
    text-align: center;
}

.trust-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
}

.trust-value {
    color: var(--accent-primary);
    font-family: 'Space Mono', monospace;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
}

/* Enhanced motion in key sections */
.js-motion-ready .motion-reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(2px);
    transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
}

.js-motion-ready .motion-reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.faq-header.open-header {
    background: rgba(179, 109, 0, 0.09);
}

@media (prefers-reduced-motion: reduce) {
    .js-motion-ready .motion-reveal,
    .js-motion-ready .motion-reveal.visible {
        transition: none !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
    }
}

/* GALLERY SECTION */
.gallery {
    padding: 6rem 2rem;
    position: relative;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(179, 109, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 30, 16, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Gallery lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 3001;
    transition: transform 0.2s ease;
    background: none;
    border: none;
    line-height: 1;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 3001;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

/* JSON price list */
.price-list {
    padding: 5rem 2rem;
}

.price-table-wrap {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.price-table th,
.price-table td {
    text-align: left;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.price-table th {
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.45);
}

.price-table tbody tr:hover {
    background: rgba(212, 134, 10, 0.08);
}

.price-table td:last-child,
.price-table td strong {
    color: var(--accent-primary);
    font-weight: 700;
}

/* Theme toggle with vector icons */
.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.theme-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-icon-sun {
    display: none;
}

.theme-icon-moon {
    display: inline-flex;
}

body.dark-mode .theme-icon-sun {
    display: inline-flex;
}

body.dark-mode .theme-icon-moon {
    display: none;
}

/* Better hours visibility on light mode */
.hours-display {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(180, 160, 140, 0.25);
}

.hour-item {
    background: rgba(179, 109, 0, 0.06);
}

body.dark-mode .hours-display {
    background: rgba(24, 28, 36, 0.85);
    border: 1px solid rgba(179, 109, 0, 0.18);
}

body.dark-mode .hour-item {
    background: rgba(179, 109, 0, 0.08);
}

body.dark-mode .hour-item.is-today {
    background: rgba(179, 109, 0, 0.14);
}

body.dark-mode .hour-item.is-open-now {
    background: rgba(179, 109, 0, 0.22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

/* ════════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════════ */

.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 0.75rem;
    text-align: center;
    justify-items: center;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-col h4 {
    font-family: 'Quicksand', 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.93rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-primary);
}

.footer-hours li {
    color: var(--text-secondary);
    font-size: 0.93rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-bottom p {
    margin-bottom: 0.3rem;
}

.footer-author {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-author a {
    color: var(--text-muted);
    text-decoration: underline;
}

.footer-author strong {
    color: var(--accent-primary);
    font-weight: 600;
}

body.dark-mode .site-footer {
    background: var(--bg-secondary);
    border-top-color: rgba(179, 109, 0, 0.15);
}

body.dark-mode .footer-bottom {
    border-top-color: rgba(179, 109, 0, 0.15);
}

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer {
        padding-bottom: 1.5rem;
    }

    .footer-logo {
        height: 48px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-logo {
        height: 44px;
    }
}

/* Extra responsive tuning */
@media (max-width: 1100px) {
    .hero-container,
    .contact-container {
        gap: 2rem;
    }

    .services,
    .tips,
    .faq,
    .reviews,
    .contact,
    .price-list,
    .trust-metrics {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

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

@media (max-width: 768px) {
    .price-table {
        min-width: 520px;
    }

    .theme-toggle-text {
        font-size: 0.82rem;
    }
}

@media (max-width: 420px) {
    .nav-links {
        gap: 0.65rem;
    }

    .nav-links a {
        font-size: 0.82rem;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   PACKAGES SECTION
   ════════════════════════════════════════════════════════════════════════════ */

.packages {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.packages-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.package-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    border-radius: 24px;
    min-height: 0;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(179, 109, 0, 0.16);
}

.package-card.highlight {
    border: 1px solid var(--accent-primary);
    position: relative;
}

.package-card.highlight::before {
    content: "NAJPOPULARNIEJSZY";
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.package-header h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin: 0;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.package-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
}

.feature-check {
    color: var(--accent-primary);
    font-weight: 700;
    margin-right: 0.5rem;
}

.package-duration {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0.5rem 0 0 0;
    display: none;
}

.package-card .btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
}

.package-card .btn::before {
    display: none;
}

/* Dark mode packages */
@media (prefers-color-scheme: dark) {
    .packages {
        background: var(--bg-primary);
    }
}

/* Responsive packages */
@media (max-width: 768px) {
    .packages {
        padding: 3rem 1.5rem;
    }

    .packages-grid {
        gap: 1.5rem;
    }

    .package-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .package-card.highlight {
        transform: scale(1.01);
    }

    .package-header h3 {
        font-size: 1.2rem;
    }

    .package-price {
        font-size: 1.5rem;
    }
    
    .package-list li {
        font-size: 0.9rem;
    }
}

/* Responsive polish: smoother scaling on varied desktop/laptop resolutions */
nav {
    padding-inline: clamp(1rem, 2.8vw, 2rem);
}

.nav-links {
    gap: clamp(0.7rem, 1.7vw, 2rem);
    flex-wrap: nowrap;
}

.hero {
    margin-top: 0;
    padding-top: clamp(6.2rem, 10vw, 8rem);
    padding-left: clamp(1rem, 2.8vw, 2rem);
    padding-right: clamp(1rem, 2.8vw, 2rem);
    padding-bottom: clamp(2rem, 4vw, 4rem);
}

.services,
.reviews,
.tips,
.faq,
.contact,
.gallery,
.packages,
.trust-metrics,
.workflow-section,
.price-list {
    padding-left: clamp(1rem, 2.8vw, 2rem);
    padding-right: clamp(1rem, 2.8vw, 2rem);
}

@media (max-width: 1100px) {
    .hero-wrapper {
        gap: clamp(1.1rem, 2.4vw, 2rem);
    }

    .hero-content {
        min-width: 0;
    }

    .hero-contact-section {
        flex: 1 1 360px;
        max-width: 520px;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 0.45rem 0.8rem !important;
    }

    .nav-container {
        position: relative;
        flex-wrap: nowrap;
        align-items: center;
        row-gap: 0;
    }

    .logo {
        flex: 1 1 auto;
        text-align: left;
    }

    .logo-img {
        height: 42px;
    }

    .nav-toggle {
        display: inline-flex;
        order: 3;
        margin-left: 0;
        position: relative;
        z-index: 1102;
        background: var(--mobile-menu-toggle-bg);
        border-color: var(--mobile-menu-toggle-border);
    }

    .theme-toggle-btn {
        width: 44px;
        height: 44px;
        order: 2;
        margin-left: auto;
        padding: 0;
        border-radius: 14px;
        justify-content: center;
    }

    .theme-toggle-btn .theme-toggle-text {
        display: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        padding: 5.2rem 1.2rem 1.4rem;
        border-radius: 0;
        background: var(--mobile-menu-bg);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 0;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.95rem;
        align-items: stretch;
        z-index: 1100;
        box-shadow: none;
        overflow-y: auto;
    }

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

    body.nav-menu-open {
        overflow: hidden;
    }

    nav.nav-open .nav-toggle {
        position: fixed;
        top: 1rem;
        right: 1rem;
        margin-left: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: min(100%, 340px);
        margin: 0 auto;
        padding: 1rem 1.2rem;
        border-radius: 18px;
        background: var(--mobile-menu-link-bg);
        border: 1px solid var(--mobile-menu-link-border);
        color: var(--mobile-menu-link-color);
        font-size: 1.06rem;
        font-weight: 600;
        text-align: center;
    }

    .nav-links a:hover {
        background: rgba(245, 166, 35, 0.14);
        color: var(--mobile-menu-link-color);
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        margin-top: 0;
        padding-top: clamp(7rem, 12vw, 7.8rem);
    }
}

@media (max-width: 600px) {
    .nav-links {
        padding-top: 4.9rem;
        padding-inline: 1rem;
    }

    .nav-links a {
        width: min(100%, 320px);
        font-size: 1rem;
    }

    .hero {
        margin-top: 0;
        padding-top: clamp(7.4rem, 13vw, 8.4rem);
    }

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

/* Reduced spacing between sections (50%) */
.services,
.shop,
.tips,
.faq,
.reviews,
.calculator,
.loyalty,
.contact,
.gallery {
    padding: 3rem 2rem !important;
}

.packages {
    padding: 2.5rem 2rem !important;
}

.hours-section {
    padding: 1.5rem 2rem 1rem !important;
}

.workflow-section {
    padding: 2.5rem 2rem !important;
}

.trust-metrics {
    padding: 2.25rem 2rem 1rem !important;
}

@media (max-width: 768px) {
    nav {
        padding-inline: 0.7rem;
        padding-block: 0.4rem;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .nav-toggle span {
        width: 18px;
    }

    .theme-toggle-btn {
        font-size: 0.88rem;
        padding-inline: 0.9rem;
    }

    .theme-toggle-text {
        font-size: 0.8rem;
    }
}

.contact {
    padding: 3rem 2rem !important;
}

.contact-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.contact-info {
    padding: 2rem;
    border-radius: 18px;
    display: block;
}

/* CTA block fills bottom gap */
.contact-cta {
    margin-top: auto;
    padding: 1.4rem 1.2rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(232,149,15,0.06));
    border: 1px solid rgba(245,166,35,0.28);
    text-align: center;
}

.contact-cta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.contact-cta-phone {
    font-size: 1.85rem;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact-cta-btns {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
}

.contact-cta-btns .btn {
    flex: 1;
    max-width: 160px;
    text-align: center;
    animation: none;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-info > p {
    margin-bottom: 1.4rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info .info-item,
.contact-info .hours-display {
    margin-bottom: 0.7rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(179, 109, 0, 0.04);
    border: 1px solid var(--glass-border);
}

.contact-info .info-item h4,
.contact-info .hours-display > h4 {
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.9px;
}

.contact-info .info-item p,
.contact-info .info-item a {
    font-size: 1rem;
    line-height: 1.55;
}

/* Map panel — simple vertical stack, no nested grid */
.map-container {
    aspect-ratio: auto !important;
    display: flex !important;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
}

.contact .map-controls {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0;
    border-radius: 14px;
}

.contact .map-controls .status-badge {
    flex: 1 1 100%;
    text-align: center;
    margin: 0 0 0.2rem;
}

.contact .map-controls .map-btn {
    flex: 1;
    min-width: 80px;
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
    border-radius: 10px;
}

.map-embed {
    width: 100%;
    min-height: 0;
    border-radius: 14px;
    overflow: hidden;
    flex: 1 1 0;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
    display: block;
}

.location-photo {
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 14px;
    overflow: hidden;
    flex: 1 1 0;
}

.location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    display: block;
}

.location-photo picture {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        aspect-ratio: auto;
        height: auto;
    }

    .map-embed {
        flex: none;
        min-height: 240px;
        height: 240px;
    }

    .map-embed iframe {
        min-height: 240px;
        height: 240px;
    }

    .location-photo {
        display: block;
        flex: none;
        min-height: 220px;
        height: 220px;
    }

    .location-photo picture,
    .location-photo img {
        display: block;
        width: 100%;
        height: 100%;
    }
}

/* Final mobile overrides: cleaner hero and menu layout */
.nav-mobile-theme {
    display: none;
}

@media (max-width: 900px) {
    #themeToggle {
        display: none;
    }

    .scroll-indicator {
        display: none !important;
    }

    .nav-links {
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .nav-links li {
        width: min(100%, 340px);
        display: flex;
        justify-content: center;
    }

    .nav-mobile-theme {
        display: flex;
        justify-content: center;
        margin-top: 0;
        padding-top: 0.35rem;
    }

    .theme-toggle-btn-mobile {
        display: inline-flex;
        width: 50%;
        margin-inline: auto;
        justify-content: center;
        gap: 0.5rem;
        border-radius: 14px;
        padding: 0.85rem 1rem;
    }

    .theme-toggle-btn-mobile .theme-toggle-text {
        display: inline;
        font-size: 0.8rem;
    }

    .hero {
        min-height: 100svh !important;
        margin-top: 0;
        padding: 5.8rem 0.9rem 1.2rem !important;
    }

    .hero-background {
        background-position: center center;
    }

    .hero-wrapper {
        gap: 0.95rem;
        align-items: stretch;
    }

    .hero-content > p {
        display: none;
    }

    .cta-buttons {
        display: none !important;
    }

    .hero-contact-section {
        flex: none;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .hero-contact-section .contact-form {
        padding: 1rem;
        border-radius: 14px;
    }

    .hero-contact-section .contact-form h3 {
        font-size: 0.98rem;
        line-height: 1.25;
        max-width: 100%;
        overflow-wrap: anywhere;
        margin-bottom: 0.2rem;
    }

    .hero-contact-section .contact-form p {
        font-size: 0.86rem;
        margin-bottom: 0.55rem;
    }

    .hero-contact-section .contact-buttons {
        gap: 0.5rem !important;
    }

    .hero-contact-section .btn {
        padding: 0.72rem 0.95rem;
        font-size: 0.92rem;
    }

    .hero-phone-copy {
        margin-top: 0.55rem;
    }

    .hero-contact-section .hero-phone-copy {
        display: none;
    }
}



