:root {
    --dark: #06314F;
    --blue: #0092D6;
    --green: #27AE60;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Inter', sans-serif;
}

.text-primary-dark { color: var(--dark); }
.text-primary-blue { color: var(--blue); }
.text-accent-green { color: var(--green); }

.nav-pill {
    padding: 10px 20px;
    border-radius: 20px;
    color: var(--dark);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition-speed) ease, transform 0.2s ease;
}

.nav-pill:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
}

.dropdown-box {
    position: absolute;
    top: 110%;
    left: 0;
    width: 230px;
    background: #fff;
    border-radius: 16px;
    padding: 10px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    animation: fadeDown 0.25s ease-out;
    z-index: 50;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    font-weight: 500;
    transition: 0.25s;
}

.dropdown-link:hover {
    background: var(--blue);
    color: #fff;
}

.mobile-pill {
    padding: 12px;
    border-radius: 14px;
    background: rgba(240,248,255,0.7);
    color: var(--dark);
    transition: var(--transition-speed);
}

.mobile-pill:hover {
    background: var(--blue);
    color: #fff;
}

.mobile-sub {
    padding: 8px 0;
    color: var(--dark);
}

.mobile-sub:hover {
    color: var(--blue);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee {
    display: flex;
    flex-wrap: nowrap; /* prevent wrapping */
    gap: 6rem;
    width: max-content;
}

/* RIGHT → LEFT */
.marquee-right {
    animation: scroll-left 20s linear infinite;
}

/* LEFT → RIGHT */
.marquee-left {
    animation: scroll-right 20s linear infinite;
}

/* Pause on hover */
.marquee-wrapper:hover .marquee {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* move by half, because content is duplicated */
}

@keyframes scroll-right {
    from { transform: translateX(-50%); } 
    to { transform: translateX(0); }
}

.marquee img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .marquee img { max-height: 60px; }
}

@media (min-width: 1200px) {
    .marquee img { max-height: 65px; }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.75rem;
    color: #fff;
    transition: all var(--transition-speed) ease;
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.social-icon.whatsapp { background: #25D366; }
.social-icon.instagram { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
}
.social-icon.twitter { background: #000000; }
.social-icon.facebook { background: #1877F2; }

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}