:root {
    --primary-color: #0056b3;
    --accent-color: #28a745;
    --text-color: #212529;
    --text-muted: #6c757d;
    --bg-color: #ffffff;
    --section-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
    --radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --container-width: 1180px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin-top: 0;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:focus-visible,
.btn:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 4px;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: var(--transition);
}

.site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom-color: transparent;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 25px;
    row-gap: 10px;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

.main-nav a.is-active {
    color: var(--primary-color);
}

.main-nav a.is-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.header-contact a {
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.phone-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.12);
    color: var(--primary-color);
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.28);
    animation: phone-ring 2.4s ease-in-out infinite;
}

.phone-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(0, 86, 179, 0.22);
    opacity: 0;
    animation: phone-pulse 2.4s ease-out infinite;
}

.phone-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.phone-link:hover .phone-icon,
.phone-link:focus-visible .phone-icon {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(0, 86, 179, 0.25);
}

@keyframes phone-ring {
    0%,
    64%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    68% {
        transform: rotate(-14deg) scale(1.08);
    }

    72% {
        transform: rotate(14deg) scale(1.08);
    }

    76% {
        transform: rotate(-10deg) scale(1.06);
    }

    80% {
        transform: rotate(10deg) scale(1.06);
    }

    84% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes phone-pulse {
    0%,
    62% {
        opacity: 0;
        transform: scale(0.8);
    }

    68% {
        opacity: 0.75;
        transform: scale(1);
    }

    88% {
        opacity: 0;
        transform: scale(1.45);
    }

    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

/* Social links in header */
.header-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    overflow: hidden;
    transform: translateY(0) scale(1);
    box-shadow:
        0 10px 24px rgba(0, 86, 179, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        filter 0.28s ease;
}

.social-btn::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55), transparent 34%),
        rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.social-btn svg {
    position: relative;
    z-index: 1;
    width: 23px;
    height: 23px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
    transition: transform 0.28s ease;
}

.social-btn--telegram {
    background: linear-gradient(135deg, #37B9F1 0%, #168DD9 100%);
}

.social-btn--vk {
    background: linear-gradient(135deg, #2E8CFF 0%, #0066D9 100%);
}

.social-btn--instagram {
    background:
        radial-gradient(circle at 30% 110%, #FCAF45 0%, #FCAF45 22%, transparent 42%),
        radial-gradient(circle at 0% 0%, #833AB4 0%, #833AB4 34%, transparent 58%),
        linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}

.social-btn:hover,
.social-btn:focus-visible {
    color: var(--white);
    transform: translateY(-5px) scale(1.08);
    filter: saturate(1.18) brightness(1.06);
}

.social-btn:hover svg,
.social-btn:focus-visible svg {
    transform: scale(1.16) rotate(-4deg);
}

.social-btn--telegram:hover,
.social-btn--telegram:focus-visible {
    box-shadow:
        0 14px 30px rgba(39, 165, 231, 0.42),
        0 0 0 5px rgba(39, 165, 231, 0.12);
}

.social-btn--vk:hover,
.social-btn--vk:focus-visible {
    box-shadow:
        0 14px 30px rgba(0, 119, 255, 0.42),
        0 0 0 5px rgba(0, 119, 255, 0.12);
}

.social-btn--instagram:hover,
.social-btn--instagram:focus-visible {
    box-shadow:
        0 14px 30px rgba(253, 29, 29, 0.34),
        0 0 0 5px rgba(252, 175, 69, 0.14);
}

.social-btn:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 4px;
}

/* Hero */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* Hero layout with image */
.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    align-items: center;
    gap: 50px;
    text-align: left;
}

.hero-content {
    max-width: 720px;
}

.hero .hero-content h1 {
    text-align: left;
}

.hero .hero-content p {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.hero .hero-content .hero-actions {
    justify-content: flex-start;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-badge {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 340px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: var(--shadow);
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 340px;
    display: block;
    object-fit: cover;
}

/* Contact Strip */
.contact-strip {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 0;
}

.contact-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

.contact-strip-inner li {
    display: flex;
    align-items: center;
    text-align: center;
}

.contact-strip a {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
}

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

/* Buttons & Links */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn:focus-visible {
    border-radius: var(--radius);
}

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

.btn-primary:hover {
    background-color: #004494;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--section-bg);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.link-accent {
    color: var(--primary-color);
    font-weight: 600;
}

.link-accent:hover,
.link-accent:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* Directions Cards */
.directions {
    padding: 80px 0;
}

.directions h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* Card base */
.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.card > h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card > p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Card with image */
.card:has(.card-image) {
    padding: 0;
    overflow: hidden;
}

.card-image {
    aspect-ratio: 4 / 3;
    background: var(--section-bg);
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.04);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card-body p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}


/* SUP cards image overlay */
.card--image-overlay .card-image {
    position: relative;
    aspect-ratio: 4 / 3.9;
    min-height: 330px;
    background:
        linear-gradient(135deg, rgba(0, 86, 179, 0.12), rgba(40, 167, 69, 0.1)),
        var(--section-bg);
}

.card--image-overlay .card-image::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 62%;
    background: linear-gradient(to top, rgba(5, 12, 26, 0.82), rgba(5, 12, 26, 0));
    pointer-events: none;
}

.card--image-overlay .card-image img {
    font-size: 0;
    color: transparent;
    object-position: center center;
}

.card--image-overlay .card-image-title {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 1;
    color: var(--white);
    font-size: 1.45rem;
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.card--image-overlay .card-body {
    padding-top: 22px;
}

.card--image-overlay .card-body p {
    margin-top: 0;
}

@media (max-width: 600px) {
    .card--image-overlay .card-image {
        aspect-ratio: 4 / 3.45;
        min-height: 285px;
    }

    .card--image-overlay .card-image-title {
        left: 18px;
        right: 18px;
        bottom: 16px;
        font-size: 1.3rem;
    }
}

/* Common Sections */
.features,
.how-to-rent,
.locations,
.faq {
    padding: 80px 0;
}

.features,
.locations {
    background-color: var(--section-bg);
}

.features h2,
.how-to-rent h2,
.locations h2,
.faq h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.features li {
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    font-weight: 500;
}

/* Lists and Content */
.content-list {
    max-width: 800px;
    list-style-type: disc;
    padding-left: 20px;
}

.content-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-left: 5px;
}

.how-to-rent ol {
    padding-left: 20px;
    max-width: 800px;
}

.how-to-rent li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding-left: 10px;
}

/* Pricing Table Section */
.price-section {
    background-color: var(--section-bg);
}

.price-subsection {
    margin-top: 40px;
}

.price-subsection h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.price-subsection h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.25;
}

.price-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 20px;
}

.price-note .content-list {
    margin-top: 20px;
    color: var(--text-muted);
    max-width: 900px;
}

.price-note .content-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.sup-prices {
    padding-bottom: 30px;
}

.sup-prices .price-note:last-child {
    margin-bottom: 0;
}

.rental-terms {
    padding-top: 30px;
}

.table-wrap {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
}

.price-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    text-align: left;
}

.price-table th {
    background-color: #f8fafc;
    padding: 18px 20px;
    font-weight: 700;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.price-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.price-table td:first-child {
    width: 35%;
    color: #1a202c;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover td {
    background-color: #fbfbfc;
}

/* Compact Table */
.price-table--compact {
    min-width: 420px;
}

.price-table--compact td:first-child,
.price-table--compact th:first-child {
    width: 65%;
}

.price-table--compact td:last-child,
.price-table--compact th:last-child {
    width: 35%;
}


/* SUP prices enhanced */
.sup-price-section h2 {
    margin-bottom: 12px;
}

.section-lead {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.section-lead--small {
    margin-bottom: 22px;
    font-size: 1rem;
}

.price-table--enhanced th {
    font-size: 1rem;
}

.price-table--enhanced td {
    padding: 18px 20px;
}

.price-row-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.price-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.12), rgba(40, 167, 69, 0.1));
    font-size: 1.35rem;
}

.price-row-hint {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 400;
}

.price-value-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.price-value {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.35rem;
    line-height: 1.1;
    font-weight: 800;
    white-space: nowrap;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.price-badge--popular {
    background: rgba(40, 167, 69, 0.12);
    color: #1f7a36;
}

.price-badge--weekend {
    background: rgba(0, 86, 179, 0.11);
    color: var(--primary-color);
}

.price-badge--best {
    background: rgba(245, 179, 1, 0.18);
    color: #8a6100;
}

.extra-table .price-icon {
    background: rgba(0, 86, 179, 0.08);
}

.price-table--enhanced tbody tr {
    transition: var(--transition);
}

.price-table--enhanced tbody tr:hover td {
    background: #f8fbff;
}

@media (max-width: 600px) {
    .section-lead {
        font-size: 1rem;
    }

    .price-table--enhanced {
        min-width: 560px;
    }

    .price-row-title {
        gap: 10px;
    }

    .price-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 1.15rem;
    }

    .price-value {
        font-size: 1.15rem;
    }

    .price-row-hint {
        font-size: 0.86rem;
    }
}


/* Gallery */
.gallery {
    padding: 80px 0;
    background: var(--white);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--section-bg);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Inventory Coverflow */
.inventory-coverflow {
    padding: 90px 0;
    background: #05070d;
    color: var(--white);
    overflow: hidden;
}

.inventory-coverflow h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.4rem;
}

.inventory-coverflow-viewport {
    position: relative;
    height: 520px;
    perspective: 1200px;
    overflow: hidden;
}

.inventory-coverflow-track {
    position: relative;
    height: 100%;
    transform-style: preserve-3d;
}

.inventory-coverflow-slide {
    position: absolute;
    top: 20px;
    left: 50%;
    width: min(330px, 68vw);
    height: 390px;
    padding: 0;
    border: 0;
    border-radius: 26px;
    overflow: hidden;
    background: #111827;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    opacity: 0;
    transform: translateX(-50%) scale(0.72);
    transition:
        transform 0.45s ease,
        opacity 0.45s ease,
        filter 0.45s ease;
}

.inventory-coverflow-slide:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 5px;
}

.inventory-coverflow-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

.inventory-coverflow-title {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    color: var(--white);
    font-weight: 700;
    text-align: center;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.inventory-coverflow-slide.is-active {
    z-index: 5;
    opacity: 1;
    filter: none;
    cursor: default;
    transform: translateX(-50%) rotateY(0deg) scale(1);
}

.inventory-coverflow-slide.is-active .inventory-coverflow-title {
    opacity: 1;
}

.inventory-coverflow-slide.is-prev {
    z-index: 4;
    opacity: 0.85;
    filter: brightness(0.78);
    transform: translateX(calc(-50% - 260px)) rotateY(34deg) scale(0.82);
}

.inventory-coverflow-slide.is-next {
    z-index: 4;
    opacity: 0.85;
    filter: brightness(0.78);
    transform: translateX(calc(-50% + 260px)) rotateY(-34deg) scale(0.82);
}

.inventory-coverflow-slide.is-prev-2 {
    z-index: 3;
    opacity: 0.45;
    filter: brightness(0.55);
    transform: translateX(calc(-50% - 470px)) rotateY(46deg) scale(0.68);
}

.inventory-coverflow-slide.is-next-2 {
    z-index: 3;
    opacity: 0.45;
    filter: brightness(0.55);
    transform: translateX(calc(-50% + 470px)) rotateY(-46deg) scale(0.68);
}

.inventory-coverflow-slide.is-hidden {
    pointer-events: none;
}

.inventory-coverflow-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.inventory-coverflow-btn {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: inherit;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.inventory-coverflow-btn:hover,
.inventory-coverflow-btn:focus-visible {
    background: var(--white);
    color: #05070d;
}

@media (max-width: 900px) {
    .inventory-coverflow {
        padding: 70px 0;
    }

    .inventory-coverflow h2 {
        font-size: 2rem;
    }

    .inventory-coverflow-viewport {
        height: 460px;
    }

    .inventory-coverflow-slide {
        width: min(300px, 72vw);
        height: 350px;
    }

    .inventory-coverflow-slide.is-prev {
        transform: translateX(calc(-50% - 210px)) rotateY(34deg) scale(0.78);
    }

    .inventory-coverflow-slide.is-next {
        transform: translateX(calc(-50% + 210px)) rotateY(-34deg) scale(0.78);
    }

    .inventory-coverflow-slide.is-prev-2,
    .inventory-coverflow-slide.is-next-2 {
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .inventory-coverflow h2 {
        font-size: 1.8rem;
    }

    .inventory-coverflow-viewport {
        height: 420px;
    }

    .inventory-coverflow-slide {
        width: min(280px, 78vw);
        height: 330px;
    }

    .inventory-coverflow-slide.is-prev {
        opacity: 0.35;
        transform: translateX(calc(-50% - 150px)) rotateY(28deg) scale(0.72);
    }

    .inventory-coverflow-slide.is-next {
        opacity: 0.35;
        transform: translateX(calc(-50% + 150px)) rotateY(-28deg) scale(0.72);
    }
}



/* SUP equipment to map spacing */
.sup-equipment-section {
    padding-bottom: 35px;
}

.sup-equipment-section + .map-reviews-section {
    padding-top: 35px;
}

@media (max-width: 600px) {
    .sup-equipment-section {
        padding-bottom: 25px;
    }

    .sup-equipment-section + .map-reviews-section {
        padding-top: 25px;
    }
}

/* Map and Reviews Section */
.map-reviews-section {
    padding: 80px 0;
    background: var(--white);
}

.map-reviews-header {
    max-width: 820px;
    margin-bottom: 30px;
}

.map-reviews-header h2 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.map-reviews-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.map-reviews-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    gap: 24px;
    align-items: stretch;
}

.map-card,
.reviews-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.map-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-card--compact {
    min-height: 100%;
}

.map-card-header {
    padding: 22px 24px 0;
}

.map-card-header h3,
.reviews-card h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.map-card-header p {
    margin: 0;
    color: var(--text-muted);
}

.map-card-header strong {
    color: var(--text-color);
}

.map-frame {
    height: 410px;
    margin: 18px 24px 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--section-bg);
}

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

.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 20px 24px 24px;
    margin-top: auto;
}

.map-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    line-height: 1.2;
    white-space: nowrap;
}

.map-actions .btn-primary {
    color: var(--white);
}

.map-actions .btn-secondary {
    color: var(--primary-color);
}

.reviews-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px;
    overflow: hidden;
}

.reviews-card::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.12), transparent 68%);
    pointer-events: none;
}

.reviews-brand {
    position: relative;
    align-self: flex-end;
    margin-bottom: 10px;
    font-weight: 800;
    color: #111827;
}

.reviews-summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.reviews-score {
    font-size: 4rem;
    line-height: 0.9;
    font-weight: 800;
    color: #111827;
}

.reviews-stars,
.review-stars {
    color: #f5b301;
    letter-spacing: 2px;
    line-height: 1;
}

.reviews-stars {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.reviews-summary p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.review-callout {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    background: var(--section-bg);
    font-weight: 700;
}

.review-callout a {
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 10px;
    background: #2e8cff;
    color: var(--white);
    font-weight: 800;
}

.review-callout a:hover,
.review-callout a:focus-visible {
    background: #0066d9;
}

.review-item {
    position: relative;
    padding: 18px 0;
    border-top: 1px solid var(--border-color);
}

.review-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.review-head strong {
    color: var(--text-color);
}

.review-head span {
    color: var(--text-muted);
    white-space: nowrap;
}

.review-stars {
    margin-bottom: 10px;
}

.review-item p {
    margin: 0;
    color: var(--text-color);
}

.reviews-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

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

@media (max-width: 600px) {
    .map-reviews-section {
        padding: 60px 0;
    }

    .map-reviews-header h2 {
        font-size: 1.8rem;
    }

    .map-card-header,
    .reviews-card {
        padding: 18px;
    }

    .map-frame {
        height: 280px;
        margin: 16px 18px 0;
    }

    .map-actions {
        flex-direction: column;
        padding: 18px;
    }

    .map-actions .btn,
    .reviews-card .btn {
        width: 100%;
    }

    .reviews-summary {
        align-items: flex-start;
    }

    .reviews-score {
        font-size: 3.2rem;
    }

    .review-callout {
        flex-direction: column;
        align-items: stretch;
    }

    .review-callout a {
        text-align: center;
    }

    .review-head {
        flex-direction: column;
        gap: 2px;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a202c 0%, #25324a 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Locations */
.location-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.location-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.location-contacts {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.location-contacts a {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ */
.faq details {
    background: var(--section-bg);
    margin-bottom: 15px;
    border-radius: var(--radius);
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq details[open] {
    background: var(--white);
    border: 1px solid var(--border-color);
}

.faq summary {
    font-weight: 600;
    padding: 10px 0;
    font-size: 1.1rem;
    outline: none;
}

.faq p {
    margin-top: 10px;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 80px 0 40px;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-col a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero .hero-content h1 {
        text-align: center;
        font-size: 2.5rem;
    }

    .hero .hero-content p {
        text-align: center;
        margin: 0 auto 40px;
    }

    .hero .hero-content .hero-actions {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-media {
        max-width: 640px;
        margin: 0 auto;
    }

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

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

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

    .location-list {
        grid-template-columns: 1fr;
    }

    .site-header .container {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .site-header {
        padding: 8px 0;
    }

    .site-header .container {
        gap: 10px;
    }

    .header-actions-wrapper {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .header-social {
        justify-content: center;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1,
    .hero .hero-content h1 {
        font-size: 2rem;
    }

    .hero-actions,
    .hero .hero-content .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-media,
    .hero-image {
        min-height: 240px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .contact-strip-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

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

    .main-nav ul {
        column-gap: 12px;
        row-gap: 8px;
        font-size: 0.85rem;
    }

    .table-wrap {
        border-radius: 8px;
    }

    .price-table th,
    .price-table td {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .content-list li {
        font-size: 1rem;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}