/* ========================================
   COMPLETE GEORGIA PAGE STYLES
   Hero + Stats + Course + Recognition
   ======================================== */

/* ----------------------------------------
   HERO SECTION
   ---------------------------------------- */
.georgia-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 20px 80px;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.georgia-hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -400px;
    left: -200px;
    animation: pulse-large 8s ease-in-out infinite;
}

@keyframes pulse-large {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.05; }
    50%       { transform: scale(1.2) translate(50px, 50px); opacity: 0.08; }
}

.georgia-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.3);
    animation: fadeInDown 0.6s ease;
}

.hero-badge i { font-size: 16px; color: #ffd700; }

.georgia-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    animation: fadeInUp 1.2s ease;
}

.highlight-pill {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.highlight-pill:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.highlight-pill i { color: #4caf50; font-size: 16px; }

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 1.4s ease;
}

.hero-cta .btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-cta .btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta .btn:hover::before { width: 300px; height: 300px; }
.hero-cta .btn span, .hero-cta .btn i { position: relative; z-index: 1; }
.hero-cta .btn i { font-size: 18px; }

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
}
.hero-cta .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255,107,53,0.5);
    background: linear-gradient(135deg, #e55a2b, #d54520);
}

.hero-cta .btn-white {
    background: white;
    color: #667eea;
    border: 2px solid white;
}
.hero-cta .btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255,255,255,0.4);
}

/* ----------------------------------------
   QUICK STATS BAR
   ---------------------------------------- */
.quick-stats-bar {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    padding: 80px 0;
}

.quick-stats-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102,126,234,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(102,126,234,0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}

.stat-content { display: flex; flex-direction: column; }

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #667eea;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ----------------------------------------
   COURSE INFO SECTION
   ---------------------------------------- */
.course-info-section {
    padding: 100px 0;
    background: #f8f9ff;
}

.course-info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.info-card-large {
    background: white;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.info-card-large:hover { transform: translateY(-5px); }

.card-icon {
    font-size: 50px;
    color: #667eea;
    margin-bottom: 20px;
    line-height: 1;
}

.info-card-large h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f4ff;
}

.info-details { margin-bottom: 20px; }

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
    gap: 20px;
}

.detail-row:last-child { border-bottom: none; }

.detail-label {
    font-size: 14px;
    color: #888;
    font-weight: 600;
    min-width: 140px;
}

.detail-value {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    text-align: right;
}

.info-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    background: #f0f4ff;
    color: #555;
    margin-top: 20px;
}

.info-note i { font-size: 16px; margin-top: 2px; color: #667eea; }
.info-note.success { background: #f0fff4; }
.info-note.success i { color: #4caf50; }
.info-note.warning { background: #fff8f0; }
.info-note.warning i { color: #ff9800; }

/* ----------------------------------------
   RECOGNITION BADGES
   ---------------------------------------- */
.recognition-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.recognition-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0f4ff, #e8f0ff);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    border: 1px solid rgba(102,126,234,0.2);
    transition: all 0.3s ease;
}

.recognition-badge:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
}

.recognition-badge i { font-size: 14px; color: #4caf50; }
.recognition-badge:hover i { color: white; }

/* ----------------------------------------
   ANIMATIONS
   ---------------------------------------- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

/* ----------------------------------------
   MOBILE RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
    .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .georgia-hero { padding: 80px 15px 50px; }
    .georgia-hero h1 { font-size: 36px; }
    .hero-subtitle { font-size: 18px; }
    .hero-highlights { flex-direction: column; align-items: center; }
    .highlight-pill { width: 100%; max-width: 300px; justify-content: center; }
    .hero-cta { flex-direction: column; gap: 15px; width: 100%; }
    .hero-cta .btn { width: 100%; max-width: 350px; justify-content: center; padding: 16px 30px; }
    .hero-badge { font-size: 12px; padding: 10px 20px; }

    .quick-stats-bar { padding: 50px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-item { padding: 25px 20px; gap: 15px; }
    .stat-icon { width: 55px; height: 55px; min-width: 55px; font-size: 20px; }
    .stat-value { font-size: 28px; }

    .course-info-section { padding: 60px 0; }
    .section-title h2 { font-size: 30px; }
    .info-card-large { padding: 30px 25px; }
    .info-card-large h3 { font-size: 20px; }
    .detail-row { flex-direction: column; align-items: flex-start; gap: 5px; }
    .detail-value { text-align: left; }
}

@media (max-width: 480px) {
    .georgia-hero h1 { font-size: 28px; }
    .hero-subtitle { font-size: 16px; }
    .hero-cta .btn { font-size: 14px; padding: 14px 25px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-value { font-size: 32px; }
    .recognition-badges { gap: 10px; }
    .recognition-badge { font-size: 12px; padding: 8px 15px; }
}
/* ----------------------------------------
   UNIVERSITY COMPARISON TABLE
   ---------------------------------------- */
.university-comparison-section {
    padding: 100px 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(102,126,234,0.12);
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 800px;
}

.comparison-table thead tr {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.comparison-table thead th {
    padding: 20px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    border: none;
}

.comparison-table thead th.param-col {
    text-align: left;
    width: 160px;
}

.uni-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.uni-short {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.uni-full {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.85;
    line-height: 1.3;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: #f8f9ff !important;
}

.comparison-table tbody tr.alt-row {
    background: #fafbff;
}

.comparison-table tbody td {
    padding: 16px;
    color: #444;
    vertical-align: middle;
    text-align: center;
    line-height: 1.5;
}

.comparison-table tbody td.param-col {
    text-align: left;
    font-weight: 700;
    color: #2c3e50;
    background: #f8f9ff;
    white-space: nowrap;
    font-size: 13px;
}

.comparison-table tbody td.param-col i {
    color: #667eea;
    margin-right: 8px;
    width: 16px;
}

.highlight-cell {
    font-weight: 700;
    color: #2c3e50 !important;
}

.highlight-high {
    color: #e55a2b !important;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-green {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-blue {
    background: #e8eaf6;
    color: #3949ab;
}

.badge-orange {
    background: #fff3e0;
    color: #e65100;
}

/* Key Points */
.comparison-key-points {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    border-radius: 20px;
    padding: 35px 40px;
}

.comparison-key-points h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.comparison-key-points h4 i {
    color: #667eea;
    margin-right: 10px;
}

.key-points-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.key-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.key-point i {
    color: #4caf50;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .university-comparison-section { padding: 60px 0; }
    .comparison-table { font-size: 12px; }
    .comparison-table thead th,
    .comparison-table tbody td { padding: 12px 10px; }
    .uni-short { font-size: 14px; }
    .uni-full { display: none; }
    .comparison-key-points { padding: 25px 20px; }
}

