:root {
    --water: #08a9d6;
    --water-dark: #075b9d;
    --navy: #073b67;
    --ink: #102535;
    --muted: #5d7080;
    --line: #d8edf5;
    --soft: #f4fbfe;
    --green: #15a36f;
    --gold: #f4b942;
    --white: #ffffff;
    --shadow: 0 18px 42px rgba(7, 59, 103, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
}

.site-header {
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(216, 237, 245, .85);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 30px rgba(7, 59, 103, .08);
}

.navbar {
    min-height: 78px;
}

.navbar-brand span,
.footer-brand span {
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 800;
}

.navbar-toggler {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(8, 169, 214, .18);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--ink);
    font-size: .94rem;
    font-weight: 650;
}

.nav-link i {
    color: var(--water-dark);
    font-size: .9rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--water-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: 8px;
    font-weight: 750;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary-water {
    border: 1px solid var(--water-dark);
    color: var(--white);
    background: linear-gradient(135deg, var(--water), var(--water-dark));
    box-shadow: 0 12px 26px rgba(8, 169, 214, .25);
}

.btn-primary-water:hover,
.btn-primary-water:focus {
    border-color: var(--navy);
    color: var(--white);
    background: linear-gradient(135deg, #08bfe4, var(--navy));
}

.btn-outline-water {
    border: 1px solid rgba(7, 91, 157, .35);
    color: var(--navy);
    background: rgba(255, 255, 255, .78);
}

.btn-outline-water:hover {
    border-color: var(--water-dark);
    color: var(--water-dark);
    background: var(--white);
    box-shadow: var(--shadow);
}

.btn-soft {
    border: 1px solid var(--line);
    color: var(--navy);
    background: var(--soft);
}

.btn-light-water {
    border: 1px solid rgba(255, 255, 255, .65);
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 12px 26px rgba(7, 59, 103, .12);
}

.is-disabled,
.btn:disabled {
    display: none !important;
}

.hero-section {
    position: relative;
    min-height: 760px;
    padding: 160px 0 96px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .65s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-slide > .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide--cans .hero-bg,
.hero-slide--product .hero-bg {
    background: var(--soft);
}

.hero-slide--cans .hero-bg img,
.hero-slide--product .hero-bg img {
    object-fit: contain;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .84) 39%, rgba(255, 255, 255, .22) 72%, rgba(255, 255, 255, .08) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 590px;
}

@media (min-width: 992px) {
    .hero-bg {
        left: 45%;
        background: var(--soft);
    }

    .hero-bg::after {
        background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, .72) 12%, rgba(255, 255, 255, 0) 38%);
    }

    .hero-bg img {
        object-position: center center;
    }
}

.hero-dots {
    position: absolute;
    z-index: 2;
    right: max(24px, calc((100% - 1320px) / 2));
    bottom: 30px;
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 28px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: rgba(7, 59, 103, .3);
}

.hero-dots button.is-active {
    background: var(--water-dark);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 14px;
    color: var(--water-dark);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.hero-content h1,
.page-hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2.45rem, 5vw, 5.1rem);
    font-weight: 800;
    line-height: 1.02;
}

.hero-content p,
.page-hero p,
.section-copy {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    background: rgba(255, 255, 255, .8);
    font-weight: 700;
}

.hero-points i {
    color: var(--green);
}

.section {
    padding: 94px 0;
}

.section-tight {
    padding: 34px 0;
}

.section-muted {
    background: linear-gradient(180deg, #f6fcff 0%, #ffffff 100%);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.section-title {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: 54px;
}

.image-card,
.product-card,
.service-card,
.testimonial-card,
.info-card,
.form-card,
.contact-panel,
.status-card,
.timeline-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.image-card {
    padding: 16px;
}

.image-card img {
    width: 100%;
    border-radius: 8px;
}

.check-list,
.process-list {
    display: grid;
    gap: 13px;
    margin-top: 28px;
}

.check-list span,
.process-list span {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--ink);
    font-weight: 700;
}

.check-list i {
    color: var(--green);
}

.process-list i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--white);
    background: var(--water-dark);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--water), var(--water-dark));
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 800;
}

.cta-panel p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .84);
}

.cta-panel .eyebrow,
.cta-panel.dark .eyebrow {
    color: #e5fbff;
}

.cta-panel.dark {
    background: linear-gradient(135deg, var(--navy), #0b6d95);
}

.feature-grid,
.product-grid,
.testimonial-grid,
.stats-grid,
.timeline-grid {
    display: grid;
    gap: 24px;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-grid,
.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.info-card,
.testimonial-card,
.timeline-card {
    padding: 28px;
}

.service-icon,
.info-card > i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--water), var(--water-dark));
    font-size: 1.35rem;
}

.service-card h2,
.info-card h2,
.testimonial-card strong,
.timeline-card h2,
.contact-panel h2,
.form-card h2,
.status-card h2 {
    color: var(--navy);
    font-size: 1.22rem;
    font-weight: 800;
}

.service-card p,
.info-card p,
.timeline-card p,
.testimonial-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.service-card,
.product-card,
.testimonial-card,
.timeline-card,
.info-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover,
.product-card:hover,
.testimonial-card:hover,
.timeline-card:hover,
.info-card:hover {
    transform: translateY(-7px);
    border-color: rgba(8, 169, 214, .45);
    box-shadow: 0 24px 54px rgba(7, 59, 103, .16);
}

.product-card {
    overflow: hidden;
}

.product-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--soft);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

.badge-available {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 7px 10px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--green);
}

.product-body {
    padding: 24px;
}

.product-body h2 {
    margin: 0;
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 800;
}

.product-body p {
    min-height: 76px;
    margin: 10px 0 18px;
    color: var(--muted);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-footer span {
    color: var(--navy);
    font-weight: 800;
}

.stats-section {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #0b7ba4);
}

.stat-card {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .09);
}

.stat-card strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
}

.stat-card span {
    color: rgba(255, 255, 255, .82);
    font-weight: 650;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
    margin-bottom: 18px;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.testimonial-person img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
}

.testimonial-person span {
    display: block;
    color: var(--muted);
    font-size: .92rem;
}

.faq-accordion {
    max-width: 920px;
    margin: 0 auto;
}

.accordion-item {
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(7, 59, 103, .06);
}

.accordion-button {
    gap: .75rem;
    color: var(--navy);
    font-weight: 800;
}

.accordion-button i {
    color: var(--water-dark);
}

.accordion-button:not(.collapsed) {
    color: var(--navy);
    background: var(--soft);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 .2rem rgba(8, 169, 214, .16);
}

.page-hero,
.auth-section {
    padding: 150px 0 86px;
    background: linear-gradient(135deg, #f6fcff 0%, #ffffff 54%, #eaf9ff 100%);
}

.page-hero .container,
.auth-copy {
    max-width: 860px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.contact-info-grid div {
    display: grid;
    gap: 4px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(7, 59, 103, .08);
}

.contact-info-grid i {
    color: var(--water-dark);
    font-size: 1.35rem;
}

.contact-info-grid strong {
    color: var(--navy);
}

.contact-info-grid span {
    color: var(--muted);
}

.contact-layout,
.auth-layout,
.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
    gap: 32px;
    align-items: start;
}

.booking-layout {
    grid-template-columns: minmax(320px, 1.2fr) minmax(290px, .8fr);
}

.contact-panel,
.form-card,
.status-card {
    padding: 30px;
}

.contact-line {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.contact-line i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: var(--white);
    background: var(--water-dark);
}

.contact-line strong,
.contact-line span {
    display: block;
}

.contact-line span {
    color: var(--muted);
}

.map-placeholder {
    display: grid;
    place-items: center;
    min-height: 220px;
    margin-top: 28px;
    padding: 24px;
    border: 1px dashed #77cde8;
    border-radius: 8px;
    color: var(--muted);
    text-align: center;
    background: var(--soft);
}

.map-placeholder i {
    color: var(--water-dark);
    font-size: 2.4rem;
}

.form-card .form-label {
    margin-top: 14px;
    color: var(--navy);
    font-weight: 750;
}

.form-control,
.form-select {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--water);
    box-shadow: 0 0 0 .2rem rgba(8, 169, 214, .15);
}

.form-note {
    margin: 18px 0 0;
    color: var(--muted);
    text-align: center;
}

.form-note a {
    color: var(--water-dark);
    font-weight: 800;
}

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

.timeline-card {
    position: relative;
}

.timeline-card span {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy);
    font-weight: 800;
}

.timeline-card i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--water), var(--water-dark));
    font-size: 1.4rem;
}

.booking-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.booking-flow span {
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    background: var(--white);
    font-weight: 800;
}

.booking-flow i {
    color: var(--water-dark);
}

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.status-card ol {
    display: grid;
    gap: 12px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.status-card li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    background: var(--soft);
    font-weight: 750;
}

.status-card li i {
    color: var(--water-dark);
}

.status-card p {
    color: var(--muted);
}

.footer-section {
    padding: 72px 0 24px;
    color: rgba(255, 255, 255, .78);
    background: var(--navy);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 1fr));
    gap: 42px;
    padding-bottom: 44px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-brand span {
    color: var(--white);
}

.footer-text {
    max-width: 380px;
    margin: 18px 0;
}

.footer-main h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 1.15rem;
}

.footer-main > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-main a {
    color: rgba(255, 255, 255, .78);
}

.footer-main a:hover,
.footer-social a:hover {
    color: var(--water);
}

.footer-main p {
    margin: 0;
}

.footer-main p i {
    width: 20px;
    margin-right: 6px;
    color: var(--water);
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 14px;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .62);
    font-size: .9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .feature-grid,
    .product-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 18px 0 22px;
    }

    .nav-actions {
        flex-direction: column;
    }

    .nav-actions .btn {
        width: 100%;
    }

    .hero-section {
        min-height: 700px;
        padding: 140px 0 70px;
    }

    .hero-bg img {
        object-position: 60% center;
    }

    .split-grid,
    .contact-layout,
    .auth-layout,
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .timeline-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .navbar {
        min-height: 70px;
    }

    .navbar-brand span {
        font-size: 1.12rem;
    }

    .hero-section {
        min-height: 780px;
        padding: 124px 0 58px;
    }

    .hero-slide,
    .hero-slides {
        position: absolute;
    }

    .hero-slide > .container {
        align-items: flex-start;
        padding-top: 124px;
        padding-bottom: 58px;
    }

    .hero-bg {
        left: 0;
        right: 0;
        top: 540px;
    }

    .hero-bg::after {
        background: linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 32%);
    }

    .hero-bg img {
        object-position: 72% bottom;
        filter: contrast(1.08) saturate(1.08);
    }

    .hero-slide--cans .hero-bg img,
    .hero-slide--product .hero-bg img {
        object-position: center center;
        filter: contrast(1.08) saturate(1.08);
    }

    .hero-dots {
        right: 50%;
        bottom: 18px;
        transform: translateX(50%);
    }

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

    .section {
        padding: 64px 0;
    }

    .page-hero,
    .auth-section {
        padding: 122px 0 60px;
    }

    .cta-panel,
    .product-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .feature-grid,
    .product-grid,
    .stats-grid,
    .timeline-grid,
    .testimonial-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .contact-panel,
    .form-card,
    .status-card,
    .service-card,
    .info-card,
    .testimonial-card,
    .timeline-card {
        padding: 22px;
    }

    .hero-actions .btn,
    .cta-panel .btn {
        width: 100%;
    }
}
