/* Reset and Base Styles */
/* Warm Color Theme Variables */
:root {
    --primary-color: #d97706;
    --secondary-color: #f59e0b;
    --accent-color: #dc2626;
    --text-dark: #1f2937;
    --text-light: #92400e;
    --bg-light: #fef3c7;
    --bg-white: #ffffff;
    --warm-orange: #ea580c;
    --warm-yellow: #fbbf24;
    --warm-red: #ef4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fde68a 100%);
    color: var(--text-dark);
    margin: 0;
    min-height: 100vh;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
}

body.loaded {
    opacity: 1;
    transform: translateY(0);
}

body.menu-open {
    overflow: hidden;
}

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

/* Section animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(217, 119, 6, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px rgba(0,0,0,0.12);
    padding: 0.8rem 0;
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    color: var(--secondary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(217, 119, 6, 0.1);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.8rem;
    gap: 5px;
    z-index: 101;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #fde68a 60%, #fef3c7 100%);
    padding: 4rem 0 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

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

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

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: white;
}

.about-main h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-photo {
    width: 280px;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    line-height: 1.7;
}

.about-text h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.about-text p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1rem;
}

.about-text ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.about-text li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Classes Section */
.classes-section {
    padding: 4rem 0 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.classes-main h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.class-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.class-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.class-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    font-weight: 400;
}

.pricing {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 500px;
    margin: 0 auto;
}

.pricing-spacer {
    height: 1rem;
}

.pricing ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

/* Student Work Section */
.student-work-section {
    padding: 4rem 0;
    background: white;
}

.student-work-main h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* WhatsApp Section */
.whatsapp-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.whatsapp-main h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.whatsapp-info h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.whatsapp-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

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

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.step-content p {
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.whatsapp-btn.primary {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn.secondary {
    background: white;
    color: #25d366;
    border: 2px solid #25d366;
}

.whatsapp-btn.secondary:hover {
    background: #25d366;
    color: white;
    transform: translateY(-3px);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

.whatsapp-btn.secondary svg {
    width: 20px;
    height: 20px;
}

.manual-whatsapp {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.manual-whatsapp p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1rem;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.phone-number span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
}

.copy-btn:hover {
    background: var(--secondary-color);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

.copy-success {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Socials Section */
.socials-section {
    background: #ffffff;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    z-index: 50;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    min-height: 300px;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    /* margin-top: 2rem; */
}

.socials-main h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.socials-content {
    max-width: 600px;
    margin: 0 auto;
}

.socials-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: #dc2743;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link span {
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 2rem 0 1rem 0;
    margin-top: 0;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 5;
}



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

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





/* Mobile-first responsive design */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .about-photo {
        width: 220px;
        height: 280px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s ease;
        z-index: 100;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.4rem;
        padding: 1.2rem 2.5rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a.active,
    .nav-links a:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-bottom: none;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
    }
    
    .hero {
        padding: 3rem 0 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .about-section,
    .student-work-section,
    .whatsapp-section,
    .socials-section {
        padding: 3rem 0;
    }
    
    .classes-section {
        padding: 3rem 0 4rem 0;
    }
    
    .whatsapp-info h2 {
        font-size: 1.5rem;
    }
    
    .whatsapp-info > p {
        font-size: 1rem;
    }
    
    .booking-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .whatsapp-buttons {
        gap: 0.8rem;
    }
    
    .whatsapp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .manual-whatsapp {
        padding: 1.5rem;
    }
    
    .phone-number {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        text-align: center;
    }
    
    .phone-number span {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .copy-btn {
        min-width: 32px;
        min-height: 32px;
    }
    
    .about-main h1,
    .classes-main h1,
    .student-work-main h1,
    .whatsapp-main h1,
    .socials-main h1 {
        font-size: 2rem;
    }
    
    .about-photo {
        width: 200px;
        height: 250px;
    }
    
    .about-flex h2 {
        font-size: 1.5rem;
    }
    
    .about-flex h3 {
        font-size: 1.2rem;
    }
    
    .socials-main h1 {
        font-size: 2rem;
    }
    
    .socials-content p {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        padding: 0.8rem 1.2rem;
    }
    
    .about-flex p {
        font-size: 1rem;
    }
    
    .about-flex ul {
        margin: 1rem 0;
    }
    
    .class-card {
        padding: 1.5rem;
    }
    
    .class-card h2 {
        font-size: 1.3rem;
    }
    
    .pricing {
        padding: 1.5rem;
    }
    
    .pricing ul {
        margin: 1rem 0;
    }
    
    .pricing li {
        padding: 0.6rem 0;
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 2rem 0 1.5rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .about-section,
    .student-work-section,
    .whatsapp-section,
    .socials-section {
        padding: 2rem 0;
    }
    
    .classes-section {
        padding: 2rem 0 3rem 0;
    }
    
    .whatsapp-info h2 {
        font-size: 1.3rem;
    }
    
    .whatsapp-info > p {
        font-size: 0.9rem;
    }
    
    .booking-steps {
        gap: 1rem;
    }
    
    .step {
        padding: 1rem;
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .whatsapp-buttons {
        gap: 0.6rem;
    }
    
    .whatsapp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .manual-whatsapp {
        padding: 1rem;
    }
    
    .manual-whatsapp p {
        font-size: 0.9rem;
    }
    
    .phone-number {
        padding: 0.8rem;
        flex-direction: column;
        gap: 0.6rem;
        align-items: center;
        text-align: center;
    }
    
    .phone-number span {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .copy-btn {
        min-width: 30px;
        min-height: 30px;
    }
    
    .about-main h1,
    .classes-main h1,
    .student-work-main h1,
    .whatsapp-main h1,
    .socials-main h1 {
        font-size: 1.8rem;
    }
    
    .about-photo {
        width: 180px;
        height: 220px;
    }
    
    .about-flex {
        gap: 1.5rem;
    }
    
    .about-flex h2 {
        font-size: 1.3rem;
    }
    
    .about-flex h3 {
        font-size: 1.1rem;
    }
    
    .socials-main h1 {
        font-size: 1.8rem;
    }
    
    .socials-content p {
        font-size: 0.95rem;
    }
    
    .social-link {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .about-flex p {
        font-size: 0.95rem;
    }
    
    .about-flex ul {
        margin: 0.8rem 0;
    }
    
    .about-flex li {
        padding: 0.4rem 0;
        font-size: 0.9rem;
    }
    
    .class-card {
        padding: 1.5rem;
    }
    
    .class-card h2 {
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .class-card p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
    }
    
    .pricing h2,
    .pricing h3 {
        font-size: 1.2rem;
    }
    
    .pricing {
        padding: 1.2rem;
    }
    
    .pricing li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-info p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .contact-form label {
        font-size: 0.9rem;
    }
    
    .contact-info h2 {
        font-size: 1.2rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .contact-info a {
        font-size: 0.9rem;
    }
    
    .navbar {
        padding: 0.3rem 0;
    }
    
    .nav-flex {
        gap: 1rem;
    }
    
    .nav-links {
        gap: 0.8rem;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .footer {
        padding: 1.5rem 0 0.8rem 0;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
    

}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .hero {
        padding: 1.5rem 0 1rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .about-section,
    .student-work-section,
    .whatsapp-section,
    .socials-section {
        padding: 2rem 0;
    }
    
    .socials-section {
        background: #ffffff;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        position: relative;
        z-index: 50;
        min-height: 250px;
        padding: 2.5rem 0;
        border-top: 3px solid var(--primary-color);
        margin-top: 1rem;
    }
    
    .classes-section {
        padding: 1.5rem 0 2.5rem 0;
    }
    
    .whatsapp-info h2 {
        font-size: 1.2rem;
    }
    
    .whatsapp-info > p {
        font-size: 0.85rem;
    }
    
    .booking-steps {
        gap: 0.8rem;
    }
    
    .step {
        padding: 0.8rem;
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .step-content h3 {
        font-size: 0.9rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .whatsapp-buttons {
        gap: 0.5rem;
    }
    
    .whatsapp-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .manual-whatsapp {
        padding: 0.8rem;
    }
    
    .manual-whatsapp p {
        font-size: 0.8rem;
    }
    
    .phone-number {
        padding: 0.6rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        text-align: center;
    }
    
    .phone-number span {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .copy-btn {
        padding: 0.4rem;
        min-width: 28px;
        min-height: 28px;
    }
    
    .copy-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .about-main h1,
    .classes-main h1,
    .student-work-main h1,
    .whatsapp-main h1,
    .socials-main h1 {
        font-size: 1.6rem;
    }
    
    .about-photo {
        width: 160px;
        height: 200px;
    }
    
    .about-flex h2 {
        font-size: 1.2rem;
    }
    
    .about-flex h3 {
        font-size: 1rem;
    }
    
    .socials-main h1 {
        font-size: 1.6rem;
    }
    
    .socials-content p {
        font-size: 0.9rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        background: white;
        border: 2px solid var(--primary-color);
        box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .about-flex p {
        font-size: 0.9rem;
    }
    
    .about-flex li {
        padding: 0.3rem 0;
        font-size: 0.85rem;
    }
    
    .class-card {
        padding: 1.2rem;
    }
    
    .class-card h2 {
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .class-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--text-dark);
    }
    
    .pricing h2,
    .pricing h3 {
        font-size: 1.1rem;
    }
    
    .pricing {
        padding: 1rem;
    }
    
    .pricing li {
        padding: 0.4rem 0;
        font-size: 0.85rem;
    }
    
    .video-grid {
        gap: 1rem;
    }
    
    .video-info {
        padding: 0.8rem;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .video-info p {
        font-size: 0.8rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .contact-form label {
        font-size: 0.8rem;
    }
    
    .contact-info h2 {
        font-size: 1.1rem;
    }
    
    .contact-info p,
    .contact-info a {
        font-size: 0.8rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    

}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0 1rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-section,
    .classes-section,
    .student-work-section,
    .whatsapp-section,
    .socials-section {
        padding: 2rem 0;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .about-photo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
} 

/* Remove gap above socials */
#socials {
    margin-top: 0 !important;
  }