:root {
    --bg: #0b1f1f;
    --bg-soft: #112d2b;
    --accent: #f59f2b;
    --accent-soft: #ffe1b5;
    --text: #f5f2ea;
    --text-muted: #c9c1b4;
    --ink: #0f2d2c;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Sora", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top, #173a38 0%, #0b1f1f 60%, #081616 100%);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(8, 22, 22, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 18px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.nav a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

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

.hero {
    padding: 40px 0 70px;
}

.hero-swiper {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--ink);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    height: clamp(360px, 72vh, 520px);
}

.hero-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
}

.hero-swiper .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(8, 22, 22, 0.85) 0%, rgba(8, 22, 22, 0.4) 60%, rgba(8, 22, 22, 0.15) 100%);
}

.slide-content {
    position: relative;
    padding: clamp(24px, 5vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    width: min(560px, 90%);
    margin: 0 clamp(20px, 6vw, 64px);
    padding-bottom: clamp(72px, 10vh, 110px);
    z-index: 2;
    animation: rise 0.8s ease;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

h1,
h2,
h3 {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    margin: 0;
}

h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 0.95;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

h3 {
    font-size: 1.6rem;
}

.slide-content p {
    max-width: 40ch;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--accent);
    color: var(--ink);
}

.btn.solid {
    background: var(--accent);
    color: var(--ink);
}

.swiper-controls {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 5;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    position: static;
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(15, 45, 44, 0.7);
    color: var(--text);
    z-index: 2;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

.hero-swiper .swiper-pagination {
    display: flex;
    gap: 8px;
    order: 2;
}

.hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 1;
    background: rgba(255, 255, 255, 0.4);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}

.section {
    padding: 80px 0;
}

.section.alt {
    background: linear-gradient(120deg, rgba(15, 45, 44, 0.85), rgba(8, 22, 22, 0.95));
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.pill-grid span {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(245, 159, 43, 0.15);
    color: var(--accent-soft);
    font-size: 13px;
    border: 1px solid rgba(245, 159, 43, 0.4);
}

.image-stack img {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}

.card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.card img {
    border-radius: 16px;
    margin-bottom: 16px;
}

.contact {
    background: radial-gradient(circle at right, rgba(245, 159, 43, 0.15) 0%, rgba(8, 22, 22, 0.98) 55%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 12px;
    padding: 24px;
    background: rgba(15, 45, 44, 0.75);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 14px;
    background: rgba(8, 22, 22, 0.7);
    color: var(--text);
    font-family: inherit;
}

.contact-form label {
    font-size: 13px;
    color: var(--text-muted);
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
}

.form-status {
    margin: 0;
    font-size: 13px;
    color: var(--accent-soft);
}

.form-status.is-error {
    color: #ff9a9a;
}

.site-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: center;
}

.footer-title {
    margin: 0 0 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: -webkit-center;
}

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

.list-sm .list-item {
    margin-bottom: 6px;
}

.link {
    color: var(--text-muted);
}

.link:hover {
    color: var(--accent);
}

.link-inherit {
    color: inherit;
}

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

.footer-logos img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.footer-meta {
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
}

.brand-footer {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    margin: 0 0 8px;
}

.footer-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.footer-links a {
    color: var(--text-muted);
}

.hide-mobile {
    display: block;
}

.show-mobile {
    display: none;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    z-index: 30;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

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

@media (max-width: 1024px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .hero-swiper {
        height: clamp(340px, 65vh, 460px);
    }

    .slide-content {
        max-width: 520px;
    }
}

@media (max-width: 820px) {
    .nav {
        display: none;
    }

    .header-inner {
        padding: 8px 0;
    }

    .brand span {
        font-size: 0.95rem;
    }

    .brand img {
        width: 110px;
        height: auto;
    }

    .hero-swiper {
        height: clamp(320px, 60vh, 380px);
    }

    .slide-content {
        max-width: 90%;
    }

    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }
}

@media (max-width: 640px) {
    .hero-swiper .swiper-slide {
        align-items: flex-start;
    }

    .slide-content {
        margin: 0 auto;
        padding: 22px 20px 86px;
        width: min(520px, 92%);
    }

    h1 {
        font-size: 2.1rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .slide-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 560px) {
    .hero {
        padding: 24px 0 50px;
    }

    .swiper-controls {
        bottom: 16px;
    }

    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        width: 34px;
        height: 34px;
    }

    .hero-swiper .swiper-pagination {
        gap: 6px;
    }

    .slide-content {
        padding: 20px 18px 82px;
    }

    .btn {
        width: 100%;
    }

    .card {
        padding: 16px;
    }

    .contact-form {
        padding: 18px;
    }

    .contact-details p {
        margin: 6px 0;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .hide-mobile {
        display: none;
    }

    .show-mobile {
        display: block;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .hero-swiper {
        height: clamp(300px, 58vh, 340px);
    }

    .swiper-controls {
        gap: 12px;
    }
}
