/* Home Page Specific Styles */

/* Font Definition */
@font-face {
    font-family: 'Calsans';
    src: url('../fonts/CalSans-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ========================================================================
   PREMIUM AGENCY INTRO SECTION - 1:1 REPLICA
   ======================================================================== */
.premium-agency-intro {
    background-color: #acc1fc !important;
    padding: 80px 0 !important;
    overflow: hidden;
}

.premium-agency-intro .container-large {
    max-width: 1800px !important;
    margin: 0 auto !important;
    padding: 0 60px !important;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 20px;
    align-items: start;
}

.intro-content-right {
    align-self: end;
}

.intro-title {
    font-family: 'Calsans', sans-serif !important;
    font-weight: 600 !important;
    font-size: 5.2rem !important; /* Large, premium size */
    color: #1f274e !important;
    line-height: 1.2 !important; /* Extremely tight line height as in official site */
    margin: 0 !important;
    letter-spacing: -0.06rem !important; /* Very tight letter spacing */
    text-transform: none !important;
    max-width: 950px;
}

.intro-marquee-pill {
    background-color: #1f274e !important;
    border-radius: 100px !important;
    height: 50px !important;
    width: 650px !important; /* Exact capsule width */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
    box-shadow: 0 20px 50px rgba(31, 39, 78, 0.2) !important;
}

.footer-logo-text {
    padding: 4rem 0 2rem !important;
    text-align: center !important;
}

.marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll-pill 35s linear infinite;
}

@keyframes scroll-pill {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-item {
    display: flex !important;
    align-items: center !important;
    padding-right: 35px !important;
}

.marquee-text {
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

.marquee-dot {
    background-color: #ffffff !important;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-left: 18px;
}

/* Responsive Overrides */
@media screen and (max-width: 991px) {
    .premium-agency-intro {
        padding: 80px 0 !important;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        justify-items: center;
    }
    .intro-title {
        text-align: center;
        font-size: 3rem !important;
    }
    .intro-marquee-pill {
        width: 100% !important;
        max-width: 400px;
    }
}
