/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

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

:root {
    /* Primary Colors - Deep Blue */
    --primary: #0B1F3A;
    --primary-dark: #081729;
    --primary-light: #1a3a5c;
    
    /* Secondary Colors - Orange */
    --secondary: #FF7A00;
    --secondary-dark: #E66D00;
    --secondary-light: #FF9433;
    
    /* Accent Colors */
    --accent: #F5F7FA;
    --accent-dark: #E5E7EB;
    --accent-light: #F9FAFB;
    
    /* Text Colors */
    --text-dark: #1A1A1A;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    
    /* Background Colors */
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    
    /* Status Colors */
    --success: #10B981;
    --info: #3B82F6;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Borders & Shadows */
    --border: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(11, 31, 58, 0.05);
    --shadow: 0 4px 6px -1px rgba(11, 31, 58, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(11, 31, 58, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(11, 31, 58, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0B1F3A 0%, #1a3a5c 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.btn-link:hover {
    gap: 0.75rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-white);
}

.features h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features > .container > p {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.15rem;
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.15);
}

.feature-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0B1F3A 0%, #1a3a5c 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    animation: fadeInUp 0.6s ease;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
}

/* Category Cards */
.content-categories {
    display: grid;
    gap: 2.5rem;
}

.category-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.15);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.daily-count {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
}

.topics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.topic-tag {
    background: linear-gradient(135deg, var(--bg-light) 0%, #E2E8F0 100%);
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.topic-tag:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

/* Mentoring Plans */
.mentoring-plans {
    margin-top: 4rem;
}

.mentoring-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.plan-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.2);
}

.plan-card.featured {
    border: 3px solid var(--secondary);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(230, 109, 0, 0.05) 100%);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.plan-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0;
}

.plan-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.plan-card li {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-card li:last-child {
    border-bottom: none;
}

.plan-card li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.3);
    color: white;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    opacity: 0.95;
    line-height: 1.6;
}

/* Steps */
.steps {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.step p {
    color: var(--text-gray);
    font-weight: 500;
}

/* Phase Banner */
.phase-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
}

.phase-banner h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.phase-banner p {
    font-size: 1.15rem;
    opacity: 0.95;
}

/* Preview Grid */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.preview-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.preview-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.preview-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Exam Tags */
.exam-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.exam-tag {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
}

.exam-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

/* Notify Form */
.notify-section {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.notify-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.notify-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.notify-form input {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    width: 350px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.notify-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 3rem 0;
    margin-top: 6rem;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

footer p {
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        gap: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .notify-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .notify-form input {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.875rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
}

/* Practice Sets */
.practice-info {
    text-align: center;
    margin-bottom: 3rem;
}

.practice-info h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.practice-info p {
    font-size: 1.15rem;
    color: var(--text-gray);
}

.practice-sets {
    display: grid;
    gap: 1.75rem;
}

.set-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.set-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(11, 31, 58, 0.15);
    border-color: var(--primary-light);
}

.set-card > div:first-child {
    flex: 1;
}

.set-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.set-card p {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.difficulty {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #E2E8F0 100%);
    color: var(--text-gray);
    font-weight: 600;
    border: 1px solid var(--border);
}

.mentoring-intro,
.about-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mentoring-intro h2,
.about-content h2 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.mentoring-intro h2:first-child,
.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
}

.about-content li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
}

.about-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.25rem;
}

.mentoring-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-box h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-box p {
    color: var(--text-gray);
    line-height: 1.7;
}

.mocks-preview {
    margin: 3rem 0;
}

.mocks-preview h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.exam-list {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.exam-list h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-info {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

/* Login Button in Navbar */
.nav-links .login-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
}

.nav-links .login-btn::after {
    display: none;
}

/* Smaller Font Sizes */
.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.1rem;
}

.page-header h1 {
    font-size: 2.25rem;
}

.page-header p {
    font-size: 1rem;
}

.features h2 {
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 0.95rem;
}

.dashboard-card h3 {
    font-size: 1.15rem;
}

.stat-label {
    font-size: 0.9rem;
}

.stat-value {
    font-size: 1.25rem;
}

.action-btn {
    font-size: 0.95rem;
    padding: 0.875rem;
}

.category-header h2 {
    font-size: 1.35rem;
}

.set-card h3 {
    font-size: 1.1rem;
}

.set-card p {
    font-size: 0.9rem;
}

.plan-card h3 {
    font-size: 1.35rem;
}

.price {
    font-size: 2rem;
}

body {
    font-size: 15px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
}

/* Reduce Page Header Height */
.page-header {
    padding: 3rem 0 2.5rem;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 0.95rem;
}

.hero {
    padding: 5rem 0 4rem;
}

.hero h1 {
    font-size: 2.25rem;
}

.hero p {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 3rem 0 2.5rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
}

/* Responsive Dashboard and Content Sections */
.content-section {
    padding: 3rem 0;
    min-height: auto;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.dashboard-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    min-height: auto;
}

.dashboard-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.progress-stats {
    display: grid;
    gap: 0.875rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.875rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.quick-actions {
    display: grid;
    gap: 0.875rem;
}

.action-btn {
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.study-plan {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.study-plan p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Ensure content doesn't overflow */
body {
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* Page Header Responsive */
.page-header {
    padding: 2.5rem 0 2rem;
    min-height: auto;
}

.page-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.page-header p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Hero Section Responsive */
.hero {
    padding: 4rem 0 3.5rem;
    min-height: auto;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.3;
}

.hero p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 968px) {
    .page-header {
        padding: 2rem 0 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 3rem 0 2.5rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 1.5rem 0 1.25rem;
    }
    
    .page-header h1 {
        font-size: 1.35rem;
    }
    
    .page-header p {
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 2.5rem 0 2rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .dashboard-card {
        padding: 1.25rem;
    }
    
    .dashboard-card h3 {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .action-btn {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Prevent content overflow */
* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

section {
    width: 100%;
    overflow: hidden;
}
