/* Hero Section */
.college-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0b1120 0%, #1a2a3a 50%, #2d1b4b 100%);
    overflow: hidden;
}

.college-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.college-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 8px 22px;
    border-radius: 60px;
    margin-bottom: 28px;
}

.hero-badge i {
    color: #ffd966;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, #FFD966, #FF8A5C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
}

/* Stats Section */
.stats-section {
    max-width: 1200px;
    margin: -40px auto 50px;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    background: white;
    border-radius: 30px;
    padding: 35px 30px;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #da0b4e, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #64748b;
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b1120;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 1rem;
}

.section-title span {
    background: linear-gradient(135deg, #da0b4e, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.service-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eef2f6;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    border-color: #ffd966;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #da0b4e10, #4f46e510);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #da0b4e;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Timeline Section */
.timeline-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    background: #f1f5f9;
    border-radius: 40px;
    padding: 50px 30px;
}

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

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #da0b4e, #4f46e5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.timeline-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.8rem;
    color: #64748b;
}

/* Form Section */
.form-section {
    max-width: 1000px;
    margin: 0 auto 70px;
    padding: 0 20px;
}

.form-container {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 50px -20px rgba(0,0,0,0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.form-side {
    padding: 45px 40px;
}

.form-header {
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0b1120;
    margin-bottom: 8px;
}

.form-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.85rem;
}

.form-group label i {
    color: #da0b4e;
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #da0b4e;
    box-shadow: 0 0 0 3px rgba(218, 11, 78, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc2626;
    background-color: #fff5f5;
}

.error-message {
    color: #dc2626;
    font-size: 0.7rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.row-2cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Captcha Styles */
.captcha-wrapper {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.captcha-skip-notice {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 10px 15px;
    margin: 15px 0;
    display: none;
    align-items: center;
    gap: 10px;
    color: #0369a1;
    font-size: 0.8rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #da0b4e, #4f46e5);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -8px rgba(218, 11, 78, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Info Side */
.info-side {
    background: linear-gradient(135deg, #0b1120, #1a2a3a);
    padding: 45px 40px;
    color: white;
}

.info-side h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    margin-top: 20px;
}

.info-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-list li i {
    color: #ffd966;
    font-size: 1.1rem;
    margin-top: 3px;
}

.info-list li strong {
    display: block;
    margin-bottom: 4px;
}

.info-list li p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.4;
}

.success-message, .error-message {
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
    align-items: center;
    gap: 10px;
}

.success-message {
    background: #10b98120;
    border: 1px solid #10b981;
    color: #065f46;
}

.error-message {
    background: #ef444420;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .form-container { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .timeline-grid { grid-template-columns: 1fr; }
    .row-2cols { grid-template-columns: 1fr; }
    .form-side, .info-side { padding: 30px 25px; }
    .stats-grid { grid-template-columns: 1fr; }
    .captcha-wrapper { transform: scale(0.85); }
}

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

.service-card, .timeline-item { animation: fadeInUp 0.5s ease forwards; }