/* --- Design System --- */
:root {
    --primary-teal: #2b6e5f;
    /* Dark Teal from STAR text */
    --navy-blue: #0b1131;
    --lime-accent: #c2d240;
    /* Lime Green from the Star icon */
    --bg-white: #ffffff;
    --bg-light: #f7f9fa;
    --text-dark: #222222;
    --text-muted: #666666;
    --header-height: 160px;
    /* XXL Header for unmissable branding */
    --radius-pill: 50px;
    --radius-large: 40px;
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.3s ease;
    --modal-bg: rgba(11, 17, 49, 0.95);
    /* Navy blue with transparency */
    --announcement-height: 0px;
    /* Removed offset to avoid hiding content */
    --gold-accent: #d4af37;
    /* premium gold */
}

/* --- Header Banner --- */
.header-banner {
    background-color: var(--lime-accent);
    color: var(--navy-blue);
    padding: 8px 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    width: 100%;
    pointer-events: auto;
    /* Enable interaction for banner */
}

.header-banner p {
    margin: 0;
}

.header.scrolled .header-banner {
    display: none;
}



/* --- Splash Screen --- */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--navy-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease, visibility 1s ease;
    color: #fff;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
    animation: fadeInScale 0.8s ease-out;
}

.splash-logo-container {
    width: 250px;
    height: 250px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    padding: 2rem;
}

.splash-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.splash-text {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 400;
}

.splash-highlight {
    font-size: 3.5rem;
    color: var(--lime-accent);
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.splash-insurer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.insurer-name {
    color: #fff;
    font-weight: 700;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.section-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Reusable Components --- */
.section {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.section-tag {
    display: inline-block;
    color: var(--primary-teal);
    background-color: rgba(0, 102, 84, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    cursor: pointer;
    text-align: center;
}

.btn-gold {
    background-color: var(--lime-accent);
    color: var(--navy-blue);
    border: none;
    box-shadow: 0 4px 15px rgba(194, 210, 64, 0.3);
    font-weight: 800;
    /* Bolder for prominence */
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(194, 210, 64, 0.5);
}

.btn-outline {
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
}

.btn-outline:hover {
    background-color: var(--primary-teal);
    color: #fff;
}

.btn-pulse {
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(43, 110, 95, 0.7);
    font-size: 1.1rem;
    padding: 1.5rem 3rem;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(43, 110, 95, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(43, 110, 95, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(43, 110, 95, 0);
    }
}

.btn-full {
    width: 100%;
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--modal-bg);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 3rem;
    border-radius: var(--radius-large);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    color: var(--text-dark);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--primary-teal);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-logo-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.modal-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.modal-header h2 {
    color: var(--primary-teal);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-muted);
}

.offer-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.offer-form .form-row .form-group {
    flex: 1;
}

.offer-form .form-group {
    margin-bottom: 1.5rem;
}

.form-consent {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .offer-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.offer-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy-blue);
}

.offer-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.offer-form input:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.gold-line {
    width: 60px;
    height: 4px;
    background: var(--lime-accent);
    margin: 2rem 0;
    border-radius: var(--radius-pill);
}

.shadow-gold {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-large);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    pointer-events: none;
    /* Allow clicks to pass through to content underneath */
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    height: 70px;
    min-height: 70px;
    top: 0;
    /* Move to true top on scroll for better UX */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* Ensure full width */
    pointer-events: auto;
    /* Enable interaction for navigation */
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-logo-container {
    width: 140px;
    /* XXL Logo */
    height: 140px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.header-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 900;
    line-height: 1;
}

.header.scrolled .header-logo-container {
    width: 50px;
    height: 50px;
    padding: 0.3rem;
}

.header.scrolled .logo {
    font-size: 1.8rem;
    color: var(--primary-teal);
}

.header.scrolled .logo-tagline {
    font-size: 0.7rem;
    margin-top: 0;
}

.logo-tagline {
    font-size: 1rem;
    color: var(--lime-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 5px;
    white-space: nowrap;
    /* Prevent wrapping which might cause 'extremity' feel */
}

.header.scrolled .logo-tagline {
    color: var(--primary-teal);
}

.header.scrolled .logo {
    color: var(--primary-teal);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    /* Initial visibility on hero overlay */
}

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

.header.scrolled .nav-link {
    color: var(--navy-blue);
}

.nav-btn {
    border-color: #fff !important;
    color: #fff !important;
}

.header.scrolled .nav-btn {
    border-color: var(--primary-teal) !important;
    color: var(--primary-teal) !important;
}

/* --- Hero --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 102, 84, 0.8), rgba(11, 17, 49, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* --- Benefits --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: var(--radius-large);
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.benefit-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 102, 84, 0.1);
}

.benefit-icon {
    color: var(--primary-teal);
    background-color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-gold);
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* --- Expert Section --- */
.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-large);
    border: 1px solid rgba(43, 110, 95, 0.1);
}

.expert-visual {
    position: relative;
    height: 500px;
}

.initials-avatar {
    width: 250px;
    height: 250px;
    background-color: var(--primary-teal);
    border-radius: var(--radius-large);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    margin: 0 auto;
    position: relative;
}

.initials-avatar::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--lime-accent);
    border-radius: var(--radius-large);
    z-index: -1;
}

.wealth-label-img {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: auto;
    z-index: 10;
    background-color: #fff;
    padding: 10px;
    border-radius: 15px;
}

.expert-title {
    font-size: 1.4rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 600;
}

.partner-logos-container {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.partner-mini-logo {
    height: 100px;
    /* Large format */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
    transition: var(--transition-fast);
}

.partner-mini-logo:hover {
    transform: scale(1.1);
}

/* --- CTA Section --- */
.section-cta {
    background-color: var(--navy-blue);
    color: #fff;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.1rem;
}

/* --- Footer --- */
.footer {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--navy-blue);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--lime-accent);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

/* --- Mobile Adjustments --- */
@media (max-width: 992px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }

    /* Header */
    .header-logo-container {
        width: 80px;
        height: 80px;
        padding: 0.5rem;
    }

    .logo {
        font-size: 2.2rem;
    }

    .logo-tagline {
        font-size: 0.8rem;
    }

    .header .nav-menu {
        display: none;
    }

    /* Splash Screen */
    .splash-logo-container {
        width: 150px;
        height: 150px;
        margin-bottom: 2rem;
    }

    .splash-content h1 {
        font-size: 1.8rem;
    }

    .splash-content h2 {
        font-size: 1.4rem;
    }

    .splash-content p {
        font-size: 1rem;
    }

    /* Hero */
    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-pulse {
        width: 100%;
        font-size: 1rem;
        padding: 1.2rem 2rem;
    }

    /* Sections */
    .section {
        padding: 4rem 0;
    }

    /* Expert */
    .expert-visual {
        max-width: 300px;
        margin: 0 auto 3rem;
    }

    .partner-logos-container {
        justify-content: center;
        gap: 2rem;
    }

    .partner-mini-logo {
        height: 60px;
    }

    /* CTA */
    .cta-title {
        font-size: 2rem;
    }

    /* Modal */
    .modal-content {
        padding: 2rem;
        margin: 15% auto;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }

    .logo-tagline {
        font-size: 0.7rem;
    }

    .header-logo-container {
        width: 60px;
        height: 60px;
    }

    .modal-logo {
        height: 50px;
    }
}

/* ============================================
   DEADLINE SURPRISE POPUP (EMERALD & BLACK)
   ============================================ */

.deadline-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 30000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.deadline-popup-overlay.active {
    display: flex;
}

.deadline-popup-box {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #064e42 100%);
    color: #ffffff;
    border: 1px solid rgba(80, 200, 120, 0.6);
    border-radius: 20px;
    padding: 4rem 2.5rem 3rem;
    max-width: 540px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 0 30px rgba(80, 200, 120, 0.4),
        0 0 60px rgba(80, 200, 120, 0.2),
        0 50px 100px -20px rgba(0, 0, 0, 0.9);
    animation:
        emeraldFadeIn 0.7s cubic-bezier(0.23, 1, 0.32, 1),
        emeraldPulse 3s ease-in-out infinite;
    overflow: hidden;
}

/* Intense pulsating glow animation */
@keyframes emeraldPulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(80, 200, 120, 0.4), 0 50px 100px -20px rgba(0, 0, 0, 0.9);
    }

    50% {
        box-shadow: 0 0 60px rgba(80, 200, 120, 0.8), 0 50px 100px -20px rgba(0, 0, 0, 0.9);
    }
}

/* Inclined Shimmer Sweep */
.deadline-popup-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(80, 200, 120, 0.5) 45%,
            rgba(80, 200, 120, 0.5) 55%,
            transparent 70%);
    animation: shimmerSweep 3.5s infinite;
    z-index: 0;
    pointer-events: none;
    transform: skewX(-20deg);
}

@keyframes shimmerSweep {
    0% {
        left: -150%;
    }

    40%,
    100% {
        left: 150%;
    }
}

.deadline-popup-content,
.deadline-popup-footer {
    position: relative;
    z-index: 1;
    /* Stay above the beam */
}

@keyframes emeraldFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.deadline-popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
}

.deadline-popup-close:hover {
    color: #50c878;
    transform: rotate(90deg);
}

.deadline-popup-content {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.deadline-popup-logo {
    width: 170px;
    height: 170px;
    background: #ffffff;
    border-radius: 50%;
    padding: 28px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 40px rgba(80, 200, 120, 0.4),
        0 0 0 8px rgba(80, 200, 120, 0.15);
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.2));
}

.deadline-popup-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #50c878;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow:
        0 0 10px rgba(80, 200, 120, 0.8),
        0 0 30px rgba(80, 200, 120, 0.4);
}

.deadline-popup-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 90%;
}

.deadline-date-highlight {
    color: #c2d240;
    font-weight: 950;
    font-size: 1.8rem;
    display: block;
    margin-top: 1rem;
    padding: 1.2rem;
    background: rgba(80, 200, 120, 0.15);
    border: 1px solid rgba(80, 200, 120, 0.4);
    border-radius: 12px;
}

.deadline-cta-btn {
    width: 100%;
    padding: 1.4rem;
    background-color: #50c878;
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deadline-cta-btn:hover {
    background-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(80, 200, 120, 0.5);
}

.deadline-popup-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.deadline-popup-agent {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.deadline-popup-role {
    font-size: 0.85rem;
    color: #50c878;
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.deadline-popup-contact {
    margin-top: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.deadline-popup-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.deadline-popup-contact a:hover {
    color: #50c878;
}

/* Responsive Mobile */
@media (max-width: 480px) {
    .deadline-popup-overlay {
        padding: 15px;
    }

    .deadline-popup-box {
        padding: 2.5rem 1.5rem 2rem;
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
        min-height: auto;
        /* Standard modal feel */
        max-height: 90vh;
        overflow-y: auto;
    }

    .deadline-popup-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .deadline-popup-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .deadline-date-highlight {
        font-size: 1.25rem;
        padding: 0.8rem;
    }

    .deadline-popup-logo {
        width: 100px;
        height: 100px;
        padding: 15px;
        margin-bottom: 1.5rem;
    }

    .deadline-popup-agent {
        font-size: 1.1rem;
    }

    .deadline-popup-role {
        font-size: 0.7rem;
    }

    .deadline-popup-contact {
        font-size: 0.95rem;
        margin-top: 1rem;
    }
}
