@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Inter:wght@300;400;600;800&family=Outfit:wght@400;700;900&display=swap');

:root {
    --bg-marble: #f8f5f2;
    --text-dark: #1a1a1a;
    --accent-cyan: #00d4ff;
    --accent-gold: #c5a059;
    --glass-white: rgba(255, 255, 255, 0.8);
    --border-classic: rgba(0, 0, 0, 0.1);
}

.edu-body {
    background-color: var(--bg-marble) !important;
    color: var(--text-dark) !important;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.edu-wrapper {
    background: url('https://www.transparenttextures.com/patterns/marble-white.png');
    min-height: 100vh;
}

/* Header Overrides - Classical Light */
header {
    background: rgba(248, 245, 242, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-classic) !important;
}

header .logo img, header .logo svg {
    filter: none;
}

header nav ul li a, header .contact-info a {
    color: var(--text-dark) !important;
    font-weight: 600;
}

/* Hero Section - Cyber Renaissance */
.edu-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
}

.edu-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -2px;
}

.edu-hero .badge {
    display: inline-block;
    padding: 10px 25px;
    background: #000;
    color: #fff;
    border-radius: 0;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-image-wrap {
    position: relative;
    z-index: 2;
}

.hero-image-wrap img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px; bottom: 20px; left: 20px;
    border: 2px solid var(--accent-cyan);
    z-index: -1;
}

/* Roadmap - Marble Slabs */
.roadmap-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    background: var(--border-classic);
    border: 1px solid var(--border-classic);
}

.edu-slab-card {
    background: #fff;
    padding: 50px 40px;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
    cursor: pointer;
}

.edu-slab-card:hover {
    background: var(--text-dark);
    color: #fff;
    box-shadow: inset 0 0 0 1px var(--accent-cyan);
}

/* Modal Animations & Styles */
.edu-modal {
    animation: fadeIn 0.3s ease;
}

.edu-modal .edu-glass-card {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.2);
}

.edu-modal h2 {
    color: #fff !important;
}

.edu-modal p {
    color: rgba(255,255,255,0.7) !important;
}

.edu-modal .syllabus-list li {
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding: 15px 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.edu-modal .syllabus-list li i {
    color: var(--accent-cyan);
    margin-right: 15px;
    font-size: 14px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.edu-slab-card:hover p {
    color: rgba(255,255,255,0.7) !important;
}

.edu-slab-card .module-num {
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0.05;
}

.edu-slab-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Methodology - Carving Code */
.vibe-section {
    padding: 120px 0;
    background: #000;
    color: #fff;
}

.vibe-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    color: #fff;
}

.method-image {
    width: 100%;
    border-radius: 20px;
    opacity: 0.8;
}

/* Buttons - Sharp and Technical */
.edu-btn {
    padding: 20px 50px;
    border: 1px solid var(--text-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.edu-btn-primary {
    background: var(--text-dark);
    color: #fff;
}

.edu-btn-primary:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: #000;
    transform: translateY(-5px);
}

/* Pricing - Architectural */
.pricing-card {
    border: 1px solid var(--border-classic);
    background: #fff;
    padding: 60px 40px;
    text-align: center;
}

.pricing-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
}

.pricing-card.featured {
    border: 4px solid var(--text-dark);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .edu-hero {
        text-align: center;
        padding-top: 150px;
    }
}
