/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    --primary-color: #E10600;
    --secondary-color: #000000;
    --white: #000000;
    --gray-light: #F5F5F5;
    --gray-dark: #333333;
    --dark-bg: #FFFFFF;
    --dark-section: #F8F8F8;
    --dark-card: #FFFFFF;
    --text-light: #000000;
    --text-muted: #333333;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(225, 6, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #FFFFFF;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.navbar .container {
    overflow: visible !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Additional responsive utilities */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

section,
.container,
.section-header,
.hero-content,
.welcome-content,
.contact-content,
.footer-content {
    max-width: 100%;
    overflow: hidden;
}

/* Global Hero Parallax Styles */
.about-hero,
.profile-hero,
.classes-hero,
.class-hero,
.instructor-hero {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    will-change: transform;
    transition: transform 0.1s linear;
}

.about-hero .container,
.profile-hero .container,
.classes-hero .container,
.class-hero .container,
.instructor-hero .container {
    position: relative;
    z-index: 2;
    transition: opacity 0.1s linear;
}

/* ===================================
   Scroll Progress Bar
   =================================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FF4444);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    overflow: visible !important;
}

.navbar .container {
    position: relative;
    overflow: visible !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .dropdown-menu {
    top: calc(100% + 10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible !important;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .logo-img {
    filter: none;
}

.navbar.scrolled .logo-img {
    height: 55px;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Backup text logo styles (kept for reference) */
.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
}

.logo-sub {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-top: -5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: visible !important;
}

.nav-item {
    position: relative;
    overflow: visible !important;
}

.nav-item.nav-dropdown {
    position: relative;
    overflow: visible !important;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

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

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

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

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    overflow: visible !important;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: #FFFFFF;
    min-width: 250px;
    padding: 15px 0;
    padding-top: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, visibility 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    z-index: 99999;
    margin-top: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 25px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    padding-left: 30px;
}

.dropdown-item:hover i {
    color: #FFFFFF;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: calc(100vh + 50px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(225, 6, 0, 0.3)),
                url('images/pexels-rdne-7045750.jpg') center/cover no-repeat;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 900;
    line-height: 1.1;
    margin-top: 50px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    color: var(--primary-color);
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
    max-width: 100%;
    padding: 0 10px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
    margin-bottom: 120px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #B30500;
    border-color: #B30500;
    box-shadow: 0 0 20px rgba(225, 6, 0, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: #000000;
}

/* ===================================
   Scroll Indicator
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #FFFFFF;
    animation: bounce 2s infinite;
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

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

.scroll-indicator p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================
   Section Styling
   =================================== */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
}

/* ===================================
   Welcome Section
   =================================== */
.welcome-section {
    background: var(--dark-section);
    position: relative;
    z-index: 2;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 968px) {
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.welcome-text {
    padding-right: 20px;
}

@media (max-width: 768px) {
    .welcome-text {
        padding-right: 0;
    }
}

.lead {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

.welcome-text p {
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(225, 6, 0, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.3), rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* ===================================
   Featured Classes Section
   =================================== */
.featured-classes {
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 0;
    pointer-events: none;
}

.featured-classes .container {
    position: relative;
    z-index: 2;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 480px) {
    .classes-grid {
        grid-template-columns: 1fr;
    }
}

.class-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.class-card:hover .card-image img {
    transform: scale(1.2);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.card-content {
    padding: 30px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.card-icon i {
    font-size: 28px;
    color: #FFFFFF;
}

.class-card:hover .card-icon {
    transform: rotate(360deg);
    box-shadow: 0 0 20px rgba(225, 6, 0, 0.5);
}

.card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-description {
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.card-link:hover {
    gap: 15px;
}

.view-all-btn {
    text-align: center;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-us {
    background: var(--dark-section);
    position: relative;
    z-index: 2;
}

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

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: #FFFFFF;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), #FF4444);
    transition: height 0.5s ease;
    z-index: 0;
}

.feature-item:hover::before {
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: #FFFFFF;
}

.feature-icon i {
    font-size: 36px;
    color: #FFFFFF;
    transition: var(--transition);
}

.feature-item:hover .feature-icon i {
    color: var(--primary-color);
}

.feature-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-description {
    color: #000000;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-item:hover .feature-title,
.feature-item:hover .feature-description {
    color: #FFFFFF;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--dark-bg);
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.info-text h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #000000;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-text p {
    color: #000000;
    word-break: break-word;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(225, 6, 0, 0.3);
}

.social-link i {
    font-size: 20px;
}

/* ===================================
   Contact Form
   =================================== */
.contact-form {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: #FFFFFF;
    color: #000000;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(225, 6, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    color: var(--text-muted);
}

.form-group select option {
    background: #FFFFFF;
    color: #000000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(180deg, #111111 0%, #0e0e0e 100%);
    color: #d9d9d9;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

@media (min-width: 481px) and (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px 15px;
    }
    
    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .footer-col:first-child h4 {
        font-size: 15px;
    }
    
    .footer-col p {
        font-size: 11px;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    .footer-col:first-child p {
        font-size: 12px;
        line-height: 1.7;
    }
    
    .footer-col p i {
        font-size: 10px;
    }
    
    .footer-col ul li {
        margin-bottom: 6px;
    }
    
    .footer-col ul li a {
        font-size: 11px;
        line-height: 1.6;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        margin-top: 15px;
    }
    
    .footer-bottom p {
        font-size: 10px;
    }
}

@media (min-width: 361px) and (max-width: 480px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px 10px;
        text-align: left;
    }
    
    .footer-col h4 {
        font-size: 11px;
        margin-bottom: 12px;
        padding-bottom: 6px;
        letter-spacing: 0.8px;
    }
    
    .footer-col h4::after {
        width: 30px;
        height: 1.5px;
    }
    
    .footer-col:hover h4::after {
        width: 40px;
    }
    
    .footer-col:first-child h4 {
        font-size: 12px;
    }
    
    .footer-col p {
        font-size: 9px;
        margin-bottom: 6px;
        line-height: 1.5;
        gap: 6px;
    }
    
    .footer-col:first-child p {
        font-size: 10px;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .footer-col p i {
        font-size: 8px;
        min-width: 12px;
    }
    
    .footer-col ul li {
        margin-bottom: 5px;
    }
    
    .footer-col ul li a {
        font-size: 9px;
        line-height: 1.5;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        padding-top: 15px;
        margin-top: 10px;
    }
    
    .footer-bottom::before {
        width: 60px;
    }
    
    .footer-bottom p {
        font-size: 9px;
    }
}

@media (max-width: 360px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px 6px;
        text-align: left;
    }
    
    .footer-col h4 {
        font-size: 10px;
        margin-bottom: 10px;
        padding-bottom: 5px;
        letter-spacing: 0.5px;
    }
    
    .footer-col h4::after {
        width: 25px;
        height: 1px;
    }
    
    .footer-col:hover h4::after {
        width: 35px;
    }
    
    .footer-col:first-child h4 {
        font-size: 11px;
    }
    
    .footer-col p {
        font-size: 8px;
        margin-bottom: 5px;
        line-height: 1.4;
        gap: 5px;
    }
    
    .footer-col:first-child p {
        font-size: 9px;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .footer-col p i {
        font-size: 7px;
        min-width: 10px;
    }
    
    .footer-col ul li {
        margin-bottom: 4px;
    }
    
    .footer-col ul li a {
        font-size: 8px;
        line-height: 1.4;
    }
    
    .footer {
        padding: 25px 0 12px;
    }
    
    .footer-content {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        padding-top: 12px;
        margin-top: 8px;
    }
    
    .footer-bottom::before {
        width: 50px;
    }
    
    .footer-bottom p {
        font-size: 8px;
    }
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 60px;
}

.footer-col:first-child h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-col:first-child p {
    font-size: 15px;
    line-height: 2;
    color: #e0e0e0;
    max-width: 300px;
}

.footer-col p {
    color: #d9d9d9;
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-col p i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 14px;
    min-width: 16px;
}

.footer-col p:first-of-type {
    margin-top: 5px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #d9d9d9;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
    line-height: 1.8;
    position: relative;
}

.footer-col ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-weight: bold;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 15px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-col p a {
    color: #d9d9d9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col p a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    margin-top: 20px;
    border-top: 1px solid rgba(225, 6, 0, 0.2);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(225, 6, 0, 0.5);
}

.footer-bottom p {
    color: #999999;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.7), 0 0 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 32px;
    color: #FFFFFF;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7); }
}

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

.animate-fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (min-width: 769px) and (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px 18px;
    }
    
    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }
    
    .footer-col:first-child h4 {
        font-size: 16px;
    }
    
    .footer-col p {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    .footer-col:first-child p {
        font-size: 13px;
    }
    
    .footer-col p i {
        font-size: 11px;
    }
    
    .footer-col ul li {
        margin-bottom: 8px;
    }
    
    .footer-col ul li a {
        font-size: 12px;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        margin-bottom: 35px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
}

@media (max-width: 968px) {
    .hero-buttons {
        margin-bottom: 130px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .hero-title {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 100px 30px;
        gap: 30px;
        transition: right 0.3s ease;
        overflow-y: auto;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.05);
        margin-top: 10px;
        padding: 10px 0;
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-item {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .dropdown-item:hover {
        padding-left: 25px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 120px 15px 100px;
        background-attachment: scroll;
    }
    
    /* Disable parallax transform on tablets for better performance */
    .hero,
    .about-hero,
    .profile-hero,
    .classes-hero,
    .class-hero,
    .instructor-hero {
        background-attachment: scroll;
    }
    
    .hero-buttons {
        margin-bottom: 140px;
        width: 100%;
        max-width: 100%;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator p {
        font-size: 10px;
    }
    
    .hero-content {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px 12px;
    }
    
    .footer-col:first-child p {
        max-width: 100%;
    }
    
    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 14px;
        padding-bottom: 7px;
    }
    
    .footer-col:first-child h4 {
        font-size: 14px;
    }
    
    .footer-col p {
        font-size: 10px;
        line-height: 1.6;
        margin-bottom: 7px;
    }
    
    .footer-col:first-child p {
        font-size: 11px;
        line-height: 1.7;
    }
    
    .footer-col p i {
        font-size: 9px;
    }
    
    .footer-col ul li {
        margin-bottom: 6px;
    }
    
    .footer-col ul li a {
        font-size: 10px;
        line-height: 1.6;
    }
    
    .footer {
        padding: 35px 0 18px;
    }
    
    .footer-content {
        margin-bottom: 25px;
    }
    
    .footer-bottom {
        padding-top: 18px;
        margin-top: 12px;
    }
    
    .footer-bottom p {
        font-size: 9px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .info-item {
        padding: 20px;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 100px 10px 90px;
        background-attachment: scroll;
    }
    
    /* Disable parallax on mobile for better performance */
    .hero,
    .about-hero,
    .profile-hero,
    .classes-hero,
    .class-hero,
    .instructor-hero {
        background-attachment: scroll !important;
        transform: none !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 150px;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
        box-sizing: border-box;
    }
    
    .scroll-indicator {
        bottom: 10px;
    }
    
    .scroll-indicator .mouse {
        width: 22px;
        height: 35px;
    }
    
    .logo-img {
        height: 55px;
        max-width: 250px;
    }
    
    .navbar.scrolled .logo-img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .info-item {
        padding: 15px;
        gap: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link i {
        font-size: 18px;
    }
    
    .feature-item {
        padding: 30px 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}

