/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #3a2c2c;
}

.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: 1rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text h2 {
    color: #d4a574;
    font-weight: 700;
    margin-bottom: 0;
}

.logo-text span {
    font-size: 0.8rem;
    color: #a8a8a8;
    font-weight: 400;
}

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

.nav-menu a {
    text-decoration: none;
    color: #e5e5e5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d4a574;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e5e5e5;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2c1810 0%, #4a1a1a 50%, #1a0f0f 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #d4a574;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #c1965f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: #d4a574;
}

.btn-secondary:hover {
    background: #d4a574;
    color: #1a1a1a;
}

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

.headshot-container {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 4px solid rgba(212, 165, 116, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

/* Landscape view - larger image */
@media (orientation: landscape) and (min-width: 1024px) {
    .headshot-container {
        width: 400px;
        height: 400px;
    }
}

@media (orientation: landscape) and (min-width: 1440px) {
    .headshot-container {
        width: 450px;
        height: 450px;
    }
}

.headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.headshot:hover {
    transform: scale(1.05);
}

.headshot-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.3) 70%);
    pointer-events: none;
    border-radius: 20px;
}


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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #a8a8a8;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #2a2a2a;
}

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

.service-card {
    background: #3a2c2c;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #4a3a3a;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1rem;
}

.service-card p {
    color: #c8c8c8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #b8b8b8;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background: #2a2a2a;
}

.experience-content {
    max-width: 800px;
    margin: 0 auto;
}

.experience-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.experience-text p {
    color: #c8c8c8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.exp-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.exp-feature i {
    font-size: 1.5rem;
    color: #d4a574;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.exp-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.exp-feature p {
    color: #a8a8a8;
    margin: 0;
    font-size: 0.95rem;
}

.artwork-showcase h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1rem;
}

.artwork-showcase p {
    color: #c8c8c8;
    margin-bottom: 2rem;
}


/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #3a2c2c;
    border: 1px solid #4a3a3a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    min-height: 300px;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: #d4a574;
}

.portfolio-image {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(74, 58, 58, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 2rem;
    z-index: 10;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1rem;
}

.overlay-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.skill-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.skill-tags span {
    background: rgba(212, 165, 116, 0.2);
    color: #d4a574;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

/* Web Development Preview */
.web-preview {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #2a2a2a;
}

.browser-mockup {
    width: 100%;
    max-width: 300px;
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.browser-header {
    background: #1a1a1a;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4a3a3a;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-url {
    background: #3a2c2c;
    color: #d4a574;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: monospace;
}

.browser-content {
    padding: 1rem;
    background: #2a2a2a;
}

.website-preview {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
}

.preview-header {
    height: 20px;
    background: #d4a574;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.preview-nav {
    height: 15px;
    background: #4a3a3a;
    border-radius: 4px;
    margin-bottom: 1rem;
    width: 60%;
}

.preview-content {
    display: flex;
    gap: 0.5rem;
}

.preview-card {
    flex: 1;
    height: 40px;
    background: #3a2c2c;
    border-radius: 4px;
}

/* Music Visualizer */
.music-visualizer {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    background: #2a2a2a;
}

.piano-keys {
    display: flex;
    gap: 2px;
    margin-bottom: 2rem;
}

.key {
    width: 30px;
    height: 80px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.key.white {
    background: #f5f5f5;
    border: 1px solid #ddd;
}

.key.black {
    background: #1a1a1a;
    width: 20px;
    height: 50px;
    margin-left: -10px;
    z-index: 1;
    position: relative;
}

.portfolio-item:hover .key {
    animation: keyPress 0.3s ease;
}

@keyframes keyPress {
    0% { transform: translateY(0); }
    50% { transform: translateY(2px); }
    100% { transform: translateY(0); }
}

.audio-waves {
    display: flex;
    gap: 4px;
    align-items: end;
    height: 40px;
}

.wave {
    width: 4px;
    background: #d4a574;
    border-radius: 2px;
    animation: waveAnimation 1.5s ease-in-out infinite;
}

.wave:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave:nth-child(2) { height: 30px; animation-delay: 0.2s; }
.wave:nth-child(3) { height: 25px; animation-delay: 0.4s; }
.wave:nth-child(4) { height: 35px; animation-delay: 0.6s; }
.wave:nth-child(5) { height: 15px; animation-delay: 0.8s; }

@keyframes waveAnimation {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.hidden-audio {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.9;
    width: 280px;
    z-index: 15;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 8px;
    padding: 0.5rem;
}

/* Academic Showcase */
.academic-showcase {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #2a2a2a;
}

.ap-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.stem-badge {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.humanities-badge {
    background: linear-gradient(135deg, #d4a574, #c1965f);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subject-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 100%;
    max-width: 280px;
}

.subject-item {
    background: rgba(212, 165, 116, 0.1);
    color: #d4a574;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.portfolio-item:hover .subject-item {
    background: rgba(212, 165, 116, 0.2);
    transform: scale(1.05);
}


/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #2a2a2a;
}

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

.pricing-card {
    background: #3a2c2c;
    border: 2px solid #4a3a3a;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    border-color: #d4a574;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4a574;
    color: #1a1a1a;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: #d4a574;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #f5f5f5;
    margin: 0 0.2rem;
}

.period {
    font-size: 1rem;
    color: #a8a8a8;
}

.pricing-header p {
    color: #a8a8a8;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #c8c8c8;
}

.pricing-features i {
    color: #d4a574;
    font-size: 0.9rem;
}

.pricing-note {
    text-align: center;
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

.pricing-note p {
    color: #c8c8c8;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-note i {
    color: #d4a574;
}

/* Tutoring Pricing Section */
.tutoring-pricing-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #4a3a3a;
}

.tutoring-pricing-section .section-header {
    margin-bottom: 3rem;
}

.tutoring-pricing-section .section-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1rem;
}

.tutoring-pricing-section .section-header p {
    font-size: 1.1rem;
    color: #a8a8a8;
    max-width: 600px;
    margin: 0 auto;
}

.tutoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.tutoring-card {
    background: linear-gradient(135deg, #3a2c2c 0%, #4a3a3a 100%);
    border: 2px solid #5a4a4a;
    position: relative;
}

.tutoring-card:hover {
    border-color: #d4a574;
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.2);
}

.tutoring-card.featured {
    border-color: #d4a574;
    background: linear-gradient(135deg, #4a3a3a 0%, #5a4a4a 100%);
    transform: scale(1.02);
}

.tutoring-card .pricing-header h3 {
    font-size: 1.4rem;
    color: #d4a574;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tutoring-card .price .amount {
    font-size: 2.8rem;
    color: #f5f5f5;
}

.tutoring-card .pricing-features li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

/* Enrollment Section */
.enrollment {
    padding: 80px 0;
    background: #1a1a1a;
}

.form-type-selector {
    text-align: center;
    margin-bottom: 3rem;
}

.form-type-selector h3 {
    color: #d4a574;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-type-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.form-type-btn {
    flex: 1;
    background: #3a2c2c;
    border: 2px solid #4a3a3a;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #c8c8c8;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-type-btn:hover {
    border-color: #d4a574;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
}

.form-type-btn.active {
    border-color: #d4a574;
    background: rgba(212, 165, 116, 0.1);
    color: #d4a574;
}

.form-type-btn i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-type-btn span {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.form-type-btn small {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.3;
}

.enrollment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.enrollment-info {
    background: #3a2c2c;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #4a3a3a;
}

.enrollment-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.enrollment-info p {
    color: #c8c8c8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.enrollment-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.enrollment-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #c8c8c8;
}

.enrollment-feature i {
    color: #d4a574;
    font-size: 1.2rem;
    width: 20px;
}

.enrollment-contact {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #d4a574;
}

.enrollment-contact p {
    color: #c8c8c8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.enrollment-contact i {
    color: #d4a574;
    width: 16px;
}

.enrollment-form-container {
    background: #3a2c2c;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #4a3a3a;
    min-height: 500px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

.form-preview {
    margin-bottom: 2rem;
}

.form-preview i {
    font-size: 3rem;
    color: #d4a574;
    margin-bottom: 1rem;
}

.form-preview h5 {
    color: #d4a574;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-preview p {
    color: #a8a8a8;
    margin: 0;
}

.form-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #d4a574, #c1965f);
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.form-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #c1965f, #b88a4a);
}

.form-link-btn i {
    font-size: 1rem;
}

.form-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a8a8a8;
    font-size: 0.9rem;
}

.form-feature i {
    color: #d4a574;
    font-size: 1rem;
}

.enrollment-form-container.active {
    display: block;
    opacity: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #4a3a3a;
}

.form-header h4 {
    color: #d4a574;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-header p {
    color: #a8a8a8;
    font-size: 0.9rem;
    margin: 0;
}

.form-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #a8a8a8;
    padding: 2rem;
}

.form-placeholder i {
    font-size: 3rem;
    color: #d4a574;
    margin-bottom: 1rem;
}

.form-placeholder h4 {
    color: #d4a574;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.embed-instructions {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: left;
    max-width: 400px;
}

.embed-instructions p {
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 1rem;
}

.embed-instructions ol {
    color: #c8c8c8;
    padding-left: 1.5rem;
}

.embed-instructions li {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #2a2a2a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #3a2c2c;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #4a3a3a;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #c8c8c8;
    margin: 0;
}

.payment-methods {
    background: #3a2c2c;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #4a3a3a;
}

.payment-methods h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #4a3a3a;
}

.payment-method i {
    font-size: 1.5rem;
    color: #d4a574;
    width: 30px;
    text-align: center;
}

.payment-method h4 {
    font-weight: 600;
    color: #d4a574;
    margin: 0;
    min-width: 80px;
}

.payment-method p {
    color: #c8c8c8;
    margin: 0;
    font-family: monospace;
    font-weight: 500;
}

/* Policies Section */
.policies {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.policy-card {
    background: #3a2c2c;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #d4a574;
    border: 1px solid #4a3a3a;
}

.policy-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.policy-icon i {
    color: white;
    font-size: 1.2rem;
}

.policy-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1rem;
}

.policy-card p {
    color: #c8c8c8;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid #3a2c2c;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    color: #d4a574;
    font-size: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #a8a8a8;
}

.footer-section p {
    color: #a8a8a8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3a2c2c;
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid #3a2c2c;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-logo {
        gap: 0.75rem;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo-text h2 {
        font-size: 1.3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .enrollment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-type-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-type-btn {
        min-height: 100px;
    }
    
    .form-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-link-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .experience-content {
        padding: 0 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .subject-grid {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
    
    .ap-badge,
    .stem-badge,
    .humanities-badge {
        width: 80px;
        height: 80px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .tutoring-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .tutoring-card.featured {
        transform: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .policies-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .services,
    .pricing,
    .contact,
    .policies {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.pricing-card,
.policy-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}
