/* ============================= */
/* ARCOVA - GLOBAL STYLES       */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* ============================= */
/* TYPOGRAPHY                   */
/* ============================= */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 0.8em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1em;
    line-height: 1.7;
}

a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #3498db;
}

/* ============================= */
/* LAYOUT                       */
/* ============================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================= */
/* NAVBAR                       */
/* ============================= */

.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(52, 152, 219, 0.2));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

/* ============================= */
/* WELCOME BANNER               */
/* ============================= */

.welcome-banner {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 50%, #27ae60 100%);
    color: white;
    padding: 0;
    min-height: 500px;
    position: relative;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.banner-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 1200px;
}

.banner-title {
    font-size: 2rem;
    margin-bottom: 0;
    color: white;
    font-weight: 600;
}

.banner-text {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1.6;
    display: none;
}

.banner-timer-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    z-index: 10;
}

.banner-timer-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db 0%, #2980b9 50%, #27ae60 100%);
    width: 0%;
    animation: timerFill 10s linear infinite;
}

@keyframes timerFill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.banner-timer-text {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 0.85rem;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    z-index: 11;
}

/* ============================= */
/* HERO SECTION (INDEX)         */
/* ============================= */

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    overflow: hidden;
}

.hero.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
}

.hero .hero-title,
.page-hero .hero-title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 2rem 0 2.5rem;
    font-weight: 400;
}

/* ============================= */
/* LEGACY IN MOTION LOGO        */
/* ============================= */

.legacy-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.legacy-logo-img {
    height: 120px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.legacy-logo-img:hover {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 12px 32px rgba(52, 152, 219, 0.3));
}

/* ============================= */
/* CAROUSEL STYLES              */
/* ============================= */

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    min-height: 320px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(0.95);
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-card {
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.carousel-item.active .carousel-card {
    background: linear-gradient(135deg, #fff5f7 0%, #fffef9 100%);
    border-radius: 12px;
    border-left: 5px solid #ff69b4;
}

.card-header {
    position: relative;
    height: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ribbon-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.carousel-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.card-followers {
    font-size: 1.1rem;
    color: #ff1493;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.card-category {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.card-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    height: 80px;
}

.carousel-logo-img {
    height: 70px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.carousel-logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(52, 152, 219, 0.3));
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(52, 152, 219, 0.9);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 20;
}

.carousel-btn:hover {
    background: rgba(41, 128, 185, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -60px;
}

.carousel-btn.next {
    right: -60px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #3498db;
    width: 28px;
    border-radius: 5px;
}

/* ============================= */
/* CTA BUTTONS                  */
/* ============================= */

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border-color: #3498db;
}

.btn-secondary:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 40px;
    font-size: 1.1rem;
}

/* ============================= */
/* PAGE HERO SECTIONS           */
/* ============================= */

.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    letter-spacing: 10px;
    user-select: none;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 0;
}

/* ============================= */
/* SECTIONS                     */
/* ============================= */

.about-section,
.staff-section,
.partners-section,
.join-section,
.contact-section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

/* ============================= */
/* CORE VALUES                  */
/* ============================= */

.core-values {
    margin-top: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================= */
/* STAFF GRID                   */
/* ============================= */

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.staff-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(52, 152, 219, 0.25);
}

.staff-image-container {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #e0f4ff 0%, #e8f1f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.staff-image-placeholder {
    font-size: 80px;
    opacity: 0.8;
}

.staff-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ribbon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.staff-card h3 {
    padding: 1.5rem 1.5rem 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.flag {
    font-size: 1.3rem;
    margin-left: 0.3rem;
}

.staff-role {
    color: #3498db;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
}

.staff-bio {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================= */
/* PARTNERS GRID                */
/* ============================= */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fcff 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.12);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.partner-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.25);
    border-color: rgba(52, 152, 219, 0.3);
}

.partner-card:hover::before {
    left: 100%;
}

.partner-logo-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f4ff 0%, #e8f1f8 50%, #f0e6ff 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.partner-card:hover .partner-logo-container {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 50%, #27ae60 100%);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.partner-logo-placeholder {
    font-size: 60px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logo-img {
    height: 100px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(52, 152, 219, 0.3));
}

.partner-card:hover .partner-logo-placeholder {
    font-size: 70px;
    opacity: 1;
    animation: pop 0.4s ease;
}

.partner-card h3 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.partner-card:hover h3 {
    color: #3498db;
}

.partner-industry {
    color: #3498db;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-industry {
    color: #e74c3c;
    transform: scale(1.05);
}

.partner-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.partner-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 12px;
    margin-top: 3rem;
}

.partner-cta p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* ============================= */
/* NEWS SECTION                 */
/* ============================= */

.news-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9fcff 0%, #f0f4f8 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 400;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.2);
}

.news-badge {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.news-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.news-date {
    color: #3498db;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.news-content {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.news-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.news-cta p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ============================= */
/* JOIN US SECTION              */
/* ============================= */

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
    align-items: center;
}

.steps-guide h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    text-align: left;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
}

.step h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: inline;
}

.step p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.step-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    margin: 0.5rem 0;
}

.join-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-hands {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hands-illustration {
    font-size: 120px;
    animation: pulse 2s infinite;
}

.ceremony-ribbon {
    position: absolute;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    bottom: 20%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ============================= */
/* APPLICATION FORM             */
/* ============================= */

.application-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.application-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    margin-bottom: 0;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 500;
}

.success-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.1));
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.success-message p {
    color: #27ae60;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-success-message {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.1));
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    margin-top: 1rem;
}

.contact-success-message p {
    color: #27ae60;
    font-weight: 500;
    margin-bottom: 0;
}

/* ============================= */
/* CONTACT SECTION              */
/* ============================= */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-form-container,
.staff-directory {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3,
.staff-directory h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.directory-listing {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.directory-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.directory-item:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(174, 194, 224, 0.05));
}

.directory-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.directory-info {
    flex-grow: 1;
    text-align: left;
}

.directory-info h4 {
    margin-bottom: 0.3rem;
    color: #2c3e50;
}

.directory-role {
    color: #3498db;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.directory-info a {
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
    word-break: break-all;
}

.directory-info a:hover {
    text-decoration: underline;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-method {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f4f8, #e8f1f8);
    border-radius: 8px;
}

.contact-method h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.contact-method a {
    color: #3498db;
    font-weight: 500;
    word-break: break-all;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* ============================= */
/* NEWS & UPDATES SECTION       */
/* ============================= */

.news-section {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
    font-style: italic;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.2);
    border-left-color: #e74c3c;
}

.news-badge {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.news-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.news-date {
    color: #3498db;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.news-content {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.news-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.news-cta p {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ============================= */
/* FOOTER                       */
/* ============================= */

.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 3rem;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

.footer-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #bdc3c7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ecf0f1;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.copyright {
    color: #95a5a6;
    font-size: 0.85rem;
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer iframe {
    display: block;
    margin: 2rem auto 0;
    border: none;
}

/* ============================= */
/* RESPONSIVE DESIGN            */
/* ============================= */

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .welcome-banner {
        padding: 2rem;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-text {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: -50px;
    }

    .carousel-btn.next {
        right: -50px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .join-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .staff-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 300px;
    }

    .page-hero-overlay {
        font-size: 80px;
        letter-spacing: 5px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .legacy-logo-img {
        height: 80px;
    }

    .welcome-banner {
        padding: 1.5rem;
    }

    .banner-title {
        font-size: 1.2rem;
    }

    .banner-text {
        font-size: 0.95rem;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .carousel-container {
        padding: 1.5rem;
        min-height: 280px;
    }

    .carousel {
        height: 240px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .carousel-btn.prev {
        left: -40px;
    }

    .carousel-btn.next {
        right: -40px;
    }

    .logo-watermark {
        font-size: 100px;
        letter-spacing: 10px;
    }

    .page-hero-overlay {
        font-size: 60px;
        letter-spacing: 3px;
    }

    .steps-container {
        gap: 0.8rem;
    }

    .step {
        padding: 1rem;
    }

    .application-form {
        padding: 1.5rem;
    }

    .directory-item {
        gap: 0.8rem;
    }

    .contact-method h4 {
        font-size: 1rem;
    }
}

/* ============================= */
/* ANIMATIONS                   */
/* ============================= */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.staff-card,
.partner-card,
.value-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for carousel transitions */
@media (prefers-reduced-motion: no-preference) {
    .carousel-item {
        transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}
