:root {
    --pink-primary: #ff69b4;
    --pink-secondary: #ff1493;
    --pink-light: #fff0f5;
    --pink-dark: #c71585;
    --pink-gradient: linear-gradient(135deg, #ff69b4, #ff1493);
    --pink-gradient-light: linear-gradient(135deg, #fff0f5, #ffe4ec);
    --white: #ffffff;
    --dark: #2d2d2d;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Source Serif Pro', serif;
    font-weight: 700;
    line-height: 1.2;
}



/* ========================================================================= */
/* ===== HERO SECTION ===== */
/* ========================================================================= */
.hero-sweep {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.85) 0%, rgba(155, 89, 182, 0.85) 50%, rgba(142, 68, 173, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: clamp(1rem, 4vw, 1.3rem);
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.2s both;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.breadcrumb span {
    opacity: 0.9;
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-sweep { height: 60vh; min-height: 400px; }
}

@media (max-width: 768px) {
    .hero-sweep { height: 50vh; min-height: 350px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
}

@media (max-width: 576px) {
    .hero-sweep { height: 40vh; min-height: 300px; }
}

/* ================================================================== */
/* ===== SECTION HEADERS ===== */
/* ================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--pink-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--pink-gradient);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: var(--pink-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ================================================================= */
/* ===== PROGRAM OVERVIEW ===== */
/* ================================================================= */
.program-overview {
    padding: 80px 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: var(--pink-dark);
    margin-bottom: 20px;
}

.overview-content .lead {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.sweep-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    text-align: center;
    padding: 25px 15px;
    background: var(--pink-light);
    border-radius: 12px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature i {
    font-size: 2rem;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.feature h4 {
    color: var(--pink-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature p {
    color: var(--gray);
    font-size: 0.9rem;
}

.program-highlights {
    background: var(--pink-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--pink-primary);
}

.program-highlights h3 {
    color: var(--pink-dark);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.program-highlights ul {
    list-style: none;
}

.program-highlights li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--dark);
}

.program-highlights li i {
    position: absolute;
    left: 0;
    color: var(--pink-primary);
}

.overview-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.deadline-card {
    background: var(--pink-light);
    border-radius: 12px;
    padding: 30px;
    border-top: 5px solid var(--pink-primary);
    box-shadow: var(--shadow);
}

.deadline-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.deadline-header i {
    font-size: 2rem;
    color: var(--pink-primary);
}

.deadline-header h4 {
    color: var(--pink-dark);
    font-size: 1.2rem;
    margin: 0;
}

.countdown {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pink-secondary);
    text-align: center;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 20px;
}

.deadline-note {
    text-align: center;
    color: var(--gray);
    margin-top: 15px;
}

@media (max-width: 1024px) {
    .overview-grid { gap: 40px; }
}

@media (max-width: 992px) {
    .overview-grid { grid-template-columns: 1fr; }
    .sweep-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sweep-features { grid-template-columns: 1fr; }
}

/* ==================================================================================== */
/* ===== EXECUTIVE POSITIONS ===== */
/* ==================================================================================== */
.positions-section {
    padding: 80px 0;
    background: var(--pink-gradient-light);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.position-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--pink-primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.position-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.position-icon {
    width: 80px;
    height: 80px;
    background: var(--pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.position-card h3 {
    color: var(--pink-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.position-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.position-responsibilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.position-responsibilities span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--pink-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--pink-dark);
}

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

@media (max-width: 768px) {
    .positions-grid { grid-template-columns: 1fr; }
}

/* ================================================================== */
/* ===== ELIGIBILITY ===== */
/* ================================================================== */
.eligibility-section {
    padding: 80px 0;
    background: var(--white);
}

.eligibility-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.eligibility-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--pink-light);
    border-radius: 12px;
    transition: var(--transition);
}

.eligibility-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.eligibility-item i {
    font-size: 2rem;
    color: var(--pink-primary);
    flex-shrink: 0;
}

.eligibility-content h3 {
    color: var(--pink-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.eligibility-content p {
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .eligibility-list { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .eligibility-item { flex-direction: column; text-align: center; padding: 20px; }
}

/* =========================================================================== */
/* ===== APPLICATION PROCESS ===== */
/* =========================================================================== */
.application-process {
    padding: 80px 0;
    background: var(--pink-gradient-light);
}

.application-instructions {
    max-width: 800px;
    margin: 0 auto 50px;
}

.instruction-step {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--pink-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content h3 {
    color: var(--pink-dark);
    margin-bottom: 15px;
}

.step-content ul {
    padding-left: 20px;
    color: var(--gray);
}

.step-content li {
    margin-bottom: 8px;
}

.email-addresses {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.email-address {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--pink-light);
    border-radius: 8px;
}

.email-address i {
    color: var(--pink-primary);
    font-size: 1.2rem;
}

.email-address a {
    color: var(--pink-dark);
    text-decoration: none;
    font-weight: 500;
}

.email-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 5px;
    color: #856404;
}

.deadline-display {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--pink-light);
    border-radius: 8px;
    margin: 20px 0;
}

.deadline-display i {
    font-size: 2.5rem;
    color: var(--pink-primary);
}

.deadline-display strong {
    display: block;
    font-size: 1.3rem;
    color: var(--pink-dark);
}

.deadline-warning {
    color: #dc3545;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8d7da;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #dc3545;
}

.contact-support {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
}

.contact-support h3 {
    color: var(--pink-dark);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-item {
    text-align: center;
    padding: 25px;
    background: var(--pink-light);
    border-radius: 12px;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--pink-primary);
    margin-bottom: 15px;
}

.contact-item h4 {
    color: var(--pink-dark);
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--pink-primary);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .instruction-step { flex-direction: column; text-align: center; padding: 20px; }
    .step-number { margin: 0 auto; }
    .contact-details { grid-template-columns: 1fr; gap: 20px; }
    .deadline-display { flex-direction: column; text-align: center; }
}

/* ===================================================== */
/* ===== BENEFITS SECTION ===== */
/* ===================================================== */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit {
    text-align: center;
    padding: 30px 20px;
    background: var(--pink-light);
    border-radius: 12px;
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.benefit h3 {
    color: var(--pink-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.benefit p {
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 576px) {
    .benefits-grid { grid-template-columns: 1fr; }
}

/* ==========================================================  */
/* ===== ECOSYSTEM SECTION ===== */
/* ========================================================== */
.ecosystem-section {
    padding: 80px 0;
    background: var(--pink-gradient-light);
}

.ecosystem-content {
    max-width: 900px;
    margin: 0 auto;
}

.ecosystem-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 5px solid var(--pink-primary);
}

.ecosystem-item h3 {
    color: var(--pink-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ecosystem-item h3 i {
    color: var(--pink-primary);
}

.ecosystem-item p {
    color: var(--gray);
    line-height: 1.8;
}

/*  =================================================== */
/* ===== MOTTO SECTION ===== */
/* ==================================================== */
.motto-section {
    padding: 100px 0;
    background: var(--pink-gradient);
    text-align: center;
    color: var(--white);
}

.motto-content {
    max-width: 800px;
    margin: 0 auto;
}

.motto-icon {
    font-size: 4rem;
    margin-bottom: 30px;
}

.motto-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 20px;
    line-height: 1.4;
}

.motto-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.motto-content .btn-secondary {
    background: var(--white);
    color: var(--pink-primary);
}

.motto-content .btn-secondary:hover {
    background: var(--pink-light);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================================= */
/*  FOOTER */
/* =======================================================*/
.footer {
    background: #2c3e50;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-info i {
    color: #27ae60;
    margin-top: 4px;
    width: 16px;
}

.newsletter-form {
    display: flex;
    margin: 20px 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px 0 0 6px;
    font-family: inherit;
    font-size: 0.95rem;
}

.newsletter-form button {
    background: #ff69b4;
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff1493;
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hashtags span {
    color: #27ae60;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .footer-links {
    display: flex;
    gap: 25px;
}

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

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-bottom .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 480px) {
    .section-title { font-size: 1.8rem; }
    .logo-text h1 { font-size: 1.5rem; }
}