/* CEECO INTERNATIONAL - RED, BLACK, WHITE THEME */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC2626;
    --dark-red: #991B1B;
    --bright-red: #EF4444;
    --light-red: #FEE2E2;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --gray: #4a4a4a;
    --light-gray: #f5f5f5;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

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

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    line-height: 1.2;
}

/* ==================== HEADER ==================== */
.header {
    background: var(--white);
    border-bottom: 3px solid var(--primary-red);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
}

.header-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.header-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Red diagonal pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 45%, rgba(220, 38, 38, 0.05) 45%, rgba(220, 38, 38, 0.05) 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(220, 38, 38, 0.05) 45%, rgba(220, 38, 38, 0.05) 55%, transparent 55%);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* Red dot pattern */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="3" fill="rgba(220, 38, 38, 0.15)"/></svg>');
    opacity: 0.4;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

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

.trust-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 2px solid var(--white);
}

.hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-badge {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid var(--primary-red);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Hero Highlights - Fills blank space */
.hero-highlights {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s;
}

.highlight-box:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: var(--primary-red);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-text strong {
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
}

.highlight-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

/* HERO FORM */
.hero-form {
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

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

.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    position: sticky;
    top: 20px;
    border: 3px solid var(--primary-red);
}

.form-card h3 {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
}

#signup-form-container {
    margin: 20px 0;
}

.privacy-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    margin-top: 15px;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: var(--light-red);
    color: var(--primary-red);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    border: 2px solid var(--primary-red);
}

.section-header h2 {
    font-size: 42px;
    color: var(--black);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

/* Pattern in stat boxes */
.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.global-presence {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-red);
}

.global-presence h3 {
    font-size: 26px;
    color: var(--black);
    margin-bottom: 20px;
}

.global-presence p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.highlight-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
}

/* ==================== STUDY MEDICINE SECTION ==================== */
.study-medicine {
    padding: 80px 0;
    background: var(--light-gray);
}

.two-col-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.content-col h2 {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 20px;
}

.content-col p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ==================== STUDY OPTIONS ==================== */
.study-options {
    padding: 80px 0;
    background: var(--white);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.option-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid var(--black);
    transition: all 0.3s;
}

.option-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.option-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.option-card h2 {
    font-size: 26px;
    color: var(--black);
    margin-bottom: 15px;
}

.option-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ==================== UNIVERSITIES SECTION ==================== */
.universities {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

/* Red pattern in universities section */
.universities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(220, 38, 38, 0.1) 49%, rgba(220, 38, 38, 0.1) 51%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(220, 38, 38, 0.1) 49%, rgba(220, 38, 38, 0.1) 51%, transparent 51%);
    background-size: 80px 80px;
    opacity: 0.3;
}

.universities .section-header {
    position: relative;
    z-index: 1;
}

.universities .section-tag {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--white);
}

.universities .section-header h2 {
    color: var(--white);
}

.universities .section-header p {
    color: rgba(255,255,255,0.9);
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.university-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    border: 3px solid var(--primary-red);
    transition: all 0.3s;
    overflow: hidden;
}

.university-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.university-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--white);
}

.university-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s;
}

.university-card:hover .university-image img {
    transform: scale(1.05);
}

.university-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    gap: 15px;
    padding: 20px 35px 0 35px;
}

.university-header h3 {
    font-size: 22px;
    color: var(--black);
    flex: 1;
}

.official-badge {
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.university-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 0 35px;
}

.know-more-btn {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--black);
    margin: 0 35px 35px 35px;
}

.know-more-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateX(5px);
}

/* ==================== URGENT CTA ==================== */
.urgent-cta {
    padding: 80px 0;
    background: var(--primary-red);
}

.cta-box {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--black) 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 3px solid var(--white);
}

.cta-box h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-red);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: 3px solid var(--white);
}

.cta-button:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* ==================== ADVANTAGES SECTION ==================== */
.advantages {
    padding: 100px 0;
    background: var(--white);
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.advantage-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 3px solid var(--black);
    transition: all 0.3s;
}

.advantage-item:hover {
    border-color: var(--primary-red);
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.15);
}

.adv-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.advantage-item h4 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 14px;
    color: var(--gray);
}

/* ==================== COUNSELLING CTA ==================== */
.counselling-cta {
    padding: 80px 0;
    background: var(--black);
}

.counselling-box {
    text-align: center;
    color: var(--white);
}

.counselling-box h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.counselling-box p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cta-features span {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-red);
}

.note {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.cta-button-white {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: 3px solid var(--white);
}

.cta-button-white:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: scale(1.05);
}

/* ==================== SUCCESS STORIES ==================== */
.success-stories {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.video-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s;
    border: 3px solid var(--black);
    text-decoration: none;
    display: block;
    background: var(--white);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--black);
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    transition: all 0.3s;
    border: 3px solid var(--white);
}

.video-card:hover .play-button {
    background: var(--dark-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
    background: var(--white);
}

.video-info h4 {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 700;
}

.video-info p {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
    margin: 0;
}

.video-card:hover .video-info p {
    color: var(--dark-red);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 16px;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.footer-tagline {
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(220, 38, 38, 0.3);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .stats-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .universities-grid,
    .two-col-layout,
    .options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .stats-grid,
    .advantages-grid,
    .videos-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 30px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .logo {
        height: 45px;
    }
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}
