/* Study UK Page - Premium Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 33, 105, 0.8) 0%, rgba(200, 16, 46, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 14px;
}

.flag-icon {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    min-width: 220px;
    min-height: 60px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn.primary {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #FFD700 100%);
    color: #1a202c;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
    border: 3px solid transparent;
    background-clip: padding-box;
}

.btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 50%, #FF8C00 100%);
}

.btn.secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
}

.btn.secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-4px);
}

.btn.outline {
    background: transparent;
    color: #FFD700;
    border: 3px solid #FFD700;
    position: relative;
    z-index: 1;
}

.btn.outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn.outline:hover {
    color: #1a202c;
    transform: translateY(-4px);
}

.btn.outline:hover::after {
    width: 100%;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(1, 33, 105, 0.15) 0%, rgba(255, 215, 0, 0.15) 100%);
    color: #012169;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 25px;
    border: 2px solid rgba(1, 33, 105, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.6s;
}

.section-badge:hover::before {
    left: 100%;
}

.section-header h2 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #1a202c 0%, #012169 50%, #1a202c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.1;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #012169, #FFD700, #C8102E);
    border-radius: 3px;
}

.section-description {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(1, 33, 105, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #012169, #FFD700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.3;
}

.benefit-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.benefit-card ul {
    list-style: none;
}

.benefit-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #4a5568;
    line-height: 1.6;
}

.benefit-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: 700;
}

/* Universities Section */
.universities-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #012169 0%, #1a365d 100%);
    color: white;
}

.universities-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.3);
}

.universities-section .section-header h2 {
    color: white;
}

.universities-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.university-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.university-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.university-card:hover::before {
    transform: scaleX(1);
}

.university-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.university-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.university-rank {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.university-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.university-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.university-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.university-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.specialty-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.university-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.university-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.university-stats .stat {
    text-align: center;
    background: none;
    border: none;
    padding: 0;
    flex: 1;
}

.university-stats .stat-number {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.university-stats .stat-label {
    font-size: 11px;
    opacity: 0.8;
}

/* Courses Section */
.courses-section {
    padding: 100px 0;
    background: #f8fafc;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.course-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #012169, #FFD700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.course-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #C8102E, #ff6b6b);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.3;
}

.course-details {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.duration, .level {
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.course-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.feature-tag {
    background: linear-gradient(135deg, #012169, #1a365d);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}

.course-stats {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.course-stats .stat {
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    background: none;
    border: none;
    padding: 0;
}

.course-stats .stat:first-child {
    color: #C8102E;
}

.course-stats .stat:last-child {
    color: #059669;
}

/* Calculator Section */
.calculator-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
}

.calculator-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #012169, #FFD700, #C8102E, #012169);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

/* Calculator Intro */
.calculator-intro {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 50px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.intro-content .intro-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.intro-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #012169, #1a365d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.intro-content > p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
}

.step.active {
    background: linear-gradient(135deg, #012169, #1a365d);
    color: white;
    transform: scale(1.2);
}

.step.completed {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    color: #1a202c;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    background: #e2e8f0;
    transition: background 0.4s ease;
}

.step.completed:not(:last-child)::after {
    background: linear-gradient(90deg, #FFD700, #FF8C00);
}

.progress-text {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

.current-question {
    color: #012169;
    font-weight: 800;
}

/* Question Cards */
.calculator-form {
    padding: 0;
    position: relative;
    min-height: 600px;
}

.question-card {
    padding: 60px 50px;
    display: none;
    animation: slideIn 0.5s ease-out;
}

.question-card.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.question-header {
    text-align: center;
    margin-bottom: 50px;
}

.question-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.question-header h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
}

.question-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.options-grid input[type="radio"] {
    display: none;
}

.option-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 3px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 33, 105, 0.05), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #012169;
}

.option-card:hover::before {
    opacity: 1;
}

input[type="radio"]:checked + .option-card {
    background: linear-gradient(135deg, rgba(1, 33, 105, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: #012169;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(1, 33, 105, 0.2);
}

input[type="radio"]:checked + .option-card::before {
    opacity: 1;
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.option-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.option-content p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.5;
}

.option-badge {
    display: inline-block;
    background: linear-gradient(135deg, #012169, #1a365d);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="radio"]:checked + .option-card .option-badge {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    color: #1a202c;
}

/* Navigation */
.form-navigation {
    padding: 40px 50px;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    padding: 16px 32px;
    border-radius: 15px;
    font-weight: 600;
    min-width: 140px;
    background: #e2e8f0;
    color: #64748b;
    border: 2px solid transparent;
}

.nav-btn:not(:disabled):hover {
    background: #cbd5e1;
    transform: translateY(-2px);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.calculate-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #FFD700 100%);
    color: #1a202c;
    padding: 20px 40px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.calculator-form {
    padding: 60px 50px;
}

.form-step h3 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #012169, #1a365d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 45px;
    text-align: center;
    position: relative;
}

.form-step h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FF8C00);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.form-group label::before {
    content: '❓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

.radio-group {
    display: grid;
    gap: 16px;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group label {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 3px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    margin-bottom: 0;
    font-weight: 600;
    min-height: 70px;
}

.radio-group label::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 3px solid #cbd5e1;
    border-radius: 50%;
    margin-right: 16px;
    transition: all 0.4s ease;
    position: relative;
    flex-shrink: 0;
}

.radio-group label::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(1, 33, 105, 0.05), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.radio-group input[type="radio"]:checked + label {
    background: linear-gradient(135deg, rgba(1, 33, 105, 0.08) 0%, rgba(255, 215, 0, 0.08) 100%);
    border-color: #012169;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 33, 105, 0.15);
}

.radio-group input[type="radio"]:checked + label::before {
    background: linear-gradient(135deg, #012169, #1a365d);
    border-color: #012169;
    box-shadow: inset 0 0 0 4px white;
}

.radio-group input[type="radio"]:checked + label::after {
    opacity: 1;
}

.radio-group label:hover {
    background: linear-gradient(135deg, rgba(1, 33, 105, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: #012169;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(1, 33, 105, 0.1);
}

.calculate-btn {
    width: 100%;
    margin-top: 50px;
    padding: 24px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    background: linear-gradient(135deg, #012169 0%, #1a365d 50%, #012169 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-height: 70px;
}

.calculate-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

.calculate-btn:not(:disabled):hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(1, 33, 105, 0.4);
}

.calculate-btn.ready {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(1, 33, 105, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(1, 33, 105, 0); }
}

.results-container {
    background: linear-gradient(135deg, #012169, #1a365d);
    color: white;
    padding: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.results-container.results-visible {
    opacity: 1;
    transform: translateY(0);
}

.results-header {
    text-align: center;
    margin-bottom: 50px;
}

.results-header h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eligibility-score {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 30px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.score-number {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.score-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.results-content {
    display: grid;
    gap: 40px;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.recommendations-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.recommendation-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 18px 22px;
    border-radius: 15px;
    border-left: 4px solid #FFD700;
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.rec-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.feedback-section {
    margin-top: 30px;
}

.feedback-grid {
    display: grid;
    gap: 10px;
}

.feedback-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.steps-list {
    display: grid;
    gap: 20px;
    margin-bottom: 35px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    color: #1a202c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    flex: 1;
}

.consultation-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.15) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    margin-top: 25px;
}

.cta-content h5 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #FFD700;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.consultation-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #FFD700 100%);
    color: #1a202c;
    padding: 18px 35px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.consultation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.result-section h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #FFD700;
}

.result-section p {
    margin-bottom: 16px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #012169 0%, #1a365d 50%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 24px 28px;
    border-radius: 18px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    min-height: 80px;
}

.benefit:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit i {
    color: #FFD700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit span {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-actions {
        flex-direction: row;
        gap: 30px;
    }
}

.cta-actions .btn {
    min-width: 240px;
    min-height: 70px;
    font-size: 17px;
    font-weight: 800;
    border-radius: 18px;
}

.cta-actions .btn.primary {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #FFD700 100%);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.cta-actions .btn.secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 3px solid rgba(255, 255, 255, 0.4);
    color: white;
}

/* Footer */
.site-footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 16px;
}

.footer-logo p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a0aec0;
}

.contact-item i {
    color: #FFD700;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .benefits-grid,
    .universities-grid,
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card,
    .university-card,
    .course-card {
        padding: 24px;
    }
    
    .university-stats {
        flex-direction: column;
        gap: 12px;
        text-align: left;
    }
    
    .university-stats .stat {
        text-align: left;
    }
    
    .course-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .calculator-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .university-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .course-details {
        flex-direction: column;
        gap: 8px;
    }
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.university-card,
.course-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
