/* ========================================
   ENHANCED PAGE DESIGNS - VISION, ABOUT, CONTACT
   ======================================== */

:root {
    --primary-gradient: linear-gradient(135deg, #0B3D2E 0%, #1a5a45 50%, #2C5E4A 100%);
    --accent-green: #04A86B;
    --accent-gold: #CAF550;
    --dark-bg: #0B3D2E;
    --light-text: #F5F5F5;
    --border-color: rgba(202, 245, 80, 0.2);
}

/* ========================================
   HERO SECTIONS - ENHANCED
   ======================================== */

.vision-hero-enhanced,
.about-hero-enhanced,
.contact-hero-enhanced {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 100px;
    overflow: hidden;
    background: var(--primary-gradient);
}

.vision-hero-enhanced::before,
.about-hero-enhanced::before,
.contact-hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(4, 168, 107, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(202, 245, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.vision-hero-content,
.about-hero-content,
.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title-wrapper {
    margin: 30px 0;
    position: relative;
}

.hero-accent-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-green) 100%);
    margin: 20px auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(202, 245, 80, 0.4);
    animation: expandLine 0.8s ease-out 0.3s forwards;
    transform-origin: center;
    animation-fill-mode: both;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

.vision-hero-title,
.about-hero-title,
.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--light-text);
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vision-hero-title .gradient-text,
.about-hero-title .gradient-text,
.contact-hero-title .gradient-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.vision-hero-description,
.about-hero-description,
.contact-hero-description {
    font-size: 1.25rem;
    color: rgba(245, 245, 245, 0.9);
    margin: 20px 0 40px;
    line-height: 1.6;
    font-weight: 300;
}

/* Enhanced Stats with better styling */
.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(202, 245, 80, 0.4);
    box-shadow: 0 10px 30px rgba(4, 168, 107, 0.2);
}

.stat-badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-badge-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.8);
    font-weight: 500;
}

/* CTA Group */
.hero-cta-group {
    margin-top: 50px;
}

.btn-scroll {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-green) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(202, 245, 80, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.btn-scroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(202, 245, 80, 0.4);
}

.btn-scroll i {
    transition: transform 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
}

.btn-scroll:hover i {
    transform: translateY(3px);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease-out 1s forwards;
    opacity: 0;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(202, 245, 80, 0.5);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
    animation: scrollDown 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scrollDownArrow 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes scrollDownArrow {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ========================================
   CONTACT FORM ENHANCED
   ======================================== */

#contact-form {
    scroll-behavior: smooth;
}

.contact-form-section {
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.8) 0%, rgba(26, 90, 69, 0.8) 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form-section h2 {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 15px 18px;
    border: 2px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--light-text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 245, 245, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(202, 245, 80, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Alert Messages */
.alert {
    padding: 18px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(4, 168, 107, 0.2);
    color: #04A86B;
    border: 1px solid rgba(4, 168, 107, 0.4);
}

.alert-error {
    background: rgba(220, 53, 69, 0.2);
    color: #DC3545;
    border: 1px solid rgba(220, 53, 69, 0.4);
}

/* ========================================
   CONTACT INFO & DEPARTMENT CARDS
   ======================================== */

.contact-info-items,
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.contact-info-item,
.department-card {
    background: linear-gradient(135deg, rgba(202, 245, 80, 0.1) 0%, rgba(4, 168, 107, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-info-item:hover,
.department-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(202, 245, 80, 0.15) 0%, rgba(4, 168, 107, 0.15) 100%);
    border-color: rgba(202, 245, 80, 0.4);
    box-shadow: 0 15px 40px rgba(4, 168, 107, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.info-content h4,
.department-card h4 {
    color: var(--light-text);
    margin: 15px 0 8px;
    font-size: 1.15rem;
}

.info-content p,
.department-card p {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.department-card a {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.department-card a:hover {
    color: var(--accent-green);
    transform: translateX(5px);
}

/* ========================================
   SOCIAL SECTION
   ======================================== */

.social-section h4 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-link-large {
    width: 50px;
    height: 50px;
    background: rgba(202, 245, 80, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-large:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-green));
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(202, 245, 80, 0.3);
}

/* ========================================
   BREADCRUMBS ENHANCED
   ======================================== */

.breadcrumbs-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.8);
}

.breadcrumbs-modern a {
    color: rgba(245, 245, 245, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumbs-modern a:hover {
    color: var(--accent-gold);
}

.breadcrumbs-modern i:not([class*="fa-"]) {
    opacity: 0.5;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .vision-hero-enhanced,
    .about-hero-enhanced,
    .contact-hero-enhanced {
        min-height: 70vh;
        padding: 120px 30px 80px;
    }

    .vision-hero-title,
    .about-hero-title,
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .vision-hero-description,
    .about-hero-description,
    .contact-hero-description {
        font-size: 1.1rem;
    }

    .about-hero-stats {
        gap: 20px;
        flex-direction: column;
    }

    .stat-badge {
        padding: 20px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 30px;
    }

    .contact-info-items,
    .departments-grid {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .vision-hero-title,
    .about-hero-title,
    .contact-hero-title {
        font-size: 1.8rem;
    }

    .vision-hero-description,
    .about-hero-description,
    .contact-hero-description {
        font-size: 0.95rem;
    }

    .stat-badge {
        padding: 15px 20px;
    }

    .stat-badge-number {
        font-size: 2rem;
    }

    .contact-form-section {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px;
    }

    .btn-scroll {
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-indicator span {
        font-size: 0.85rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
    .vision-hero-enhanced,
    .about-hero-enhanced,
    .contact-hero-enhanced {
        background: var(--primary-gradient);
    }
}
