/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

:root {
    --logo-bg: #2d2d2d;
    --primary-color: #1a4d3a;
    --primary-dark: #0f2e22;
    --primary-light: #2d7a5f;
    --secondary-color: #2d7a5f;
    --accent-color: #ff6b35;
    --accent-light: #ff8c5a;
    --neon-green: #39ff14;
    --text-dark: #1a1a1a;
    --text-medium: #374151;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-lighter: #fafbfc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 10px 30px rgba(26, 77, 58, 0.15);
    --gradient-primary: linear-gradient(135deg, #1a4d3a 0%, #2d7a5f 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    --gradient-green: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(26, 77, 58, 0.1) 0%, transparent 100%);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 500;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

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

/* Header – logo bar bg matches QUICKSTOP_REAL.jpg dark gray */
.header {
    background: var(--logo-bg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Open/closed indicator bar (season + hours from shop config) */
.header-announce {
    background: #000;
    color: #fff;
    padding: 8px 0;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-announce-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #94a3b8;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}
.header-status-dot.open {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
}
.header-status-dot.closed {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}
.header-status-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    opacity: 1;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
}
@media (min-width: 480px) {
    .header-status-label {
        white-space: nowrap;
    }
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-inner {
    padding: 0;
}

.header-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

.phone-link:hover {
    color: var(--neon-green);
}

.phone-link .phone-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    color: #fff;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.social-links a:hover {
    color: var(--neon-green);
    transform: translateY(-1px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 10px;
}

.logo {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 10px;
}

.logo:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.08);
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo:hover .logo-image {
    filter: brightness(1.05);
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
}
.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.lang-btn:hover {
    color: var(--neon-green);
}
.lang-btn.active {
    color: var(--neon-green);
    background: rgba(255, 255, 255, 0.1);
}
.lang-sep {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    user-select: none;
}
@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--border-color, #eee);
    }
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 14px;
    border-radius: 8px;
    background: transparent;
    letter-spacing: 0.01em;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--neon-green);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a:hover {
    color: var(--neon-green);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    color: white;
    padding: 0;
    overflow: hidden;
}

.hero--photo {
    min-height: 90vh;
}

.hero--photo .hero-body {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 48px 0 100px;
    background-color: #0a0a0a;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.72) 100%),
        url('/images/fons3.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-body {
    position: relative;
    padding: 40px 0 120px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 45%, #0f2e22 100%);
}

.hero-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(57, 255, 20, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero--photo .hero-body::before {
    background: radial-gradient(ellipse at center 20%, rgba(57, 255, 20, 0.1) 0%, transparent 55%);
}

.hero-body > .container {
    position: relative;
    z-index: 1;
}

/* Ultrawide Quickstop banner (in-page promo section) */
.promo-banner {
    width: 100%;
    background: #000;
}

.hero-banner-zone {
    width: 100%;
    flex-shrink: 0;
    background: transparent;
    line-height: 0;
}

.hero-banner-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Collapse blocks when hero / services / hours images are missing (see initHideMissingSiteImages in script.js) */
.hero-banner-zone.media-missing,
.hero-image-wrapper.media-missing {
    display: none;
}

.hero-slogan.media-missing {
    display: none;
    margin: 0;
    min-height: 0;
}

.service-image.media-missing {
    display: none;
}

.hours-icon-img.media-missing {
    display: none;
    width: 0;
    height: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 1;
    animation: zoomIn 20s ease-in-out infinite alternate;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
    padding: 0 20px;
    padding-top: 10px;
}

.hero-logo-wrapper {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 4;
    animation: fadeInLeft 1s ease-out 0.2s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.5)) drop-shadow(0 4px 16px rgba(57, 255, 20, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-logo:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 12px 40px rgba(57, 255, 20, 0.4)) drop-shadow(0 8px 32px rgba(0, 0, 0, 0.5));
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
    font-style: italic;
    transform: skew(-1deg);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 24px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 48px;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}
@media (max-width: 768px) {
    .hero-description {
        margin-bottom: 24px;
    }
}
@media (max-width: 480px) {
    .hero-description {
        margin-bottom: 16px;
        font-size: 0.95rem;
    }
}

.hero-slogan {
    margin-top: 20px;
    margin-bottom: 24px;
}

.hero-slogan-img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 56px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-slogan {
        margin-top: 16px;
        margin-bottom: 20px;
    }
    .hero-slogan-img {
        max-height: 44px;
    }
}

.opening-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 32px 32px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.opening-hours-title {
    margin: 0 0 16px;
    font-size: 1.15rem;
    font-weight: 800;
    font-style: italic;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.opening-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.opening-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.opening-hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.opening-hours-day {
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.opening-hours-time {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
}

.opening-hours-time--closed {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.opening-hours-time--on-request {
    color: #fff;
    font-weight: 600;
    font-style: normal;
    white-space: normal;
}

.opening-hours-note {
    margin: 12px 0 0;
    font-size: 0.85rem;
    color: #fff;
    text-align: center;
}

/* Booking calendar (replaces hours-header) - Don Barber style */
.booking-calendar-wrapper {
    margin-bottom: 32px;
}
.booking-calendar-wrapper h3 {
    font-size: 1.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    margin: 0 0 8px 0;
    font-style: italic;
}
.booking-intro {
    margin: 0 0 20px 0;
    opacity: 0.95;
    font-size: 0.95rem;
}
.calendar-container {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
}
.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.calendar-month-year {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: capitalize;
}
.calendar-nav {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.calendar-nav:hover {
    background: rgba(255, 255, 255, 0.35);
}
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
    text-align: center;
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid transparent;
    transition: all 0.2s;
}
.calendar-day:hover:not(.other-month):not(.disabled):not(.reserved) {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}
.calendar-day.selected {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}
.calendar-day.other-month {
    opacity: 0.4;
    cursor: default;
}
.calendar-day.disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.calendar-day.reserved {
    opacity: 0.6;
    cursor: not-allowed;
    text-decoration: line-through;
}
.time-slots-wrapper {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Booking modal – multi-step popup */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s, opacity 0.25s;
}
.booking-modal.is-open {
    visibility: visible;
    opacity: 1;
}
.booking-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}
.booking-modal__box {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    padding: 28px 24px 32px;
    color: #1a1a1a;
}
@media (max-width: 480px) {
    .booking-modal {
        padding: 12px;
        align-items: flex-start;
    }
    .booking-modal__box {
        max-height: 88vh;
        padding: 24px 16px 28px;
        border-radius: 16px;
    }
    .booking-modal__title {
        font-size: 1.35rem;
        margin-bottom: 12px;
    }
    .booking-modal__step .calendar-container {
        margin-bottom: 16px;
    }
}
.booking-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: background 0.2s, color 0.2s;
}
.booking-modal__close:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #1a1a1a;
}
.booking-modal__title {
    margin: 0 0 20px 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}
.booking-modal__intro {
    margin: 0 0 16px 0;
    font-size: 0.95rem;
    color: #555;
}
.booking-modal__step {
    display: none;
}
.booking-modal__step.active {
    display: block;
}
.booking-modal__step .calendar-container {
    background: #f5f5f5;
    border-color: #e5e5e5;
}
.booking-modal__step .calendar-nav {
    background: rgba(26, 77, 58, 0.15);
    color: var(--primary-color);
    border-color: rgba(26, 77, 58, 0.3);
}
.booking-modal__step .calendar-nav:hover {
    background: rgba(26, 77, 58, 0.25);
}
.booking-modal__step .calendar-day {
    background: #fff;
    color: #1a1a1a;
    border-color: #e5e5e5;
}
.booking-modal__step .calendar-day:hover:not(.other-month):not(.disabled) {
    background: rgba(26, 77, 58, 0.1);
    border-color: var(--primary-color);
}
.booking-modal__step .calendar-day.selected {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.booking-modal__step .calendar-month-year,
.booking-modal__step .calendar-weekdays {
    color: #333;
}
.booking-modal__slot-title {
    margin: 0 0 16px 0;
    font-size: 1.1rem;
    color: #333;
}
.time-slots--grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}
.time-slots--grid .time-slot-btn {
    padding: 12px;
    font-size: 0.9rem;
    background: #f5f5f5;
    border-color: #ddd;
    color: #1a1a1a;
}
.time-slots--grid .time-slot-btn:hover {
    background: rgba(26, 77, 58, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.time-slots--grid .time-slot-btn.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.time-slots--grid .time-slot-btn.taken {
    background: #eee;
    color: #999;
    cursor: not-allowed;
}

/* LED indicators: 2 = both green, 1 = one green one red, 0 = both red */
.slot-led-wrap {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}
.slot-led {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
}
.slot-led--green {
    background: radial-gradient(circle at 35% 35%, #7dd87d, #22c55e 45%, #16a34a);
}
.slot-led--red {
    background: radial-gradient(circle at 35% 35%, #f87171, #ef4444 45%, #dc2626);
}
.time-slot-btn .time-slot-btn-time {
    display: inline-block;
}
.time-slots--grid .time-slot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}
.booking-modal__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
    flex-wrap: wrap;
}
.booking-modal__step .booking-form .form-group label {
    color: #333;
}
.booking-modal__step .booking-form input,
.booking-modal__step .booking-form select {
    background: #fff;
    border-color: #ddd;
    color: #1a1a1a;
}
.booking-modal__box--success .booking-modal__title,
.booking-modal__box--success .booking-modal__steps {
    display: none;
}
.booking-modal__success-panel {
    display: none;
    text-align: center;
    padding: 8px 4px 4px;
}
.booking-modal__box--success .booking-modal__success-panel {
    display: block;
}
.booking-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(34, 197, 94, 0.25) 100%);
    border: 2px solid rgba(34, 197, 94, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #15803d;
}
.booking-success-title {
    margin: 0 0 12px 0;
    font-size: 1.35rem;
    color: var(--primary-color);
    font-weight: 800;
}
.booking-success-detail {
    margin: 0 0 16px 0;
    font-size: 0.98rem;
    line-height: 1.5;
    color: #444;
}
.booking-success-slot {
    margin: 0 0 24px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 14px 16px;
    background: #f0f7f4;
    border-radius: 12px;
    border: 1px solid rgba(26, 77, 58, 0.2);
}
.booking-success-close {
    min-width: 160px;
}
.btn-booking-open {
    margin-bottom: 20px;
}
.time-slots-title {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
}
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.time-slot-btn {
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.time-slot-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}
.time-slot-btn.selected {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}
.time-slot-btn.taken {
    opacity: 0.5;
    cursor: not-allowed;
}
.booking-form {
    padding: 24px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.booking-form .form-group {
    margin-bottom: 16px;
}
.booking-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}
.booking-form input,
.booking-form select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1rem;
}
.booking-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.booking-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 10px;
    display: none;
}
.booking-message.success {
    display: block;
    background: rgba(74, 222, 128, 0.3);
    border: 1px solid rgba(74, 222, 128, 0.5);
}
.booking-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.3);
    border: 1px solid rgba(239, 68, 68, 0.5);
}

.hours-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.opening-hours h3 {
    font-size: 1.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    margin: 0;
    font-style: italic;
}

.opening-hours .hours-status {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.hours-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.status-indicator.closed {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.status-text {
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.hours-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .hours-grid--3 {
        grid-template-columns: 1fr;
    }
}

.hours-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hours-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

.hours-item:hover::before {
    transform: scaleY(1);
}

.hours-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.hours-icon-img {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
}
.hours-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hours-icon-svg {
    width: 34px;
    height: 34px;
    color: rgba(255, 255, 255, 0.96);
    flex-shrink: 0;
}

.hours-content {
    flex: 1;
    text-align: center;
    width: 100%;
}

.hours-label {
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.hours-time {
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.hours-time:last-child {
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.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;
}

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

/* Liquid glass orange – primary buttons (type="button") */
button[type="button"].btn-primary,
.btn-primary {
    background: linear-gradient(135deg, rgba(255, 115, 55, 0.92) 0%, rgba(255, 145, 75, 0.9) 50%, rgba(230, 95, 45, 0.95) 100%);
    color: #fff;
    border: 1px solid rgba(255, 200, 150, 0.7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 4px 16px rgba(200, 80, 40, 0.4);
}

button[type="button"].btn-primary:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, rgba(255, 125, 65, 0.98) 0%, rgba(255, 155, 85, 0.96) 50%, rgba(240, 105, 55, 0.98) 100%);
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 225, 190, 0.85);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 8px 24px rgba(200, 80, 40, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 77, 58, 0.3);
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-lighter) 50%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.services::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 77, 58, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.services > .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
    width: 100%;
    font-style: italic;
    transform: skew(-1deg);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--accent-color));
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-colored);
    border-color: rgba(26, 77, 58, 0.2);
}

.service-card-featured {
    border: 2px solid var(--accent-color);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 90, 0.05) 100%);
}

.service-card-featured .service-content {
    padding-top: 52px;
}

.service-card-featured:has(.service-image) .service-content {
    padding-top: 36px;
}

.service-card-featured::after {
    content: 'POPULÄR';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c5a 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    letter-spacing: 0.5px;
}

.service-image {
    height: 240px;
    /* Dark neutral behind photos — not brand green (that read as an “overlay” when imgs 404 or load late) */
    background: #141a18;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-gallery-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    --gallery-count: 1;
    --gallery-index: 0;
}

/* Multi-image galleries: horizontal track + swipe animation (see script.js). */
.card-gallery-slides:has(> .card-gallery-track) {
    touch-action: pan-y;
}

/* Subtle affordance: multi-image galleries are swipeable / tappable */
.card-gallery-swipe-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    color: rgba(255, 255, 255, 0.92);
    pointer-events: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}

.card-gallery-swipe-hint-icon {
    display: block;
    opacity: 0.95;
    animation: card-gallery-hint-nudge 2.4s ease-in-out infinite;
}

@keyframes card-gallery-hint-nudge {
    0%,
    100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(-3px);
    }
    60% {
        transform: translateX(3px);
    }
}

.card-gallery-slides.gallery-hint-dismissed .card-gallery-swipe-hint {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
    .card-gallery-swipe-hint-icon {
        animation: none;
    }

    .card-gallery-swipe-hint,
    .card-gallery-slides.gallery-hint-dismissed .card-gallery-swipe-hint {
        transition-duration: 0.01ms;
    }
}

/* Quieter on mouse-first devices (tap still works; icon is secondary) */
@media (hover: hover) and (pointer: fine) {
    .card-gallery-swipe-hint {
        opacity: 0.72;
        bottom: 8px;
    }

    .card-gallery-swipe-hint-icon {
        animation: none;
    }
}

.card-gallery-track {
    display: flex;
    height: 100%;
    width: calc(var(--gallery-count, 1) * 100%);
    transform: translateX(calc(-100% * var(--gallery-index, 0) / var(--gallery-count, 1)));
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .card-gallery-track {
        transition-duration: 0.01ms;
    }
}

/* Only the active slide is shown when slides are direct children (single-image or pre-init). */
.card-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    margin: 0;
    padding: 0;
    z-index: 0;
}

.card-gallery-slide.is-active {
    display: block;
    z-index: 2;
    pointer-events: auto;
}

.card-gallery-slides > .card-gallery-slide:only-child {
    display: block;
    z-index: 2;
    pointer-events: auto;
}

.card-gallery-slides:has(> .card-gallery-track) > .card-gallery-track > .card-gallery-slide {
    position: relative;
    flex: 0 0 calc(100% / var(--gallery-count, 1));
    width: calc(100% / var(--gallery-count, 1));
    min-width: 0;
    height: 100%;
    display: block !important;
    z-index: auto;
    pointer-events: auto;
}

.card-gallery-slides:has(> .card-gallery-track) > .card-gallery-track > .card-gallery-slide .service-img {
    position: absolute;
    inset: 0;
}

.card-gallery-slide picture {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.service-card:has(.card-gallery-slides > .card-gallery-slide:nth-child(2)),
.service-card:has(.card-gallery-track .card-gallery-slide:nth-child(2)),
.info-card:has(.card-gallery-slides > .card-gallery-slide:nth-child(2)),
.info-card:has(.card-gallery-track .card-gallery-slide:nth-child(2)) {
    cursor: pointer;
}

.service-card:has(.card-gallery-slides > .card-gallery-slide:nth-child(2)):hover .service-img,
.service-card:has(.card-gallery-track .card-gallery-slide:nth-child(2)):hover .service-img,
.info-card:has(.card-gallery-slides > .card-gallery-slide:nth-child(2)):hover .service-img,
.info-card:has(.card-gallery-track .card-gallery-slide:nth-child(2)):hover .service-img {
    transform: none;
}

/* No ::before/::after overlays on .service-image — they sat above the photo (z-index) and
   the dark green wash (0.8 opacity) hid the image; :hover can also stick on touch after tap. */

.service-placeholder,
.service-placeholder-img {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}
.service-placeholder {
    font-size: 4.5rem;
}
.service-placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.service-card:hover .service-placeholder,
.service-card:hover .service-placeholder-img {
    transform: scale(1.1) rotate(5deg);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img,
.info-card:hover .service-img {
    transform: scale(1.1);
}

.service-content {
    padding: 36px;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.01em;
    font-style: italic;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 500;
}

.service-content ul.service-ac-notes,
.service-ac-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.service-content ul.service-ac-notes li,
.service-ac-includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.service-content ul.service-ac-notes li::before,
.service-ac-includes li::before {
    content: '✅';
    flex-shrink: 0;
    font-size: 1.2em;
    line-height: 1.45;
    filter: saturate(1.35) drop-shadow(0 1px 3px rgba(34, 197, 94, 0.45));
    transform: scale(1.08);
}

.service-content ul.service-ac-notes li:last-child,
.service-ac-includes li:last-child {
    margin-bottom: 0;
}

.service-content .service-price-label {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.service-ac-price {
    margin-bottom: 20px;
}

.service-ac-price strong {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
}


.service-ac-footnote {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.service-ac-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 20px 0;
}

.service-ac-refrigerant {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.service-ac-refrigerant li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.service-ac-refrigerant li span:last-child {
    color: var(--primary-color);
    font-weight: 700;
    white-space: nowrap;
}

.service-ac-tagline-title {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    margin-top: 8px;
}

.service-ac-tagline {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-prices {
    list-style: none;
    padding: 0;
}

.service-prices li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-prices li:hover {
    padding-left: 12px;
    background: linear-gradient(90deg, rgba(26, 77, 58, 0.05) 0%, transparent 100%);
    border-radius: 8px;
    margin: 0 -8px;
    padding-right: 8px;
}

.service-prices li:last-child {
    border-bottom: none;
}

.service-prices strong {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 800;
    font-style: italic;
}

.service-highlight {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 24px;
    border-radius: 16px;
    margin-top: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.highlight-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.highlight-includes {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Special Offer Section */
.special-offer {
    background-color: #1a4d3a;
    background-image: url('/images/RSshutterstock_88952644-1920w.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.offer-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.offer-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45), 0 4px 24px rgba(0, 0, 0, 0.35);
    letter-spacing: -0.01em;
    font-style: italic;
    transform: skew(-1deg);
}

.offer-subtitle {
    font-size: 1.35rem;
    margin-bottom: 32px;
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.offer-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.offer-list li {
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.offer-list li:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Additional Info Section */
.additional-info {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.additional-info::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.info-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.info-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), 0 10px 30px rgba(26, 77, 58, 0.1);
    border-color: rgba(26, 77, 58, 0.2);
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.info-content .btn {
    margin-top: auto;
}

.info-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.01em;
    font-style: italic;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1rem;
}

/* Reviews Section */
.reviews {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.rating-badge {
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 32px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    margin-left: 50%;
    transform: translateX(-50%);
    border: 1px solid #dadce0;
}

.rating-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #202124;
    letter-spacing: 0;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
}

.rating-stars {
    font-size: 1.5rem;
    color: #fbbc04;
    letter-spacing: 2px;
    line-height: 1;
}

.rating-count {
    color: #70757a;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-top: 60px;
}

.reviews-grid:has(.google-style) {
    gap: 16px;
}

.review-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    padding: 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 10px 30px rgba(26, 77, 58, 0.08);
    border-color: rgba(26, 77, 58, 0.15);
}

/* Google-style reviews */
.review-card.google-style {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border: none;
    transition: box-shadow 0.2s ease;
}

.review-card.google-style::before {
    display: none;
}

.review-card.google-style:hover {
    transform: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-color: transparent;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4285f4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.9rem;
    flex-shrink: 0;
    font-family: 'Roboto', sans-serif;
}

.review-meta {
    flex: 1;
}

.review-author {
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    font-family: 'Roboto', sans-serif;
}

.review-card.google-style .review-author {
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.review-date {
    color: #70757a;
    font-size: 0.85rem;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.review-stars {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.review-stars.google-stars {
    margin-bottom: 8px;
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1;
}

.review-stars.google-stars .star {
    color: #fbbc04;
    font-size: 1.1rem;
    margin-right: 1px;
    display: inline-block;
}

.review-stars.google-stars .star.filled {
    color: #fbbc04;
}

.review-text {
    color: var(--text-medium);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    font-weight: 500;
}

.review-card.google-style .review-text {
    color: #3c4043;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 8px;
    font-family: 'Roboto', sans-serif;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    padding: 36px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.contact-item:hover {
    transform: translateX(8px) translateY(-4px);
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(26, 77, 58, 0.1);
    border-color: rgba(26, 77, 58, 0.2);
}

.contact-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 800;
    font-style: italic;
}

.contact-social {
    margin: 0;
}

.contact-social-sep {
    opacity: 0.5;
    user-select: none;
}

.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 10px 30px rgba(26, 77, 58, 0.15);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-map:hover {
    box-shadow: var(--shadow-xl), 0 15px 40px rgba(26, 77, 58, 0.2);
    border-color: rgba(26, 77, 58, 0.3);
}

.contact-map iframe,
.contact-map-iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.contact-map .btn {
    margin-top: 24px;
    width: 100%;
    text-align: center;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 28px;
    font-weight: 500;
}

/* Legal pages (privacy, terms, cookies) */
.legal-page .legal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.legal-page .legal-content p,
.legal-page .legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1rem;
}
.legal-page .legal-content h2 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}
.legal-page .legal-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
    padding: 0;
}
.legal-page .legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer — same photo as hero (hero-f1.png), with overlay for legibility */
.footer {
    color: white;
    padding: 100px 0 40px;
    position: relative;
    margin-top: 80px;
    background-color: var(--primary-dark);
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%),
        url('/images/hero-f1.png');
    background-size: cover, cover;
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 1;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    margin-bottom: 28px;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.footer-section p {
    margin-bottom: 14px;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 500;
}

.footer-section p.footer-social {
    margin-bottom: 0;
}

.footer-social-sep {
    opacity: 0.55;
    user-select: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
    opacity: 0.95;
}

.footer-section a:hover {
    opacity: 1;
    transform: translateX(6px);
    color: var(--accent-color);
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.footer-section-payment .footer-payment-intro {
    margin-bottom: 14px;
    opacity: 0.92;
    font-size: 0.9rem;
    font-weight: 500;
}
.footer-payment-options {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-payment-options .payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.95;
}
.footer-payment-options .payment-option-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.9);
}
.footer-payment-options .payment-option-icon svg {
    display: block;
}
.info-placeholder-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0.9;
}
.info-placeholder-payment svg {
    display: block;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design – fixed width on mobile */
@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        margin: 0;
    }

    body {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        min-height: 100vh;
        box-shadow: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-image {
        height: 42px;
    }

    .header-contact {
        padding: 7px 0 5px;
    }

    .phone-link {
        font-size: 0.86rem;
    }

    .nav {
        padding: 8px 0 10px;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height, 104px);
        left: -100%;
        flex-direction: column;
        background: #000000;
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: none;
        padding: 24px 0;
        gap: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        visibility: hidden;
        pointer-events: none;
    }

    .nav-menu.active {
        left: 0;
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu li {
        padding: 0;
    }

    /* Match .hero-title: Montserrat 900 italic + skew (Däckbyte headline voice) */
    .nav-menu a {
        display: block;
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        color: #ffffff;
        font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-weight: 900;
        font-style: italic;
        letter-spacing: -0.01em;
        line-height: 1.15;
        font-size: 1.15rem;
        transform: skew(-1deg);
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    }

    .nav-menu a::before {
        display: none;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        transform: skew(-1deg);
    }

    .nav-menu a:focus-visible {
        outline: 2px solid var(--neon-green);
        outline-offset: -2px;
    }

    .hero-body {
        padding: 24px 0 56px;
    }

    .hero--photo {
        min-height: 88vh;
    }

    .hero--photo .hero-body {
        min-height: 88vh;
        padding: 32px 0 64px;
        background-position: center top;
    }

    .hero {
        min-height: auto;
        align-items: flex-start;
    }

    .hero-title {
        margin-bottom: 14px;
    }
    .hero-subtitle {
        margin-bottom: 16px;
    }

    .hero-logo {
        height: 80px;
    }

    .hero-logo-wrapper {
        top: 30px;
        left: 30px;
    }

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

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

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

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

    .booking-calendar-wrapper .calendar-days {
        gap: 4px;
    }
    .calendar-day {
        font-size: 0.85rem;
    }
    .hours-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .opening-hours {
        padding: 24px 20px;
    }

    .hours-item {
        padding: 16px;
    }

    .offer-list {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services,
    .additional-info,
    .reviews,
    .contact,
    .about {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo-image {
        height: 38px;
    }

    .header-contact {
        padding: 6px 0 4px;
    }

    .phone-link {
        font-size: 0.8rem;
        gap: 6px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
    }

    .nav {
        padding: 7px 0 9px;
    }

    .nav-menu a {
        font-size: 1.05rem;
    }

    .hero-body {
        padding: 16px 0 44px;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .hero-logo {
        height: 60px;
        padding: 8px 16px;
    }

    .hero-logo-wrapper {
        top: 20px;
        left: 20px;
    }

    .opening-hours {
        padding: 20px 16px;
    }

    .btn-booking-open {
        margin-bottom: 16px;
        min-height: 48px;
    }

    .services,
    .additional-info,
    .reviews,
    .contact,
    .about {
        padding: 50px 0;
    }

    .service-content,
    .info-content {
        padding: 24px;
    }
}

/* Smooth scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .info-card,
    .review-card {
        animation: fadeInUp 0.6s ease-out backwards;
    }

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.faq-grid {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 77, 58, 0.2);
}

.faq-item.active {
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(26, 77, 58, 0.1);
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
    gap: 16px;
}

.faq-question:hover {
    background: rgba(26, 77, 58, 0.03);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 77, 58, 0.2);
    color: #fff;
}

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

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 800;
    font-style: italic;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

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

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 77, 58, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
}

.form-group.error .error-message {
    display: block;
}

.error-message {
    display: none;
    color: #ef4444;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-submit {
    margin-top: 8px;
    position: relative;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-submit.loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

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

.contact-form-message {
    margin-top: 4px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}
.contact-form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.45);
    color: #b91c1c;
}
.contact-form-message[hidden] {
    display: none !important;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #15803d;
    animation: fadeInUp 0.4s ease;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    flex-shrink: 0;
    color: #22c55e;
}

.form-success p {
    margin: 0;
    font-weight: 600;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

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

.whatsapp-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 30px rgba(26, 77, 58, 0.4);
}

.back-to-top {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c5a 100%);
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--text-dark);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================
   COOKIE NOTICE
   ============================================ */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1001;
    animation: slideUp 0.5s ease;
    flex-wrap: wrap;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-notice p {
    margin: 0;
    font-size: 0.95rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ============================================
   ENHANCED SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations for cards */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   IMPROVED HOVER EFFECTS
   ============================================ */
/* Removed .service-card::after — it covered the full card (inset:0) and painted above the
   photo area, so the lime gradient read as a green overlay (worse when :hover sticks on touch). */

/* Liquid glass orange – glow on hover */
button[type="button"].btn-primary::after,
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 130, 70, 0.5) 0%, transparent 70%);
    border-radius: inherit;
    transform: translate(-50%, -50%);
    filter: blur(14px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

button[type="button"].btn-primary:hover::after,
.btn-primary:hover::after {
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-left {
        gap: 30px;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 54px;
        height: 54px;
    }
    
    .floating-tooltip {
        display: none;
    }
    
    .cookie-notice {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
    }
}
