/* Modern Components - FINAL COMPLETE VERSION */

/* 1. Navbar - Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    /* backdrop-filter: blur(12px); REMOVED for scroll performance - replaced with solid background */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { 
    display: flex;
    align-items: center;
}
.logo img { 
    height: 40px; 
    width: auto;
    display: block;
}

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-link { 
    font-weight: 500; 
    color: #111827; 
    font-size: 15px;
}
.nav-link:hover, .nav-link.active { color: #E34E73; }

/* Hamburger */
.hamburger {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #111827;
}

/* 2. BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    text-align: center;
}

.btn-primary,
a.btn-primary {
    background-color: #E95676 !important;
    background: linear-gradient(135deg, #E95676 0%, #ECAD66 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
}

.btn-primary:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: none !important;
    color: #ffffff !important;
    opacity: 0.95;
}

.btn-secondary,
a.btn-secondary {
    background-color: #ffffff;
    color: #111827 !important;
    border: 2px solid #E44E73;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    background-color: #F8F5FA;
    color: #E44E73 !important;
    border-color: #E44E73;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* 3. Cards */
.card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: rgba(228, 78, 115, 0.2);
}

.pillar-card {
    border-top: none;
    text-align: center;
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* 4. HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh !important; /* Full viewport height on desktop */
    min-height: 100dvh !important; /* Full viewport height with dynamic viewport units */
    padding: 0 !important;
    background: url('../images/Hero.png') no-repeat center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
    color: #ffffff !important;
    text-align: center;
    overflow-x: hidden;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .container {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
    padding-top: 0;
    padding-bottom: 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: #ffffff;
    margin-bottom: 24px;
}

.hero p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero .btn-primary {
    background: linear-gradient(135deg, #E95676 0%, #ECAD66 100%) !important;
    background-color: #E95676 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}
.hero .btn-primary:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #E95676 0%, #ECAD66 100%) !important;
    opacity: 0.95;
}

.hero .btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff !important;
    box-shadow: none;
}
.hero .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff !important;
    border-color: #ffffff;
}

/* 5. Ticker */
.ticker-wrap {
    background: #000;
    color: white;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

/* 6. Footer (3 Column) */
.footer {
    background: #0f0f12;
    color: #e5e5e5;
    padding: 80px 0 40px;
    font-size: 15px;
}

.footer h4 { 
    color: white; 
    margin-bottom: 24px; 
    font-family: 'Outfit', sans-serif;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 12px;
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover { 
    color: #E44E73; 
}

.footer-logo img {
    max-width: 140px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        text-align: left;
        align-items: start;
    }
}

/* --- Professional Icon Circles --- */
.icon-circle {
    width: 64px;           
    height: 64px;          
    border-radius: 50%;    
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 24px;
    transition: all 0.3s ease;
}

/* Pink */
.icon-pink { background-color: rgba(228, 78, 115, 0.1); color: #E44E73; }
.card:hover .icon-pink, a.icon-pink:hover { background-color: #E44E73; color: white; }

/* Purple */
.icon-purple { background-color: rgba(158, 64, 165, 0.1); color: #9E40A5; }
.card:hover .icon-purple, a.icon-purple:hover { background-color: #9E40A5; color: white; }

/* Orange */
.icon-orange { background-color: rgba(239, 148, 94, 0.1); color: #EF945E; }
.card:hover .icon-orange, a.icon-orange:hover { background-color: #EF945E; color: white; }

/* Teal */
.icon-teal { background-color: rgba(94, 204, 236, 0.1); color: #5ECCEC; }
.card:hover .icon-teal, a.icon-teal:hover { background-color: #5ECCEC; color: white; }

/* NEW: Black (X/Twitter) */
.icon-black { background-color: rgba(0, 0, 0, 0.05); color: #111; }
.card:hover .icon-black, a.icon-black:hover { background-color: #000; color: white; }

/* Footer Social Icons - White Outline */
#social-links-container a {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border: 1px solid #ffffff !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    background-color: transparent !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

#social-links-container a i {
    color: #ffffff !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 6 Brands" !important;
}

#social-links-container a .fa-x-twitter {
    color: #ffffff !important;
    fill: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

#social-links-container a .fa-x-twitter::before {
    color: #ffffff !important;
}

#social-links-container a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

#social-links-container a:hover i {
    color: #ffffff !important;
}

#social-links-container a:hover .fa-x-twitter {
    color: #ffffff !important;
    fill: #ffffff !important;
}