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

:root {
    --primary-color: #EC4899;
    --primary-dark: #BE185D;
    --primary-light: #F9A8D4;
    --secondary-color: #FCE7F3;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --border-color: #E5E7EB;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #EC4899;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #F9FAFB 0%, #E9D5FF 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-decoration {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    opacity: 0.1;
}

.decoration-circle {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: float 6s ease-in-out infinite;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    line-height: 1.8;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-items: center;
}

.card-left {
    justify-self: start;
    max-width: 95%;
}

.card-center {
    justify-self: center;
    max-width: 100%;
}

.card-right {
    justify-self: end;
    max-width: 95%;
}

.about-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

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

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

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

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Schedule Section */
.schedule {
    background-color: var(--bg-light);
}

/* Teacher Profile Carousel */
.teacher-profile-carousel {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    padding: 0 60px;
    overflow: hidden;
}

.teacher-profile-grid {
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.teacher-profile-card {
    background: linear-gradient(to bottom, #f7889b 60%, #f7889b 60%);
    border-radius: 24px;
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 calc((100% - 2rem) / 3);
    min-width: 0;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #EC4899;
    color: #EC4899;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-weight: bold;
    flex-shrink: 0;
    position: absolute;
    z-index: 20;
}

.carousel-arrow-left {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-arrow-right {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-arrow:hover {
    background: #EC4899;
    color: white;
    box-shadow: var(--shadow-xl);
}

.carousel-arrow-left:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-right:hover {
    transform: translateY(-50%) scale(1.1);
}

.profile-header {
    text-align: center;
    margin-bottom: 1rem;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

.profile-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.profile-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
}

.profile-text-section {
    text-align: center;
    margin-top: 1rem;
}

.profile-greeting {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.profile-box {
    background: white;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    width: 100%;
    min-width: 100px;
    max-width: 100%;
}

.profile-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #EC4899;
}

.profile-box-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
}

.schedule-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.schedule-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.schedule-day {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
    text-transform: uppercase;
}

.schedule-time {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.schedule-class {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.schedule-instructor {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.schedule-level {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.level-beginner {
    background-color: #DCFCE7;
    color: var(--success);
}

.level-intermediate {
    background-color: #FEF3C7;
    color: var(--warning);
}

.level-advanced {
    background-color: #FEE2E2;
    color: var(--danger);
}

/* Partners Logo Slider */
.partners-slider-container {
    overflow: hidden;
    position: relative;
    background: transparent;
    padding: 3rem 0;
    margin: 2rem 0 0 0;
    width: calc(300% - 100px);
    max-width: calc(100% - 100px);
}

.partners-slider {
    display: flex;
    gap: 3rem;
    align-items: center;
    width: auto; /* Slider genişliğini içerik kadar yapalım */
    animation: slideLeft 40s linear infinite !important;
    transform: translateX(0);
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.partner-logo-item:hover {
    transform: scale(1.1);
}

.partner-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: none;
    background: rgba(236, 72, 153, 0.15);
    padding: 15px;
    border-radius: 12px;
}

.partner-logo-item:hover .partner-logo {
    transform: translateY(-2px) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(228, 142, 237, 0.4));
    background: #EC4899;
}

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

/* Adjust animation speed to make it slower */
.partners-slider {
    animation: slideLeft 40s linear infinite !important;
}

/* Pause animation on hover */
.partners-slider-container:hover .partners-slider {
    animation-play-state: paused;
}

/* Pricing Section */
.pricing {
    background-color: var(--white);
}

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

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-card.featured {
    background-color: var(--white);
    color: var(--text-dark);
    border-color: var(--primary-color);
    border-width: 3px;
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
}

/* Discount Badge - Wavy Cloud Style */
.discount-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #f7889c, #f48a9e);
    padding: 0.7rem 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(247, 136, 156, 0.4);
    z-index: 999 !important;
    animation: discountEnter 0.5s ease-out, pulseDiscount 2s infinite 0.5s;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    line-height: 1;
    border-radius: 50%;
    border: 3px solid white;
    width: 100px;
    height: 100px;
    transform: rotate(15deg);
    padding-top: 1rem;
    text-align: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
}

@keyframes discountEnter {
    from {
        opacity: 0;
        transform: rotate(15deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(15deg) scale(1);
    }
}

.discount-badge .discount-label {
    color: #DC2626;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.discount-badge .discount-percentage {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

@keyframes pulseDiscount {
    0%, 100% {
        transform: rotate(15deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.05);
    }
}

.pricing-card.has-discount {
    border: 2px solid #f7889c;
}

.pricing-card.has-discount:hover {
    border-color: #f48a9e;
    box-shadow: 0 8px 24px rgba(247, 136, 156, 0.3);
}

/* User Panel Pricing Cards */
.pricing-card-user {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card-user:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-card-user.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.pricing-card-user.has-discount {
    border: 2px solid #f7889c !important;
}

.pricing-card-user.has-discount:hover {
    border-color: #f48a9e !important;
    box-shadow: 0 8px 24px rgba(247, 136, 156, 0.3);
}

/* Price with discount */
.price-original {
    text-align: center;
    margin-bottom: 0.25rem;
}

.price-discounted {
    text-align: center;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--warning);
    color: var(--white);
    padding: 0.375rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-description {
    color: var(--text-dark);
}

.pricing-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
}

.price-period {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.pricing-card.featured .price-period {
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

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

.info-card {
    background-color: var(--white);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-group select {
    background-color: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.modal-header h2 {
    margin: 0;
    color: #374151;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #F3F4F6;
    color: #374151;
}

.modal-form {
    padding: 0;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1.5rem 2rem;
    border-top: 1px solid #E5E7EB;
}

.modal-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-actions .btn-secondary {
    background: #F3F4F6;
    color: #374151;
    border: 1px solid #D1D5DB;
}

.modal-actions .btn-secondary:hover {
    background: #E5E7EB;
}

.modal-actions .btn-primary {
    background: #6B46C1;
    color: white;
    border: 1px solid #6B46C1;
}

.modal-actions .btn-primary:hover {
    background: #5B21B6;
    border-color: #5B21B6;
}

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

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

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.75rem;
    }

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        padding: 1rem 0;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 5rem 0 2rem;
        min-height: auto;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
        padding: 0 0.5rem;
    }
    
    .hero-title .break-mobile {
        display: inline-block;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
        word-wrap: break-word;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle .break-mobile {
        display: inline-block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

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

    .section-description {
        font-size: 0.95rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-left, .card-center, .card-right {
        max-width: 100%;
        justify-self: stretch;
    }

    .about-card {
        padding: 1.5rem;
    }

    /* Teacher Profile Carousel Responsive */
    .teacher-profile-carousel {
        padding: 0 50px;
    }

    .teacher-profile-grid {
        gap: 1rem;
    }

    .teacher-profile-card {
        flex: 0 0 calc(100% - 0.5rem);
        padding: 1.5rem 1rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .carousel-arrow-left {
        left: 5px;
    }
    
    .carousel-arrow-right {
        right: 5px;
    }

    .profile-name {
        font-size: 1.25rem;
    }

    .profile-title {
        font-size: 0.85rem;
    }

    .profile-image-wrapper {
        width: 120px;
        height: 120px;
    }

    .profile-text-section {
        margin-top: 1rem;
    }

    .profile-greeting {
        font-size: 1rem;
    }

    .profile-box {
        padding: 0.5rem 0.75rem;
    }

    .profile-box-text {
        font-size: 0.85rem;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

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

    .contact-form {
        padding: 1.5rem;
    }

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

    .partners-slider-container {
        padding: 2rem 0;
    }

    .partner-logo {
        width: 80px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.125rem;
    }

    .logo img {
        width: 32px !important;
        height: 32px !important;
    }

    .hero {
        padding: 4.5rem 0 1.5rem;
    }

    .hero-content {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 1.25rem;
        line-height: 1.25;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        padding: 0 0.25rem;
    }
    
    .hero-title .break-mobile {
        display: block;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        line-height: 1.35;
        margin-bottom: 1rem;
        word-wrap: break-word;
        padding: 0 0.25rem;
    }
    
    .hero-subtitle .break-mobile {
        display: block;
    }

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

    .section-description {
        font-size: 0.9rem;
    }

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

    .about-card {
        padding: 1.25rem;
    }

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

    /* Teacher Profile Carousel Mobile */
    .teacher-profile-carousel {
        padding: 0 45px;
    }

    .teacher-profile-grid {
        gap: 0.75rem;
    }

    .teacher-profile-card {
        flex: 0 0 calc(100% - 0.375rem);
        padding: 1.25rem 0.75rem;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carousel-arrow-left {
        left: 0;
    }
    
    .carousel-arrow-right {
        right: 0;
    }

    .profile-name {
        font-size: 1.125rem;
    }

    .profile-title {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .profile-header {
        margin-bottom: 1rem;
    }

    .profile-image-wrapper {
        width: 100px;
        height: 100px;
    }

    .profile-text-section {
        margin-top: 0.75rem;
    }

    .profile-greeting {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .profile-box {
        padding: 0.5rem 0.625rem;
    }

    .profile-box-text {
        font-size: 0.8rem;
    }

    .schedule-filter {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

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

    .contact-form {
        padding: 1.25rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .partners-slider {
        gap: 1.5rem;
    }

    .partner-logo {
        width: 70px;
        padding: 8px;
    }

    .modal-content {
        max-width: 95%;
        margin: 10px;
    }

    .modal-header {
        padding: 1rem 1.25rem;
    }

    .modal-body {
        padding: 1.25rem;
    }
}

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

.hero-content,
.about-card,
.schedule-card,
.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* Discount Counter Styles */
.discount-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f7889c, #f48a9e, #f3d8d4);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(247, 136, 156, 0.3);
    z-index: 1000;
    animation: discountPulse 2s infinite;
    max-width: 400px;
    width: 90%;
}

.discount-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.discount-icon {
    font-size: 1.5rem;
    animation: discountFire 1s infinite alternate;
}

.discount-text {
    flex: 1;
}

.discount-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.discount-info {
    font-size: 0.9rem;
    opacity: 0.9;
}

.discount-separator {
    margin: 0 0.5rem;
}

.discount-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.discount-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes discountPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes discountFire {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Floating Social Media Buttons */
.floating-social {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

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

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

.floating-social-btn svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

/* Individual Platform Colors and Animations */
.floating-social-btn.instagram {
    background: #000000;
}

.floating-social-btn.instagram:hover {
    transform: translateX(10px) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-social-btn.instagram:hover svg {
    transform: rotate(360deg) scale(1.1);
}

.floating-social-btn.whatsapp {
    background: #000000;
}

.floating-social-btn.whatsapp:hover {
    transform: translateX(10px) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-social-btn.whatsapp:hover svg {
    transform: rotate(360deg) scale(1.1);
}

.floating-social-btn.tiktok {
    background: #000000;
}

.floating-social-btn.tiktok:hover {
    transform: translateX(10px) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-social-btn.tiktok:hover svg {
    transform: rotate(360deg) scale(1.1);
}

/* Tooltip */
.floating-social-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 80px;
    background: rgba(31, 41, 55, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateX(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-social-btn::before {
    z-index: 1;
}

.floating-social-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.floating-social-btn:hover {
    z-index: 10000;
}

/* Pulsing Animation */
@keyframes socialPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
    }
}

.floating-social-btn:nth-child(1) {
    animation: socialPulse 3s ease-in-out infinite;
    animation-delay: 0s;
}

.floating-social-btn:nth-child(2) {
    animation: socialPulse 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.floating-social-btn:nth-child(3) {
    animation: socialPulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-social {
        left: 15px;
        gap: 12px;
    }

    .floating-social-btn {
        width: 50px;
        height: 50px;
    }

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

    .floating-social-btn::after {
        display: none;
    }

    .floating-social-btn:hover {
        transform: translateX(5px) scale(1.05);
    }
}

@media (max-width: 480px) {
    .floating-social {
        left: 10px;
        gap: 10px;
    }

    .floating-social-btn {
        width: 45px;
        height: 45px;
    }

    .floating-social-btn svg {
        width: 20px;
        height: 20px;
    }
}

