/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-blue: #1e3a8a;
    --navy-blue: #0f172a;
    --orange: #f97316;
    --yellow: #fbbf24;
    --green: #10b981;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --gradient: linear-gradient(135deg, var(--primary-blue), var(--navy-blue));
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

.highlight {
    color: var(--orange);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-mascot {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.logo-text h2 {
    font-family: 'Inter', sans-serif;
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: -5px;
    font-weight: 700;
}

.logo-text span {
    color: var(--gray);
    font-size: 0.9rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Pure Image Banner Slider */
.hero {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.logo-image {
    width: 15%;
    height: auto;
}

.banner-image {
    padding: 2%;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.02);
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-blue);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--orange);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    padding: 80px 0;
    color: var(--white);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-text {
    flex: 1;
}

.cta-mascot {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2rem;
}

.app-features .feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.app-download-btn img {
    transition: transform 0.3s ease;
}

.app-download-btn:hover img {
    transform: scale(1.05);
}

.qr-code {
    text-align: center;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.qr-code span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Information Section */
.info-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.info-card ul {
    list-style: none;
    text-align: left;
}

.info-card li {
    color: var(--dark-gray);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.learning-mascot {
    text-align: center;
    margin-top: 40px;
}

.mascot-container {
    position: relative;
    display: inline-block;
}

.buffalo-teacher {
    font-size: 4rem;
    animation: bounce 2s infinite;
}

.speech-bubble {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--navy-blue);
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    font-weight: 500;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--white);
}



/* Footer */
.footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--orange);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-family: 'Inter', sans-serif;
    color: var(--orange);
    font-weight: 700;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #cbd5e1;
}

.contact-info i {
    color: var(--orange);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
}

.about-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.journey-stats {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
}

.mascot-story {
    position: relative;
    font-size: 8rem;
    animation: float 3s ease-in-out infinite;
}

.mascot-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mascot-elements span {
    position: absolute;
    font-size: 2rem;
    animation: orbit 6s linear infinite;
}

.our-story {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-intro {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.timeline-content h3 {
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}

.founder-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: sticky;
    top: 100px;
}

.founder-photo {
    font-size: 4rem;
    margin-bottom: 20px;
}

.founder-card h3 {
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.founder-card p {
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 20px;
}

.founder-quote {
    color: var(--gray);
    font-style: italic;
    line-height: 1.6;
    border-left: 4px solid var(--orange);
    padding-left: 20px;
    margin-top: 20px;
}

.name-story {
    padding: 100px 0;
    background: var(--light-gray);
}

.name-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.buffalo-thinking {
    font-size: 10rem;
    animation: bounce 2s infinite;
}

.name-intro {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.reason-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.reason-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.reason-card h3 {
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.reason-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.name-quote {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--orange);
    box-shadow: var(--shadow);
}

.name-quote blockquote {
    font-size: 1.1rem;
    color: var(--navy-blue);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.name-quote cite {
    color: var(--orange);
    font-weight: 500;
    font-size: 0.9rem;
}

.values-section {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    background: var(--white);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-member {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    font-size: 4rem;
    margin-bottom: 20px;
}

.team-member h3 {
    color: var(--navy-blue);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.member-role {
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 5px;
}

.member-exp {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.member-achievements {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.member-achievements span {
    background: var(--light-gray);
    color: var(--navy-blue);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.faculty-mascot {
    text-align: center;
    margin-top: 40px;
}

.buffalo-teaching {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.faculty-message {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.faculty-message p {
    color: var(--navy-blue);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    background: var(--gradient);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.about-cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-cta .cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.about-cta .cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .carousel-container {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .app-features {
        justify-content: center;
    }

    .speech-bubble {
        position: static;
        transform: none;
        margin-top: 20px;
        white-space: normal;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .speech-bubble::after {
        display: none;
    }

    /* About page mobile styles */
    .about-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .journey-stats {
        flex-direction: column;
        gap: 20px;
    }

    .mascot-story {
        font-size: 6rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-card {
        position: static;
    }

    .name-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .buffalo-thinking {
        font-size: 6rem;
    }

    .reason-cards {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .about-cta .cta-text h2 {
        font-size: 2rem;
    }

    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Contact page mobile styles */
    .contact-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .buffalo-phone {
        font-size: 6rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Policy pages mobile styles */
    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 0 10px;
    }

    .policy-intro {
        padding: 20px;
    }

    .refund-table {
        padding: 20px;
    }

    .refund-methods {
        grid-template-columns: 1fr;
    }

    .contact-details {
        padding: 20px;
    }

    .policy-mascot-footer {
        padding: 30px 20px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
}

.contact-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.buffalo-phone {
    font-size: 8rem;
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.contact-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-elements span {
    position: absolute;
    font-size: 2rem;
    animation: orbit 8s linear infinite;
}

.contact-elements .phone {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.contact-elements .email {
    bottom: 20%;
    left: 15%;
    animation-delay: 2.7s;
}

.contact-elements .chat {
    top: 60%;
    right: -5%;
    animation-delay: 5.3s;
}

.contact-info-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--orange);
    background: var(--white);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-details {
    margin-bottom: 20px;
}

.phone-number a,
.email-address a {
    color: var(--orange);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.phone-number a:hover,
.email-address a:hover {
    color: var(--navy-blue);
}

.timing,
.days,
.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
    color: var(--gray);
    font-size: 0.9rem;
}

.timing i,
.days i,
.response-time i {
    color: var(--orange);
}

.contact-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-btn {
    background: var(--orange);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

.contact-form-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.form-info h2 {
    color: var(--navy-blue);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.form-info p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.form-benefits {
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.benefit i {
    color: var(--green);
    font-size: 1.1rem;
}

.mascot-form {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.buffalo-writing {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.mascot-message {
    color: var(--navy-blue);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-blue);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    color: var(--navy-blue);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--orange);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p,
.faq-answer ul {
    padding: 0 30px 25px 30px;
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

.faq-answer ul {
    padding-left: 50px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.location-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.address-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 30px;
}

.address-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.address-card h3 {
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.address-card p {
    color: var(--gray);
    line-height: 1.8;
}

.transport-info h4 {
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.transport-options {
    display: grid;
    gap: 15px;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.transport-item i {
    color: var(--orange);
    font-size: 1.3rem;
    width: 25px;
}

.transport-item span {
    color: var(--dark-gray);
    font-weight: 500;
}

.map-placeholder {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.map-content {
    text-align: center;
    padding: 40px;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.map-content h3 {
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.map-content p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.map-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.map-btn {
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.map-btn:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
}

.location-mascot {
    text-align: center;
}

.buffalo-location {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.location-message {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
    color: var(--navy-blue);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
}

/* Policy Pages Styles */
.policy-section {
    padding: 120px 0 80px;
    margin-top: 80px;
    background: var(--white);
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.last-updated {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 20px;
}

.policy-mascot {
    font-size: 3rem;
    margin-bottom: 20px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-intro {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid var(--orange);
}

.policy-intro p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin: 0;
}

.policy-section-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section-item:last-child {
    border-bottom: none;
}

.policy-section-item h2 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.policy-section-item h3 {
    color: var(--orange);
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
}

.policy-section-item p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.policy-section-item ul,
.policy-section-item ol {
    color: var(--dark-gray);
    margin-bottom: 20px;
    padding-left: 25px;
}

.policy-section-item li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-section-item a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
}

.policy-section-item a:hover {
    color: var(--navy-blue);
    text-decoration: underline;
}

.contact-details {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--orange);
    width: 20px;
    font-size: 1.1rem;
}

.policy-mascot-footer {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
    border: 3px solid var(--orange);
}

.buffalo-secure {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.policy-mascot-footer p {
    color: var(--navy-blue);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Refund Policy Specific Styles */
.refund-table {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
}

.refund-table h3 {
    color: var(--navy-blue);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.3rem;
}

.timeline-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--orange);
    box-shadow: var(--shadow);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-period {
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-refund {
    color: var(--orange);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-details p {
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.timeline-details small {
    color: var(--gray);
    font-size: 0.9rem;
}

.refund-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.method-item {
    background: var(--light-gray);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.method-item i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 15px;
}

.method-item h4 {
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.method-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 480px) {
    .carousel-container {
        height: 50vh;
        min-height: 350px;
    }

    .info-card,
    .course-card {
        padding: 30px 20px;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}
