/* ================================
   Bonk University - Modern University Style
================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-orange: #FF6A00;
    --primary-gold: #FFC700;
    --accent-red: #E63900;
    --background-cream: #FFF7E6;
    --text-brown: #3E2F2F;
    --white: #FFFFFF;
    --black: #0C0C0C;
    --gray-dark: #3E2F2F;
    --gray-medium: #8B7355;
    --gray-light: #D4C4A8;
    --max-width: 1200px;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Montserrat", sans-serif;
    --shadow-main: 0 4px 20px rgba(255, 106, 0, 0.15);
    --shadow-hover: 0 8px 30px rgba(255, 106, 0, 0.25);
    --shadow-card: 0 10px 40px rgba(62, 47, 47, 0.1);
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-brown);
    background-color: var(--background-cream);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================
   Navigation
================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.nav-logo img {
    height: 35px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-brown);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-brown);
    transition: var(--transition);
}

/* ================================
   Hero Section
================================ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 247, 230, 0.7) 0%, rgba(255, 232, 204, 0.7) 100%), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: -60px;
    padding-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.25) 0%, rgba(255, 199, 0, 0.2) 30%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 6s ease-in-out infinite;
    filter: blur(40px);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-gold));
    opacity: 0.8;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.floating-element:nth-child(4) {
    width: 30px;
    height: 30px;
    top: 40%;
    right: 30%;
    animation-delay: 6s;
    animation-duration: 8s;
}

.floating-element:nth-child(5) {
    width: 50px;
    height: 50px;
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 11s;
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    opacity: 0.5;
    animation: rotate 20s linear infinite;
}

.geometric-shape:nth-child(6) {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 25%;
    background: linear-gradient(45deg, var(--primary-orange), transparent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
}

.geometric-shape:nth-child(7) {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 15%;
    background: linear-gradient(45deg, var(--primary-gold), transparent);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation-delay: 5s;
}

.geometric-shape:nth-child(8) {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 5%;
    background: linear-gradient(45deg, var(--accent-red), transparent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 10s;
}

/* Energy Waves */
.energy-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 106, 0, 0.2), transparent);
    animation: waveMove 8s ease-in-out infinite;
}

.energy-wave:nth-child(9) {
    animation-delay: 0s;
    opacity: 0.6;
}

.energy-wave:nth-child(10) {
    animation-delay: 2s;
    opacity: 0.4;
    height: 150px;
}

.energy-wave:nth-child(11) {
    animation-delay: 4s;
    opacity: 0.5;
    height: 180px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-line {
    display: block;
    font-size: 1.2rem;
    color: var(--gray-medium);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-title-main {
    display: block;
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 106, 0, 0.3);
}

.hero-title-sub {
    display: block;
    font-size: 1.5rem;
    color: var(--text-brown);
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
}

.cta-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: var(--shadow-main);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.cta-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 200px;
    height: auto;
    animation: logoFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 106, 0, 0.3));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 4s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-orange);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

/* ================================
   Section Headers
================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-brown);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   About Section
================================ */
.about-section {
    padding: 8rem 0;
    background: var(--white);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-brown);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 106, 0, 0.2);
    box-shadow: 
        0 8px 32px rgba(255, 106, 0, 0.1),
        0 4px 16px rgba(62, 47, 47, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.05) 0%, rgba(255, 199, 0, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 20px 60px rgba(255, 106, 0, 0.2),
        0 8px 32px rgba(62, 47, 47, 0.1),
        0 0 0 1px rgba(255, 106, 0, 0.3);
    border-color: var(--primary-orange);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:active {
    transform: translateY(-4px) rotateX(2deg) rotateY(2deg);
    transition: all 0.1s ease;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-brown);
    margin-bottom: 1rem;
}

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

/* ================================
   Tutors Section
================================ */
.tutors-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--background-cream) 0%, #FFE8CC 100%);
}

.tutors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tutor-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 
        0 12px 40px rgba(255, 106, 0, 0.15),
        0 6px 20px rgba(62, 47, 47, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 500px;
    border: 2px solid rgba(255, 106, 0, 0.15);
  transform-style: preserve-3d;
    perspective: 1200px;
    position: relative;
}

.tutor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.08) 0%, rgba(255, 199, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.tutor-card:hover {
    transform: translateY(-12px) rotateX(8deg) rotateY(8deg);
    box-shadow: 
        0 25px 80px rgba(255, 106, 0, 0.25),
        0 12px 40px rgba(62, 47, 47, 0.15),
        0 0 0 2px rgba(255, 106, 0, 0.4);
    border-color: var(--primary-orange);
}

.tutor-card:hover::before {
    opacity: 1;
}

.tutor-card:active {
    transform: translateY(-6px) rotateX(4deg) rotateY(4deg);
  transition: all 0.2s ease;
}

.tutor-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.tutor-card:hover .tutor-card-inner {
    transform: rotateY(180deg);
}

.tutor-card-front,
.tutor-card-back {
    position: absolute;
    width: 100%;
  height: 100%;
    backface-visibility: hidden;
}

.tutor-card-front {
    display: flex;
    flex-direction: column;
}

.tutor-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.tutor-info {
    padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
    justify-content: center;
}

.tutor-name {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.tutor-title {
  font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.tutor-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tutor-stats span {
    font-size: 0.9rem;
    color: var(--text-brown);
    font-weight: 500;
}

.tutor-card-back {
    background: var(--primary-orange);
    color: var(--white);
    padding: 2rem;
    transform: rotateY(180deg);
        display: flex;
        flex-direction: column;
    justify-content: center;
}

.tutor-card-back h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.tutor-card-back p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tutor-expertise {
    list-style: none;
    margin-bottom: 2rem;
}

.tutor-expertise li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.tutor-expertise li:last-child {
    border-bottom: none;
}

.tutor-cta {
    background: var(--white);
    color: var(--primary-orange);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    margin-top: auto;
}

.tutor-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Removed conflicting background image styles that were affecting tutor pages */

/* ================================
   Courses Section
================================ */
.courses-section {
    padding: 8rem 0;
    background: var(--white);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 106, 0, 0.18);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 35px rgba(255, 106, 0, 0.12),
        0 5px 20px rgba(62, 47, 47, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.06) 0%, rgba(255, 199, 0, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.course-card:hover {
    transform: translateY(-10px) rotateX(6deg) rotateY(6deg);
    box-shadow: 
        0 22px 70px rgba(255, 106, 0, 0.22),
        0 10px 35px rgba(62, 47, 47, 0.12),
        0 0 0 1px rgba(255, 106, 0, 0.35);
    border-color: var(--primary-orange);
}

.course-card:hover::before {
    opacity: 1;
}

.course-card:active {
    transform: translateY(-5px) rotateX(3deg) rotateY(3deg);
    transition: all 0.15s ease;
}

.course-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.course-icon {
    font-size: 2.5rem;
}

.course-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-brown);
}

.course-card p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.course-features span {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.course-cta {
    background: var(--primary-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.course-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-main);
}

/* ================================
   Submit Section
================================ */
.submit-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #E63900 100%);
    color: var(--white);
}

.submit-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
        align-items: center;
}

.submit-text h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.submit-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.submit-benefits {
        display: flex;
        flex-direction: column;
    gap: 1rem;
}

.benefit-item {
        display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
}

.submit-action {
    text-align: center;
}

.submit-button {
    background: var(--white);
    color: var(--primary-orange);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ================================
   Tokenomics Section
================================ */
.tokenomics-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-cream) 0%, #FFF9F0 100%);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.tokenomics-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tokenomics-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.tokenomics-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

.tokenomics-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.tokenomics-info h3 {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-brown);
    margin-bottom: 0.5rem;
}

.tokenomics-info p {
    color: var(--gray-medium);
    line-height: 1.6;
}

.tokenomics-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tokenomics-bars {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.progress-bar {
    width: 100%;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-brown);
}

.progress-label .percentage {
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-orange);
}

.progress-track {
    width: 100%;
    height: 12px;
    background: rgba(62, 47, 47, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1s ease-in-out;
    position: relative;
}

.progress-fill.locked {
    background: linear-gradient(90deg, var(--primary-orange), #FF8A00);
    box-shadow: 0 2px 8px rgba(255, 106, 0, 0.3);
}

.progress-fill.circulating {
    background: linear-gradient(90deg, var(--primary-gold), #FFD700);
    box-shadow: 0 2px 8px rgba(255, 199, 0, 0.3);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.tokenomics-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.verify-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.verify-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.verify-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.verify-button:hover::before {
    left: 100%;
}

.verify-button:active {
    transform: translateY(0);
}

.button-icon {
    font-size: 1.2rem;
}

/* ================================
   Footer
================================ */
.footer {
    background: var(--text-brown);
        color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
        display: flex;
        align-items: center;
    gap: 1rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-section h4 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.social-links {
        display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* ================================
   Animations
================================ */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(90deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) translateX(-5px) rotate(180deg); 
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) translateX(15px) rotate(270deg); 
        opacity: 0.7;
    }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-30px) translateX(20px) rotate(180deg); 
        opacity: 0.9;
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes waveMove {
    0%, 100% { 
        transform: translateX(0px) scaleY(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(20px) scaleY(1.2);
        opacity: 0.6;
    }
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg); 
    }
}

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

@keyframes logoGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0px) rotate(45deg); }
    50% { transform: translateY(10px) rotate(45deg); }
}

/* ================================
   Submit Page Navigation Overrides
================================ */
body .navbar {
    background: rgba(255, 247, 230, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 106, 0, 0.1) !important;
}

body .nav-logo a {
    text-decoration: none !important;
    color: var(--primary-orange) !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    font-family: var(--font-secondary) !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease !important;
    padding: 0.5rem !important;
    border-radius: 8px !important;
}

body .nav-logo a:hover {
    color: var(--accent-red) !important;
    transform: scale(1.02) !important;
    background: rgba(255, 106, 0, 0.05) !important;
    box-shadow: 0 2px 8px rgba(255, 106, 0, 0.1) !important;
}

body .nav-logo img {
    height: 45px !important;
    width: auto !important;
    filter: drop-shadow(0 2px 6px rgba(255, 106, 0, 0.3)) !important;
    transition: all 0.3s ease !important;
}

body .nav-logo a:hover img {
    filter: drop-shadow(0 4px 12px rgba(255, 106, 0, 0.4)) !important;
    transform: scale(1.05) !important;
}

body .nav-logo span {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-gold) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800 !important;
    text-shadow: none !important;
    position: relative !important;
    display: inline-block !important;
}

/* Fallback for browsers that don't support gradient text */
@supports not (-webkit-background-clip: text) {
    body .nav-logo span {
        background: none !important;
        -webkit-text-fill-color: var(--primary-orange) !important;
        color: var(--primary-orange) !important;
        text-shadow: 0 2px 4px rgba(255, 106, 0, 0.2) !important;
    }
}

body .nav-link {
    color: var(--text-brown) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
}

body .nav-link:hover {
    color: var(--primary-orange) !important;
    background: rgba(255, 106, 0, 0.1) !important;
    transform: translateY(-1px) !important;
}

body .nav-link::after {
    display: none !important;
}

/* ================================
   Submit Page Styles
================================ */
.submit-page-section {
    padding: 120px 0 4rem;
    background: var(--background-cream);
    min-height: 100vh;
}

.submit-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.submit-page-header h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.submit-page-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.submit-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    box-shadow: 
        0 15px 50px rgba(255, 106, 0, 0.18),
        0 8px 25px rgba(62, 47, 47, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 106, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-form-container:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 60px rgba(255, 106, 0, 0.25),
        0 12px 35px rgba(62, 47, 47, 0.15);
    border-color: var(--primary-orange);
}

/* ================================
   Responsive Design
================================ */
@media (max-width: 768px) {
    body .navbar {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: none !important;
        position: relative !important;
        z-index: 10 !important;
    }

    body .nav-logo a {
        font-size: 1.3rem !important;
        gap: 0.75rem !important;
    }

    body .nav-logo img {
        height: 32px !important;
    }

    body .nav-logo span {
        display: none !important;
    }

    .hero-section {
        margin-top: -60px !important;
        padding-top: 60px !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--background-cream);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-logo-container {
        width: 200px;
        height: 200px;
    }

    .hero-logo {
        width: 150px;
    }

    .tutors-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tokenomics-bars {
        max-width: 100%;
    }

    .progress-track {
        height: 10px;
    }

    .verify-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .submit-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}
