:root {
    --primary: #1b6dc1;
    --primary-dark: #104c90;
    --primary-light: #e5f1ff;
    --secondary: #0f172a;
    --text: #1f2a3d;
    --muted: #5f6c7b;
    --background: #ffffff;
    --alt-background: #f5f7fb;
    --card: #ffffff;
    --shadow: 0 26px 52px rgba(15, 23, 42, 0.12);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', Arial, sans-serif;
    margin: 0;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

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

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

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 24px 44px rgba(27, 109, 193, 0.32);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

.btn-outline {
    border: 1px solid rgba(31, 42, 61, 0.25);
    color: var(--text);
    background: transparent;
}

.btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary);
}

.section {
    padding: 90px 24px;
}

.section.alt {
    background: var(--alt-background);
}

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

.section-header h2 {
    margin: 0 0 16px;
    font-size: 2.45rem;
}

.section-header p {
    margin: 0;
    color: var(--muted);
}

.section-actions {
    text-align: center;
    margin-top: 36px;
}

.hero-banner {
    position: relative;
    min-height: 90vh;
    color: #fff;
    background: #0c1630;
    overflow: hidden;
}

.hero-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    opacity: 0;
    transition: opacity 0.8s ease, transform 18s ease;
}

.hero-banner__bg.is-visible {
    opacity: 1;
}

.hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(8, 18, 40, 0.82) 12%, rgba(34, 88, 168, 0.62) 62%, rgba(8, 18, 40, 0.8) 96%);
    pointer-events: none;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 24px 0;
    position: relative;
    z-index: 20;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
}

.navbar:not(.hero-navbar) .nav-toggle .bar {
    background: rgba(31, 42, 61, 0.85);
}

.nav-links {
    display: flex;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 56px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.navbar:not(.hero-navbar) .nav-links a {
    color: var(--text);
}

.navbar:not(.hero-navbar) .nav-links a:hover {
    color: var(--primary);
}

.hero-banner__content {
    position: relative;
    z-index: 20;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 24px 48px;
}

.hero-banner__content .btn {
    text-transform: none;
}

.btn-hero {
    letter-spacing: 0.02em;
    border-radius: 999px;
    padding: 0.9rem 1.9rem;
    font-size: 1rem;
    line-height: 1.15;
}

.btn-hero--primary {
    background: linear-gradient(135deg, #2f7bff 0%, #2153d4 100%);
    color: #fff;
    box-shadow: 0 30px 54px rgba(38, 105, 245, 0.45);
    border: none;
}

.btn-hero--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 36px 68px rgba(38, 105, 245, 0.55);
    filter: brightness(1.05);
}

.btn-hero--secondary {
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.btn-hero--secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1f3f7a;
    transform: translateY(-3px);
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.28);
}

.carousel {
    position: relative;
    overflow: hidden;
    --carousel-gap: 24px;
}

.carousel__viewport {
    overflow: hidden;
    width: 100%;
    min-height: 300px;
}

.carousel__track {
    display: flex;
    align-items: stretch;
    gap: var(--carousel-gap);
    transition: transform 0.6s ease;
    will-change: transform;
}

.carousel__slide {
    flex: 0 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
}

.carousel__slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.carousel__slide--media {
    background: #10203f;
    color: #fff;
}

.carousel__slide--media .carousel__caption {
    background: linear-gradient(180deg, rgba(16, 32, 63, 0.85) 0%, rgba(16, 32, 63, 0.58) 100%);
    color: #fff;
}

.carousel--partners .carousel__viewport {
    min-height: 200px;
}

.carousel--partners .carousel__slide {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(27, 109, 193, 0.18);
    box-shadow: 0 20px 38px rgba(15, 34, 63, 0.12);
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.partner-card img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    filter: saturate(1.05);
}

.partner-logo {
    width: 200px;
    height: 90px;
}

.partner-card {
    display: grid;
    place-items: center;
}

.carousel--partners .carousel__control {
    background: rgba(15, 23, 42, 0.16);
    color: #1b2d58;
}

.carousel--partners .carousel__control:hover {
    background: rgba(15, 23, 42, 0.26);
}

.carousel__caption {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.carousel__caption h3 {
    margin: 0;
    font-size: 1.25rem;
}

.carousel__caption p {
    margin: 0;
    color: inherit;
    opacity: 0.9;
    font-size: 0.95rem;
}

.carousel__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.18);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 3;
}

.carousel__control--prev {
    left: 14px;
}

.carousel__control--next {
    right: 14px;
}

.carousel__control:hover {
    background: rgba(15, 23, 42, 0.32);
    transform: translateY(-50%) scale(1.05);
}

.carousel__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.22);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel__dot.is-active {
    background: var(--primary);
    transform: scale(1.15);
}

.domain-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 245, 255, 0.94) 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 50px rgba(15, 34, 63, 0.15);
    border: 1px solid rgba(27, 109, 193, 0.18);
    border-top: 4px solid rgba(42, 109, 245, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 60px rgba(15, 34, 63, 0.2);
}

.domain-card img {
    height: 200px;
}

.domain-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.domain-card__body h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #164481;
}

.domain-card__body p {
    margin: 0;
    color: rgba(31, 42, 61, 0.82);
    font-size: 0.95rem;
}

.services-list {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}

.services-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 30px;
    background: radial-gradient(circle at top left, rgba(47, 123, 255, 0.16), rgba(240, 247, 255, 0.88));
    box-shadow: 0 36px 64px rgba(15, 40, 80, 0.18);
    border: 1px solid rgba(27, 109, 193, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(47, 123, 255, 0.18), rgba(58, 194, 145, 0.22));
    color: #143a6c;
    font-size: 1.6rem;
    margin-bottom: 18px;
    box-shadow: 0 18px 36px rgba(27, 109, 193, 0.18);
}

.services-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 46px 88px rgba(15, 40, 80, 0.25);
}

.services-card h3 {
    margin: 0 0 16px;
    font-size: 1.35rem;
    color: #12386d;
}

.services-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(31, 42, 61, 0.85);
    font-size: 0.95rem;
}

.services-card li {
    margin-bottom: 14px;
    padding-left: 34px;
    position: relative;
    line-height: 1.55;
}

.services-card li:last-child {
    margin-bottom: 0;
}

.services-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: linear-gradient(135deg, #2f7bff 0%, #3ac291 100%);
    box-shadow: 0 12px 20px rgba(47, 123, 255, 0.25);
}

.product-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product-card__image img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.product-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card__category {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.product-card__tags {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.9rem;
}

.product-card__actions {
    margin-top: auto;
}

.sector-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.sector-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    background: linear-gradient(135deg, rgba(246, 250, 255, 0.96) 0%, rgba(229, 240, 255, 0.9) 100%);
    border: 1px solid rgba(27, 109, 193, 0.14);
    box-shadow: 0 30px 52px rgba(16, 44, 92, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.sector-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(27, 109, 193, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.sector-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(27, 109, 193, 0.14);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 1.6rem;
    color: #12386d;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px rgba(16, 44, 92, 0.22);
}

.sector-card h3 {
    margin: 0 0 12px;
    color: #12386d;
    font-size: 1.22rem;
}

.sector-card p {
    margin: 0;
    color: rgba(31, 42, 61, 0.82);
    line-height: 1.55;
}

.store-page {
    background: var(--alt-background);
}

.store-header {
    background: linear-gradient(135deg, #ffffff 0%, #e9f2ff 100%);
    padding: 24px 24px 90px;
}

.store-hero {
    max-width: 1180px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.store-hero__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.store-hero__actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.store-main {
    max-width: 1180px;
    margin: -60px auto 90px;
    padding: 0 24px;
}

.store-toolbar {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 26px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
}

.store-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.store-search input,
.store-select select {
    border-radius: 999px;
    border: 1px solid rgba(31, 42, 61, 0.2);
    padding: 0.6rem 1.2rem;
    min-width: 240px;
    font: inherit;
}

.store-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.store-summary span {
    color: var(--muted);
    font-size: 0.9rem;
}

.store-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.store-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.store-card__image img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.store-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-card__head span {
    display: inline-flex;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 999px;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 0.85rem;
}

.store-card__head h2 {
    margin: 12px 0 0;
    font-size: 1.55rem;
}

.store-card__tags {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-size: 0.95rem;
}

.store-card__footer {
    margin-top: auto;
}

.store-help {
    margin-top: 56px;
}

.store-help__card {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.store-help__card h2 {
    margin-top: 0;
    font-size: 2rem;
}

.contact-cta {
    padding: 0 24px 80px;
}

.cta-card {
    max-width: 960px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1b6dc1, #104c90);
    color: #fff;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 60px rgba(27, 109, 193, 0.34);
    text-align: center;
}

.cta-card h2 {
    margin: 0 0 16px;
    font-size: 2.2rem;
}

.cta-card p {
    margin: 0 0 24px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
}

.contact-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.contact-details {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 32px;
}

.contact-details h3 {
    margin-top: 0;
}

.contact-details p {
    margin-bottom: 12px;
    color: var(--muted);
}

.map-wrapper iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.footer {
    background: #0f172a;
    color: #fff;
    padding: 34px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.footer a {
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.whatsapp-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.38);
    transition: transform 0.2s ease;
}

.whatsapp-fab:hover {
    transform: translateY(-3px);
}

.whatsapp-fab svg {
    width: 36px;
    height: 36px;
}

@media (max-width: 1024px) {
    .navbar {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 20px 18px;
    }

    .logo {
        margin-right: auto;
    }

    .carousel {
        --carousel-gap: 20px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        right: 18px;
        left: 18px;
        background: rgba(12, 25, 53, 0.96);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-lg);
        padding: 20px 24px;
        flex-direction: column;
        gap: 18px;
        display: none;
        margin-left: 0;
        z-index: 200;
    }

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

    .navbar:not(.hero-navbar) .nav-links {
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    }

    .hero-banner.menu-open .hero-banner__content {
        filter: blur(3px) brightness(0.8);
        pointer-events: none;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 70px 18px;
    }

    .hero-banner__content {
        padding-bottom: 64px;
    }

    .carousel {
        --carousel-gap: 16px;
    }

    .logo img {
        height: 100px;
    }

    .carousel__slide img {
        height: 200px;
    }

    .product-grid,
    .services-list,
    .sector-grid {
        grid-template-columns: 1fr;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    clip: rect(0, 0, 0, 0);
    border: 0;
    overflow: hidden;
    white-space: nowrap;
}
