.admissions-hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(44, 62, 80, 0.8)),url('../images/blossoms_ghana.jpg') no-repeat center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
}

.apply-btn, .learn-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apply-btn {
    background: #ffa500;
    color: white;
}

.apply-btn:hover {
    background: #ffdb0f;
    transform: translateY(-3px);
}

.learn-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.learn-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.card1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.card2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.float-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffa500;
}

.float-card h4 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Admission Process Section */
.admission-process {
    padding: 5rem 0;
    background: #f8f9fa;
}

.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ffa500;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.requirements-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.requirements-list li::before {
    content: '•';
    color: #ffa500;
    position: absolute;
    left: 0;
}

/* Key Dates Section */
.key-dates {
    padding: 5rem 0;
    background: white;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.date-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.date-card:hover {
    transform: translateY(-5px);
}

.date {
    text-align: center;
    padding: 1rem;
    background: #ffa500;
    color: white;
    border-radius: 10px;
    min-width: 80px;
}

.month {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

.day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

/* Tuition & Fees Section */
.tuition-fees {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fees-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.fees-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fee-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #ffa500;
    margin: 1rem 0;
}

.fee-includes {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.fee-includes li {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.fees-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.additional-fees {
    margin-top: 2rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

/* Application Form Section */
.application-form {
    padding: 5rem 0;
    background: white;
}

.admission-form {
    max-width: 900px;
    margin: 3rem auto 0;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    padding: 1rem 3rem;
    background: #ffa500;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ffdb0f;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .dates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fees-container {
        grid-template-columns: 1fr;
    }

    .floating-elements {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .dates-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }
}

/* Modern CTA Section */
.admissions-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    color: white;
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('path/to/pattern.svg');
    opacity: 0.05;
    pointer-events: none;
}

.highlight-text {
    display: inline-block;
    background: rgba(0, 123, 255, 0.2);
    color: #ffa500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #ffa500;
}

.cta-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.primary-action {
    padding: 1rem 2.5rem;
    background: #ffa500;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-action:hover {
    background: #ffdb0f;
    transform: translateY(-3px);
}

.secondary-actions {
    display: flex;
    gap: 1rem;
}

.chat-action,
.call-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.chat-action:hover,
.call-action:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-stats {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffa500;
    margin-bottom: 0.5rem;
}

.countdown-timer {
    text-align: center;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.time-block {
    background: rgba(0, 123, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.time-block span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffa500;
}

.time-block label {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .cta-box {
        grid-template-columns: 1fr;
    }

    .cta-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-features-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .secondary-actions {
        width: 100%;
        justify-content: center;
    }
} 