* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    background-color: var(--color-surface, #ffffff);
    color: var(--color-text-dark, #1f2233);
    line-height: 1.6;
}

:root {
    --section-padding: clamp(4rem, 10vw, 6.5rem);
    --color-primary: #0066cc;
    --color-primary-soft: rgba(0, 102, 204, 0.12);
    --color-text-dark: #1f2233;
    --color-muted: #6b6f8b;
    --color-lead: #bac1fb;
    --color-surface: #ffffff;
}


main {
    overflow: hidden;
}

.section {
    padding-block: var(--section-padding);
}

.section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-text-dark);
}

@media (max-width: 576px) {
    .section__title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }
}

.section__eyebrow {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 1rem;
}

.section__lead {
    color: var(--color-lead);
    margin-top: 1rem;
}

.playful-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.playful-divider__line {
    flex: 1;
    height: 4px;
    border-radius: 999px;
    background: var(--color-primary), rgba(0, 102, 204, 0.3);
}

.playful-divider__icons {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(123, 93, 240, 0.12);
    box-shadow: 0 18px 45px rgba(0, 102, 204, 0.12);
}

.playful-divider__icons .emoji {
    font-size: 1.25rem;
}

.btn-primary {
    background: var(--color-primary);
    border: none;
    box-shadow: 0 12px 25px rgba(0, 102, 204, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(0, 102, 204, 0.28);
}

.btn-outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.section--cta {
    background: var(--color-primary), rgba(32, 201, 151, 0.08);
}

.navbar {
    background-color: rgba(245, 247, 250, 0.92);
    backdrop-filter: blur(12px);
    padding-block: 0.5rem;
}

.navbar-brand {
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    min-width: 0;
    width: auto;
    flex: 0 1 auto;
}

.brand-logo {
    width: clamp(200px, 22vw, 320px);
    height: clamp(120px, 16vw, 200px);
    object-fit: contain;
    filter: brightness(1.2) contrast(0.9) opacity(0.85);
    background: transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-logo {
    filter: brightness(1.1) contrast(1) opacity(0.95);
    transform: scale(1.08);
}

.brand-text {
    display: inline-block;
    word-wrap: break-word;
    max-width: 320px;
    flex: 1 1 0;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
}

@media (max-width: 991px) {
    .brand-text {
        max-width: 220px;
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        flex-wrap: wrap;
    }

    .brand-mark {
        flex: 0 0 auto;
    }

    .brand-text {
        max-width: 100%;
        font-size: 0.9rem;
        line-height: 1.3;
        word-break: break-word;
        flex: 1 1 100%;
        align-self: stretch;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        width: clamp(180px, 26vw, 240px);
        height: clamp(110px, 18vw, 190px);
    }

    .brand-text {
        font-size: 0.8rem;
        max-width: 100%;
    }
}

.navbar-brand .brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.nav-link {
    color: #1f2233;
    font-weight: 600;
    margin-inline: 0.25rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: #0066cc;
    bottom: -6px;
    left: 0;
    transition: all 0.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hero {
    position: relative;
    color: var(--hero-text-color, #ffffff);
    background: var(--hero-bg, #0066cc);
    overflow: hidden;
    transition: background 0.6s ease, color 0.6s ease;
}

.hero__sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: var(--hero-bg, #0066cc), transparent 65%;
    animation: twinkle 8s linear infinite;
    opacity: 0.65;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.hero::before {
    width: 460px;
    height: 460px;
    top: -160px;
    left: -120px;
}

.hero::after {
    width: 520px;
    height: 520px;
    bottom: -260px;
    right: -180px;
}

.hero__content {
    padding-block: clamp(3rem, 7vw, 5rem);
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-block: 1.2rem 0.75rem;
    max-width: 24ch;
}

.hero__lead {
    max-width: 40ch;
    font-size: 1.05rem;
    color: var(--hero-subtext-color, rgba(255, 255, 255, 0.82));
    margin-bottom: 2rem;
}

.hero__text-card {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border-radius: clamp(1.2rem, 2.5vw, 2rem);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    color: inherit;
}

.hero__text-card h1,
.hero__text-card h2,
.hero__text-card h3,
.hero__text-card p,
.hero__eyebrow,
.hero__headline,
.hero__lead,
.hero__features,
.hero__feature {
    color: inherit;
}
.hero__highlight {
    position: relative;
    display: inline-block;
    color: var(--hero-highlight-color, #f7f7f7);
    -webkit-text-fill-color: var(--hero-highlight-color, #f7f7f7);
    font-weight: 700;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: inherit;
    font-weight: 500;
}

.hero__feature-icon {
    font-size: 1.2rem;
}

.hero__cta {
    transition: all 0.3s ease;
    border-radius: 50px;
    padding-inline: 2rem;
    color: inherit;
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero__cta.btn-outline-light {
    color: var(--hero-subtext-color, rgba(255, 255, 255, 0.85));
    border-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .hero__cta {
        padding-inline: 1.5rem;
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero__cta {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

.hero__visual {
    position: relative;
    max-width: 460px;
    margin-inline: auto;
    padding: clamp(0.5rem, 1.5vw, 0.9rem);
}

.hero__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    padding: clamp(1.4rem, 3vw, 2.4rem);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 102, 204, 0.15);
    border: 6px solid rgba(255, 255, 255, 0.25);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero__image--transition {
    opacity: 0;
    transform: scale(0.96);
}

.orbit {
    position: absolute;
    inset: -50px;
    border-radius: 38% 62% 61% 39% / 48% 37% 63% 52%;
    border: 2px dashed var(--hero-orbit-color, rgba(255, 255, 255, 0.25));
    animation: orbit-spin 12s linear infinite;
}

.planet {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--hero-planet-color, rgba(255, 255, 255, 0.9));
    box-shadow: 0 0 18px var(--hero-planet-glow, rgba(255, 255, 255, 0.6));
}

.planet--1 {
    top: 10%;
    left: 20%;
}

.planet--2 {
    top: 25%;
    right: 12%;
}

.planet--3 {
    bottom: 20%;
    left: 15%;
}

.planet--4 {
    bottom: 18%;
    right: 18%;
}


@keyframes orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0.65;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

.section--about {
    background: #ffffff;
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.stats-item {
    padding: 1.5rem;
    border-radius: 20px;
    background: #e6f2ff;
    border: 1px solid rgba(0, 102, 204, 0.12);
    box-shadow: 0 12px 28px rgba(37, 51, 97, 0.08);
}

.stats-item__label {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #0066cc;
    display: block;
    margin-bottom: 0.75rem;
}

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.link-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-more:hover::after {
    transform: translateX(4px);
}

.layered-card {
    position: relative;
    padding: clamp(2rem, 4vw, 2.8rem);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 102, 204, 0.15);
    border: 1px solid rgba(0, 102, 204, 0.12);
}

.layered-card::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    background: rgba(0, 102, 204, 0.05);
    z-index: -1;
}

.layered-card__badge {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(0, 102, 204, 0.12);
    color: #0099ff;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.layered-card__list {
    margin: 1.5rem 0 1rem;
    padding-left: 1.25rem;
    color: #1f2233;
    display: grid;
    gap: 0.5rem;
}

.layered-card__list li::marker {
    color: #0099ff;
}

.layered-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #0066cc;
}

.layered-card__divider {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0099ff;
}

.section--values {
    background: #0066cc, rgba(32, 201, 151, 0.08);
}

.values-grid {
    position: relative;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.value-card {
    padding: 1.75rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 102, 204, 0.12);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.12);
    position: relative;
    overflow: hidden;
}

.values-grid::before {
    content: '';
    position: absolute;
    inset: -80px 5% auto;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 209, 102, 0.25), transparent 65%);
    filter: blur(12px);
    animation: shimmer 9s ease-in-out infinite;
    pointer-events: none;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0066cc, transparent 65%;
    opacity: 0;
    transition: all 0.35s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #6b6f8b;
    margin-bottom: 0;
}

.section--brands {
    background: #ffffff;
}

.brand-carousel {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1.25rem, 4vw, 2rem);
    justify-items: center;
    width: min(100%, 1200px);
    margin: 0 auto 3rem;
    padding-inline: clamp(0.5rem, 2vw, 1.5rem);
    grid-auto-rows: auto;
}

.brand-carousel::before {
    content: '';
    position: absolute;
    inset: -40px 10% auto;
    height: 120px;
    border-radius: 120px;
    background: radial-gradient(circle at center, rgba(255, 209, 102, 0.18), transparent 65%);
    filter: blur(8px);
    opacity: 0.9;
    pointer-events: none;
}

.brand-card {
    position: relative;
    width: min(100%, clamp(220px, 34vw, 300px));
    min-height: auto;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    overflow: visible;
    transition: none;
}

.brand-card__logo {
    width: clamp(150px, 32vw, 260px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(25, 35, 90, 0.2));
    transition: transform 0.45s ease;
    display: block;
    max-width: 100%;
}

.brand-card:hover .brand-card__logo {
    transform: scale(1.08) translateY(-6px);
}

.brand-card__logo--large {
    width: clamp(150px, 40vw, 200px) !important;
    height: clamp(130px, 38vw, 180px) !important;
}


@media (max-width: 1000px) {
    .brand-carousel {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
        gap: clamp(1rem, 3vw, 1.5rem);
    }

    .brand-card__logo {
        width: clamp(140px, 28vw, 220px);
    }
}

@media (min-width: 1001px) {
    .brand-carousel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .brand-card:nth-child(odd) .brand-card__logo {
        animation-delay: -1.5s;
    }

    .brand-card:nth-child(even) .brand-card__logo {
        animation-delay: -3s;
    }
}

@media (max-width: 640px) {
    .brand-carousel {
        grid-template-columns: repeat(1, minmax(180px, 1fr));
        gap: 1rem;
    }

    .brand-card__logo {
        width: min(240px, 100%);
        max-width: 100%;
        margin-inline: auto;
    }
}

.brand-marquee {
    overflow: hidden;
    padding-block: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 204, 0.08);
    background: rgba(0, 102, 204, 0.04);
}

.brand-confetti {
    position: absolute;
    inset: -20px;
    pointer-events: none;
    overflow: hidden;
}

.brand-confetti span {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    opacity: 0;
    animation: confetti-fall 7s linear infinite;
}

.brand-confetti span:nth-child(1) {
    left: 10%;
    background: #f39c12;
    animation-delay: 0s;
}

.brand-confetti span:nth-child(2) {
    left: 30%;
    background: #0099ff;
    animation-delay: 1.2s;
}

.brand-confetti span:nth-child(3) {
    left: 45%;
    background: #27ae60;
    animation-delay: 0.6s;
}

.brand-confetti span:nth-child(4) {
    left: 60%;
    background: #4dabf7;
    animation-delay: 2s;
}

.brand-confetti span:nth-child(5) {
    left: 75%;
    background: #c77dff;
    animation-delay: 1.5s;
}

.brand-confetti span:nth-child(6) {
    left: 90%;
    background: #ff81aa;
    animation-delay: 0.9s;
}

.brand-marquee__track {
    display: flex;
    gap: clamp(3.5rem, 7vw, 6rem);
    animation: marquee 18s linear infinite;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(0, 102, 204, 0.8);
}

.brand-marquee__track span {
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-120%) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(120%) rotate(160deg);
        opacity: 0;
    }
}

@keyframes shimmer {
    0%,
    100% {
        opacity: 0.45;
        transform: translateY(0);
    }

    50% {
        opacity: 0.75;
        transform: translateY(12px);
    }
}

.section--departments {
    background: #0066cc;
}

.timeline {
    position: relative;
    display: grid;
    gap: 1.5rem;
}

.timeline::after {
    content: '';
    position: absolute;
    inset: auto 12% -60px;
    height: 120px;
    border-radius: 120px;
    background: #0066cc, rgba(199, 125, 255, 0.1);
    filter: blur(8px);
    pointer-events: none;
}

.timeline::before {
    content: '';
    position: absolute;
    inset: 0 50%;
    width: 4px;
    margin-left: -2px;
    background: #0066cc, rgba(0, 102, 204, 0.4);
    border-radius: 999px;
}

.timeline__item {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 102, 204, 0.12);
    box-shadow: 0 18px 32px rgba(46, 59, 110, 0.08);
}

.timeline__item::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0099ff;
    box-shadow: 0 0 0 6px rgba(0, 102, 204, 0.12);
    animation: pulse-dot 4s ease-in-out infinite;
}

.timeline__icon {
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #0066cc;
    background: rgba(0, 102, 204, 0.12);
}

.timeline__content h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.timeline__content p {
    color: #6b6f8b;
    margin: 0;
}

.timeline__badge-shelf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-top: 2.25rem;
}

.timeline__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(230, 242, 255, 0.95) 100%);
    color: #0066cc;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(0, 102, 204, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline__badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.timeline__badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 102, 204, 0.5);
}

.timeline__badge:nth-child(2n) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(224, 242, 255, 0.95) 100%);
    color: #0099ff;
    border: 1.5px solid rgba(0, 153, 255, 0.3);
}

.timeline__badge:nth-child(2n):hover {
    box-shadow: 0 8px 20px rgba(0, 153, 255, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 153, 255, 0.6);
}

.timeline__badge:nth-child(3n) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(217, 235, 255, 0.95) 100%);
    color: #0066cc;
    border: 1.5px solid rgba(0, 102, 204, 0.25);
}

.timeline__badge:nth-child(3n):hover {
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 102, 204, 0.5);
}

.timeline__badge-icon {
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        position: relative;
    }

    .timeline::before {
        inset: 0;
        left: 50%;
        margin-left: -2px;
    }

    .timeline__item {
        padding-left: 4.5rem;
    }
}

@keyframes pulse-dot {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

.cta-card {
    position: relative;
    padding: 2.25rem;
    border-radius: 28px;
    background: #0066cc, rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 102, 204, 0.12);
    box-shadow: 0 25px 40px rgba(0, 102, 204, 0.12);
    overflow: hidden;
}

.cta-card::after {
    content: '';
    position: absolute;
    inset: -24px -14px auto auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.35), transparent 70%);
    opacity: 0.7;
    animation: twinkle 8s linear infinite;
}

.cta-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.cta-card ul {
    padding-left: 1.1rem;
    margin-bottom: 1.5rem;
    color: #1f2233;
}

.cta-card li::marker {
    color: #0066cc;
}

.section--contact {
    background: #ffffff;
}

.contact-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.contact-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.15rem;
}

.contact-item {
    margin-top: 2rem;
    font-style: normal;
}

.contact-item .label {
    display: block;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.35rem;
}

.contact-item address {
    margin: 0;
    font-style: normal;
    line-height: 1.6;
}

.contact-list .label {
    font-weight: 700;
    color: #0066cc;
    margin-right: 0.5rem;
    min-width: 130px;
    flex: 0 0 auto;
}

.contact-form {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 28px;
    background: #e6f2ff;
    border: 1px solid rgba(0, 102, 204, 0.12);
    box-shadow: 0 22px 38px rgba(45, 62, 108, 0.14);
}

.contact-form .btn {
    padding-block: 0.85rem;
    font-weight: 700;
}

@media (max-width: 576px) {
    .contact-form {
        padding: 1.25rem;
    }

    .contact-form .btn {
        padding-block: 0.75rem;
    }
}

.section--gallery {
    background: #ffffff;
    padding-block: clamp(4rem, 8vw, 6rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.section--gallery .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    width: 75%;
    height: clamp(300px, 50vw, 500px);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0, 102, 204, 0.12);
    margin: 2rem auto 0 auto;
}

@media (max-width: 1024px) {
    .gallery-slider {
        width: 90%;
        height: clamp(250px, 45vw, 400px);
    }
}

@media (max-width: 768px) {
    .gallery-slider {
        width: 95%;
        height: clamp(220px, 60vw, 350px);
    }
}

@media (max-width: 576px) {
    .gallery-slider {
        width: 100%;
        height: clamp(200px, 70vw, 280px);
        margin: 1.5rem 0 0 0;
    }
}

.gallery-track {
    display: flex;
    width: 1200%;
    height: 100%;
    transition: transform 1.2s ease;
}

.gallery-track img {
    width: calc(100% / 12);
    height: 100%;
    object-fit: fill;
    flex-shrink: 0;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #0066cc;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

@media (max-width: 768px) {
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .gallery-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

.gallery-btn:hover {
    background: #0066cc;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.gallery-btn--prev {
    left: 1rem;
}

.gallery-btn--next {
    right: 1rem;
}

.gallery-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-indicator.active {
    background: #0066cc;
}

.gallery-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}



.mini-gallery-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 102, 204, 0.12);
}

.mini-gallery-track {
    display: flex;
    width: 600%;
    height: 100%;
    animation: slide-mini-gallery 25s linear infinite;
}

.mini-gallery-track img {
    width: calc(100% / 6);
    height: 100%;
    object-fit: fill;
    flex-shrink: 0;
}

@keyframes slide-mini-gallery {
    0% { transform: translateX(0); }
    20% { transform: translateX(-20%); }
    40% { transform: translateX(-40%); }
    60% { transform: translateX(-60%); }
    80% { transform: translateX(-80%); }
    100% { transform: translateX(-100%); }
}

.footer {
    position: relative;
    background: #0066cc;
    color: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 0 2rem;
    margin-top: 4rem;
}

.footer__social {
    display: flex;
    gap: 1.5rem;
}

.footer__social a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer__social a:hover {
    color: #0099ff;
}

.scroll-top {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    box-shadow: 0 12px 20px rgba(17, 21, 45, 0.2);
    cursor: pointer;
    transition: all 0.35s ease;
    opacity: 0;
    pointer-events: none;
}

.scroll-top:hover {
    transform: translateY(-6px);
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate='fade-in'].is-visible,
[data-animate='fade-up'].is-visible,
[data-animate='scale-in'].is-visible {
    opacity: 1;
    transform: none;
}

[data-animate='scale-in'] {
    transform: scale(0.92);
}

[data-animate='scale-in'].is-visible {
    transform: scale(1);
}









