/* ===== CSS RESET & VARIABLES ===== */
:root {
    /* Color Palette - Original Colors */
    --primary-color: #746bab;
    --secondary-color: #FF9800;
    --accent-color: #2196F3;
    --dark-color: #333;
    --light-color: #f9f9f9;
    --white-color: #fff;
    --text-color: #444;
    --menu-color: #746bab;
    --text-light: #fff;
    --btn-1-color: #fbbe4f;
    --btn-2-color: #fbbe4f;
    
    /* Brand Colors */
    --yellow: #fbbe4f;
    --light-blue: #76d0c0;
    --light-blue-2: #1ab28a;
    --violet: #746bab;
    --blue: #4a62d8;
    --primary-dark: #5d559c;
}

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

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 9999;
}

.loader::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 5px solid #ccc;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== BASE STYLES ===== */
body {
    font-family: 'Fredoka', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary,
.btn-secondary {
    background-color: var(--btn-1-color);
    color: white;
    border-color: var(--btn-2-color);
}

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

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-login {
    margin-right: 15px;
    color: var(--text-color);
}

.btn-mobile-cta {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.btn-breadcrumb {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

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

.btn-breadcrumb:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

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

.btn-breadcrumb.active {
    background: var(--btn-1-color);
    color: white;
    box-shadow: 0 4px 15px rgba(251, 190, 79, 0.3);
    border-color: var(--btn-1-color);
}

.btn-breadcrumb i {
    margin-right: 6px;
    font-size: 0.9rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    background-color: white;
    transition: background-color 0.3s ease;
}

.header.white-header {
    background-color: white;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: var(--menu-color);
    font-weight: 500;
    position: relative;
}

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

.main-nav ul li a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    margin-left: 15px;
}

.language-selector select {
    padding: 8px 15px;
    border-radius: 20px;
    border: 2px solid var(--btn-1-color);
    background-color: white;
    color: var(--text-color);
    font-family: 'Fredoka', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector select:hover {
    border-color: var(--primary-color);
    background-color: var(--light-color);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(116, 107, 171, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 150px 0 80px;
    background-color: var(--light-blue);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white-color);
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-media {
    flex: 1;
    position: relative;
}

.video-wrapper {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    border: 15px solid var(--yellow);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

#hero-video {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.video-wrapper:hover #hero-video {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-wrapper:hover .play-button {
    opacity: 1;
}

.play-button i {
    margin-left: 5px;
}

/* ===== SECTION COMMON STYLES ===== */
.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-color);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
}

/* ===== MISSION SECTION ===== */
.mission {
    padding: 80px 0;
    background-color: white;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.mission-card {
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    cursor: pointer;
}

.mission-card:hover {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-front {
    background-color: white;
}

.card-image {
    height: 70%;
    overflow: hidden;
}

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

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

.card-title {
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.card-title h3 {
    margin: 0;
    color: var(--dark-color);
}

.card-back {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.card-back p {
    margin: 0;
    font-size: 1.1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-color);
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.testimonial-author span {
    color: var(--primary-color);
    font-weight: 500;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-prev, .slider-next {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--secondary-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.cta .btn,
.cta button {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.cta .btn-primary {
  background-color: var(--yellow);
  color: var(--dark-color);
  border: none;
}
.cta .btn-primary:hover {
  background-color: #fcd770;
  color: var(--dark-color);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

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

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

/* ===== PAGE HEADER & BREADCRUMB ===== */
.page-header {
    padding: 120px 0 60px;
    background-color: var(--light-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue-2) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 5px;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-content {
    padding: 60px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* ===== CEO SECTION ===== */
.ceo-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.ceo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ceo-image {
    text-align: center;
    position: relative;
}

.ceo-photo {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.ceo-photo:hover {
    transform: translateY(-5px);
}

.ceo-message {
    padding: 40px;
    background: var(--light-color);
    border-radius: 20px;
    position: relative;
    border-left: 5px solid var(--btn-1-color);
}

.ceo-message::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.ceo-name {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    position: relative;
}

.ceo-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.ceo-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.ceo-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.ceo-mission {
    background: var(--light-color);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid var(--btn-1-color);
}

.ceo-mission h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.ceo-mission p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-color);
}

.ceo-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 20px;
    text-align: right;
    font-weight: bold;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-items: center;
}

.team-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    width: 100%;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 6px solid var(--light-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover .team-image {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

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

.team-info h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: var(--dark-color);
    position: relative;
}

.team-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.team-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.team-info p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* ===== CHARACTERS SECTION ===== */
.characters-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.character-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.character-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.character-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 6px solid var(--light-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.character-card:hover .character-image {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

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

.character-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--dark-color);
    position: relative;
}

.character-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.character-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Character-specific colors */
.character-card:nth-child(1) .character-image { border-color: var(--blue); }
.character-card:nth-child(2) .character-image { border-color: var(--yellow); }
.character-card:nth-child(3) .character-image { border-color: var(--light-blue); }
.character-card:nth-child(4) .character-image { border-color: var(--violet); }
.character-card:nth-child(5) .character-image { border-color: #e91e63; }
.character-card:nth-child(6) .character-image { border-color: #9c27b0; }

.character-card:hover:nth-child(1) .character-image {
    border-color: var(--blue);
    box-shadow: 0 8px 25px rgba(74, 98, 216, 0.3);
}

.character-card:hover:nth-child(2) .character-image {
    border-color: var(--yellow);
    box-shadow: 0 8px 25px rgba(251, 190, 79, 0.3);
}

.character-card:hover:nth-child(3) .character-image {
    border-color: var(--light-blue);
    box-shadow: 0 8px 25px rgba(118, 208, 192, 0.3);
}

.character-card:hover:nth-child(4) .character-image {
    border-color: var(--violet);
    box-shadow: 0 8px 25px rgba(116, 107, 171, 0.3);
}

.character-card:hover:nth-child(5) .character-image {
    border-color: #e91e63;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.character-card:hover:nth-child(6) .character-image {
    border-color: #9c27b0;
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.3);
}

/* ===== HISTORY TIMELINE ===== */
.history-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 55%;
}

.timeline-content {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
}

.timeline-year {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* ===== BLOG STYLES ===== */
.blog-content {
    padding: 80px 0;
}

.blog-main {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-post {
    margin-bottom: 60px;
}

.blog-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card.featured {
    display: block;
}

.blog-card.featured .blog-image {
    height: 400px;
}

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

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

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

.blog-content-inner {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--primary-color);
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content-inner h2,
.blog-content-inner h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.blog-content-inner h2 {
    font-size: 2rem;
}

.blog-content-inner p {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    align-self: flex-start;
    margin-top: auto;
}

.blog-section {
    margin-top: 60px;
}

.blog-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-filters .btn {
    margin: 5px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--light-color);
    border-radius: 15px;
}

.no-posts p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination .btn {
    margin: 0 5px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-controls label {
    font-weight: 500;
    color: var(--dark-color);
}

.sort-controls select {
    padding: 8px 15px;
    border: 2px solid var(--light-color);
    border-radius: 20px;
    background-color: white;
    color: var(--text-color);
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-controls select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-content {
    padding: 80px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-method-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
}

.contact-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-description {
    color: var(--text-color) !important;
    font-weight: normal !important;
    font-size: 1rem !important;
    margin-bottom: 20px !important;
}

/* Social Media Grid */
.social-media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.social-media-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-media-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-media-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

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

/* Social Media Brand Colors */
.social-media-link.facebook { background-color: #1877f2; }
.social-media-link.youtube { background-color: #ff0000; }
.social-media-link.linkedin { background-color: #0077b5; }
.social-media-link.instagram { 
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); 
}
.social-media-link.twitter { background-color: #000000; }
.social-media-link.wechat { background-color: #07c160; }
.social-media-link.tiktok { background-color: #000000; }

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.input-with-icon input,
.input-with-icon textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid var(--light-color);
    border-radius: 15px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-with-icon input:focus,
.input-with-icon textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(116, 107, 171, 0.1);
}

.input-with-icon textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== LOGIN PAGE STYLES ===== */
.login-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Default gradient background */
.login-section {
    background: linear-gradient(135deg, #76d0c0 0%, #1ab28a 100%);
}

/* When using background image */
.login-section.has-bg-image {
    background: none;
}

.login-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.login-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    width: 480px;
    min-height: 520px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Adjust login card appearance when using background image */
.login-section.has-bg-image .login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Rest of your existing login card styles remain the same... */
.login-header {
    text-align: center;
    margin-bottom: 40px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-header h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.login-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.input-with-icon {
    position: relative;
    height: 52px;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    z-index: 1;
}

.input-with-icon input {
    width: 100%;
    padding: 15px 45px 15px 50px;
    border: 2px solid var(--light-color);
    border-radius: 15px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 52px;
    box-sizing: border-box;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(116, 107, 171, 0.1);
}

.password-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    z-index: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle i {
    position: static;
    transform: none;
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.password-toggle:hover i {
    opacity: 1;
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    min-height: 40px;
    flex-wrap: nowrap;
    gap: 15px;
}

.checkbox-container {
        display: inline-block;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--light-color);
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.checkbox-container input:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-container input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-container span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.4;
}

        /* Mobile-specific form options layout */
        @media (max-width: 768px) {
            .form-options {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
                padding: 10px 0;
            }
            
            .checkbox-container {
                display: inline-block;
                align-items: center;
                justify-content: center;
                width: 100%;
                margin-bottom: 0;
                gap: 8px;
				
            }
            
            .checkbox-container .checkmark {
                margin-right: 0;
                flex-shrink: 0;
            }
            
            .checkbox-container .checkbox-label {
                display: inline-block;
                white-space: nowrap;
                font-size: 0.95rem;
            }
            
            .forgot-password {
                width: 100%;
                text-align: center;
                margin-left: 0;
                padding-top: 10px;
                border-top: 1px solid var(--light-color);
            }
            
            /* Mobile animations */
            .login-card {
                animation: mobileCardSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            }
            
            @keyframes mobileCardSlideIn {
                from {
                    opacity: 0;
                    transform: translateX(-10px) scale(0.98);
                }
                to {
                    opacity: 1;
                    transform: translateX(0) scale(1);
                }
            }
            
            .btn-login-submit:hover {
                transform: translateY(-1px);
                box-shadow: 0 5px 15px rgba(251, 190, 79, 0.3);
            }
        }
        
        /* Tablet responsive adjustments */
        @media (max-width: 768px) {
            .form-options {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
                padding: 10px 0;
            }
            
            .checkbox-container {
                justify-content: center;
                margin-bottom: 0;
            }
            
            .forgot-password {
                text-align: center;
                margin-left: 0;
                padding-top: 10px;
                border-top: 1px solid var(--light-color);
                width: 100%;
            }
        }

.forgot-password {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
    margin-left: auto;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    position: relative;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.login-illustration {
    text-align: center;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-container {
    position: relative;
    display: inline-block;
    max-height: 100%;
}

.illustration-container img {
    max-width: 700px;
    height: auto;
    max-height: 700px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Responsive adjustments - WIDER ON MOBILE */
@media (max-width: 1200px) {
    .login-card {
        width: 450px;
        min-height: 500px;
    }
    
    .login-illustration {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }
    
    .login-card {
        width: 450px;
        min-height: 500px;
    }
    
    .login-illustration {
        height: auto;
        min-height: 300px;
    }
    
    .illustration-container img {
        max-width: 350px;
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .login-card {
        width: 100%;
        max-width: 500px;
        min-height: 480px;
        padding: 40px 35px;
        margin: 0 auto;
    }
    
    .login-header h2 {
        font-size: 1.9rem;
    }
    
    .login-header {
        min-height: 70px;
    }
    
    .form-group {
        min-height: 65px;
    }
    
    .input-with-icon,
    .input-with-icon input,
    .btn-login-submit {
        height: 50px;
    }
    
    .input-with-icon input {
        padding: 15px 45px 15px 50px;
    }
    
    .form-options {
        min-height: 35px;
        gap: 10px;
    }
    
    .login-illustration {
        min-height: 250px;
    }
    
    .illustration-container img {
        max-width: 320px;
        max-height: 320px;
    }
}

@media (max-width: 576px) {
    .login-section {
        padding: 100px 0 60px;
    }
    
    .login-container {
        padding: 0 15px;
    }
    
    .login-card {
        width: 100%;
        max-width: none;
        min-height: 450px;
        padding: 35px 30px;
        border-radius: 20px;
        margin: 0;
    }
    
    .login-header h2 {
        font-size: 1.7rem;
    }
    
    .login-header p {
        font-size: 1.05rem;
    }
    
    .login-header {
        min-height: 65px;
        margin-bottom: 35px;
    }
    
    .form-group {
        min-height: 60px;
        margin-bottom: 25px;
    }
    
    .input-with-icon,
    .input-with-icon input,
    .btn-login-submit {
        height: 48px;
    }
    
    .input-with-icon input {
        padding: 14px 45px 14px 50px;
        font-size: 1rem;
    }
    
    .input-with-icon i {
        left: 18px;
        font-size: 1rem;
    }
    
    .password-toggle {
        right: 18px;
        width: 22px;
        height: 22px;
    }
    
    .password-toggle i {
        font-size: 0.95rem;
    }
    
    .form-options {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        min-height: 30px;
        margin-bottom: 30px;
        flex-wrap: nowrap;
    }
    
    .checkbox-container {
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    
    .forgot-password {
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .btn-login-submit {
        font-size: 1.05rem;
        height: 50px;
    }
    
    .login-illustration {
        min-height: 200px;
        display: none;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 90px 0 50px;
    }
    
    .login-container {
        padding: 0 10px;
    }
    
    .login-card {
        width: calc(100vw - 20px);
        padding: 30px 25px;
        border-radius: 18px;
    }
    
    .login-header h2 {
        font-size: 1.6rem;
    }
    
    .login-header p {
        font-size: 1rem;
    }
    
    .input-with-icon input {
        padding: 13px 45px 13px 48px;
    }
    
    .input-with-icon i {
        left: 16px;
    }
    
    .password-toggle {
        right: 16px;
    }
    
    .form-options {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .checkbox-container {
        font-size: 0.88rem;
    }
    
    .forgot-password {
        font-size: 0.88rem;
    }
    
    .btn-login-submit {
        height: 48px;
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .login-card {
        width: calc(100vw - 16px);
        padding: 28px 22px;
    }
    
    .login-header h2 {
        font-size: 1.5rem;
    }
    
    .form-options {
        gap: 10px;
    }
    
    .checkbox-container {
        font-size: 0.85rem;
    }
    
    .forgot-password {
        font-size: 0.85rem;
    }
    
    .btn-login-submit {
        height: 46px;
    }
}

/* ===== DASHBOARD STYLES ===== */
.dashboard-header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

.dashboard-sidebar {
    width: 280px;
    background: white;
    border-right: 1px solid var(--light-color);
    padding: 30px 0;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 20px;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 15px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 12px;
}

.nav-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.nav-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.nav-item.active {
    background-color: var(--primary-color);
    color: white;
}

.dashboard-main {
    flex: 1;
    padding: 40px;
    background-color: #f8fafc;
}

.dashboard-user {
    position: relative;
}

.user-dropdown {
    cursor: pointer;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.user-info:hover {
    background-color: var(--light-color);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 500;
    color: var(--dark-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
    gap: 10px;
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--light-color);
    margin: 5px 0;
}

.logout-btn {
    color: #e74c3c !important;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 40px;
}

.welcome-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--blue) 100%);
    color: white;
    padding: 40px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(116, 107, 171, 0.3);
}

.welcome-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.welcome-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.welcome-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.welcome-illustration img {
    max-width: 200px;
    height: auto;
}

/* Stats Section */
.stats-section {
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.stat-progress, .stat-status {
    font-size: 0.85rem;
    font-weight: 500;
}

.stat-status.paid {
    color: #27ae60;
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
}

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

.content-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-header h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 0;
}

.view-all {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}

.view-all:hover {
    text-decoration: underline;
}

/* Progress Bars */
.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-name {
    font-weight: 500;
    color: var(--dark-color);
}

.progress-percent {
    font-weight: 600;
    color: var(--primary-color);
}

.progress-bar {
    height: 8px;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Schedule */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    background-color: var(--light-color);
    transition: background-color 0.3s ease;
}

.schedule-item:hover {
    background-color: #e8f4fd;
}

.schedule-item.completed {
    opacity: 0.7;
}

.schedule-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.time {
    font-weight: 600;
    color: var(--dark-color);
}

.duration {
    font-size: 0.8rem;
    color: var(--text-color);
}

.schedule-details {
    flex: 1;
}

.schedule-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.schedule-details p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

.schedule-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: white;
}

.schedule-status.upcoming {
    color: #f39c12;
}

.schedule-status.completed {
    color: #27ae60;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.activity-item:hover {
    background-color: var(--light-color);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.activity-icon.completed {
    background-color: #27ae60;
}

.activity-icon.assignment {
    background-color: #3498db;
}

.activity-icon.badge {
    background-color: #f39c12;
}

.activity-icon.payment {
    background-color: #9b59b6;
}

.activity-content {
    flex: 1;
}

.activity-content p {
    margin: 0 0 5px 0;
    color: var(--dark-color);
}

.activity-time {
    font-size: 0.85rem;
    color: var(--text-color);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: var(--light-color);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

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

.quick-action-btn i {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.quick-action-btn span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===== MOBILE CTA ===== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    text-align: center;
}

.mobile-cta .btn-mobile-cta { 
    background: var(--yellow); 
    color: var(--dark-color); 
    border: none; 
}
.mobile-cta .btn-mobile-cta:hover { 
    background: #fcd770; 
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 80px 0;
    background-color: var(--light-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 550px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--blue));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(116, 107, 171, 0.3);
}

.pricing-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-color);
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* Enhanced Price Display */
.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.per-class-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.per-class-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(116, 107, 171, 0.2);
}

.per-class-text {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
}

.total-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
}

.total-text {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1;
}

.total-period {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.savings {
    color: #27ae60;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 8px;
}

.classes-count {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 15px;
    padding: 8px 15px;
    background: var(--light-color);
    border-radius: 15px;
    display: inline-block;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-color);
}

.pricing-features i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.pricing-features .fa-check {
    color: #27ae60;
}

.pricing-features .fa-times {
    color: #e74c3c;
}

.pricing-footer {
    margin-top: auto;
}

.btn-pricing {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-note p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-buttons {
        display: none;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: -50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-media {
        width: 100%;
    }
    
    .video-wrapper {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .ceo-container {
        gap: 40px;
    }
    
    .ceo-photo {
        height: 350px;
    }
    
    .ceo-message {
        padding: 30px;
    }
    
    .login-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dashboard-sidebar {
        position: fixed;
        left: -100%;
        top: 80px;
        height: calc(100vh - 80px);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .dashboard-sidebar.active {
        left: 0;
    }
    
    .dashboard-main {
        padding: 30px 20px;
    }
    
    .welcome-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .welcome-stats {
        justify-content: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    /* Mobile nav fix */
    .main-nav.active {
        display: flex !important;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }
    .main-nav.active ul {
        flex-direction: column;
        gap: 20px;
    }
    .main-nav.active ul li a {
        font-size: 1.4rem;
        color: var(--menu-color);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 250px;
    }
    
    .features, .mission, .testimonials, .cta {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
    }
    
    .timeline-content::before {
        left: 20px !important;
        right: auto !important;
    }
    
    .ceo-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ceo-photo {
        height: 300px;
        max-width: 300px;
    }
    
    .ceo-message::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ceo-name::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ceo-signature {
        text-align: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card.featured .blog-image {
        height: 250px;
    }
    
    .blog-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sort-controls {
        justify-content: center;
    }
    
    .blog-filters {
        justify-content: center;
    }
    
    .blog-content-inner h2 {
        font-size: 1.5rem;
    }
    
    .blog-content-inner h3 {
        font-size: 1.3rem;
    }
    
    .characters-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .character-image {
        width: 180px;
        height: 180px;
    }
    
    .character-card {
        padding: 30px 20px;
    }
    
    .breadcrumb {
        gap: 5px;
    }
    
    .breadcrumb-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .breadcrumb-separator {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .social-media-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method-card {
        padding: 30px 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .login-card {
        padding: 40px 30px;
    }
    
    .login-header h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .welcome-content h1 {
        font-size: 2rem;
    }
    
    .welcome-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .per-class-amount {
        font-size: 3rem;
    }
    
    /* Language selector mobile */
    .language-selector {
        position: fixed;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        border-radius: 25px;
        padding: 6px 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        z-index: 999;
    }
    .language-selector select {
        border: 2px solid var(--primary-color);
        background: #fff;
        color: var(--dark-color);
    }
    
    /* Hide desktop buttons on mobile */
    .desktop-buttons {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 250px;
    }
    
    .features-grid, .mission-cards {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .blog-filters .btn {
        margin: 2px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .pagination .btn {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .character-image {
        width: 150px;
        height: 150px;
    }
    
    .character-card h3 {
        font-size: 1.5rem;
    }
    
    .character-card p {
        font-size: 1rem;
    }
    
    .team-image {
        width: 180px;
        height: 180px;
    }
    
    .team-card {
        padding: 30px 20px;
    }
    
    .breadcrumb {
        flex-direction: column;
        gap: 10px;
    }
    
    .breadcrumb-separator {
        display: none;
    }
    
    .breadcrumb-link {
        width: 100%;
        justify-content: center;
    }
    
    .ceo-photo {
        height: 250px;
        max-width: 250px;
    }
    
    .ceo-message {
        padding: 25px 20px;
    }
    
    .ceo-name {
        font-size: 1.8rem;
    }
    
    .ceo-position {
        font-size: 1.1rem;
    }
    
    .ceo-quote {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 90px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-method-card {
        padding: 25px 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .login-card {
        padding: 30px 20px;
    }
    
    .login-header h2 {
        font-size: 1.6rem;
    }
    
    .illustration-container img {
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .welcome-card {
        padding: 30px 20px;
    }
    
    .welcome-content h1 {
        font-size: 1.6rem;
    }
    
    .content-card {
        padding: 25px 20px;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .schedule-time {
        min-width: auto;
    }
    
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .per-class-amount {
        font-size: 2.5rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
    }
}

/* ===== iOS AND MOBILE OPTIMIZATIONS ===== */
@supports (-webkit-touch-callout: none) {
    .page-header {
        padding: 110px 0 50px;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .ceo-photo {
        -webkit-mask-image: -webkit-radial-gradient(white, black);
    }
}

/* Safe area insets for iOS notch devices */
@supports (padding: max(0px)) {
    .header .container,
    .page-header .container,
    .ceo-container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .mobile-cta {
        padding-bottom: max(15px, env(safe-area-inset-bottom));
    }
}

/* Hide mobile CTA on desktop */
@media (min-width: 769px) {
    .mobile-cta {
        display: none;
    }
}

/* ===== MOBILE FAB BUTTONS ===== */
.mobile-fab-container {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.fab-login,
.language-fab {
    position: relative;
}

.fab-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--blue) 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1001;
}

.fab-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.fab-menu {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 120px;
}

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

.fab-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    border-radius: 20px;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.fab-option:last-child {
    margin-bottom: 0;
}

.fab-option:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.fab-option.active {
    background-color: var(--primary-color);
    color: white;
}

/* Login FAB specific styles */
.fab-login .fab-toggle {
    background: linear-gradient(135deg, var(--yellow) 0%, #f39c12 100%);
}

/* Language FAB specific styles */
.language-fab .fab-toggle {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue-2) 100%);
}

/* ===== ENROLLMENT PAGE STYLES ===== */
.enrollment-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #76d0c0 0%, #1ab28a 100%);
    min-height: 100vh;
}

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

.enrollment-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.enrollment-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--blue) 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.enrollment-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.enrollment-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.enrollment-progress {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 40px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step-number.active {
    background: var(--yellow);
    color: var(--dark-color);
}

.step-number.completed {
    background: white;
    color: var(--primary-color);
}

.step-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.enrollment-body {
    padding: 50px;
}

.enrollment-form {
    display: none;
}

.enrollment-form.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
    position: relative;
}

.form-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group .required::after {
    content: '*';
    color: #e74c3c;
    margin-left: 4px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

/* ===== ENROLLMENT FORM ENHANCEMENTS ===== */

/* Make input fields consistent color - only red when invalid */
.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid var(--light-color);
    border-radius: 15px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
    color: var(--text-color);
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(116, 107, 171, 0.1);
    background-color: white;
}

/* Input validation states */
.input-with-icon input:invalid:not(:focus):not(:placeholder-shown),
.input-with-icon select:invalid:not(:focus) {
    border-color: #746bab;
    background-color: #fffbe7;
}

.input-with-icon input:valid:not(:focus):not(:placeholder-shown),
.input-with-icon select:valid:not(:focus) {
    border-color: #746bab;
    background-color: #fffbe7;
}

.input-with-icon textarea {
    min-height: 120px;
    resize: vertical;
}

/* Schedule Selection */
.schedule-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.schedule-option {
    position: relative;
}

.schedule-option input {
    display: none;
}

.schedule-label {
    display: block;
    padding: 20px;
    background: var(--light-color);
    border: 2px solid transparent;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-option input:checked + .schedule-label {
    background: rgba(116, 107, 171, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.schedule-time {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.schedule-days {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.payment-method {
    position: relative;
}

.payment-method input {
    display: none;
}

.payment-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: var(--light-color);
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-method input:checked + .payment-label {
    background: rgba(116, 107, 171, 0.1);
    border-color: var(--primary-color);
}

.payment-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-name {
    font-weight: 600;
    color: var(--dark-color);
}

/* Summary Section */
.summary-section {
    background: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--text-color);
}

.summary-value {
    font-weight: 600;
    color: var(--dark-color);
}

.summary-total {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-color);
}

.btn-prev,
.btn-next {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
}

.btn-prev {
    background: var(--light-color);
    color: var(--text-color);
    border: 2px solid var(--light-color);
}

.btn-prev:hover {
    background: #e0e0e0;
    border-color: #e0e0e0;
}

.btn-submit {
    background: var(--yellow);
    color: var(--dark-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-submit:hover {
    background: #fcd770;
}

/* Success Message */
.enrollment-success {
    text-align: center;
    padding: 60px 40px;
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.5rem;
}

.enrollment-success h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.enrollment-success p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Checkbox styling */
.checkbox-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-container:hover {
    background-color: #e8f4fd;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-container label {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    flex: 1;
}

/* Disabled button styling */
.btn-disabled {
    background-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    border-color: #cccccc !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-disabled:hover {
    background-color: #cccccc !important;
    color: #666666 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Child profile preview */
.child-profile-preview {
    background: linear-gradient(135deg, var(--light-color) 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    border: 2px dashed var(--primary-color);
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Success modal enhancements */
.modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 20px;
    padding: 40px;
    border-radius: 25px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content .success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Success modal button focus state for keyboard navigation */
.modal-content .btn-primary:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(116, 107, 171, 0.3);
}

/* Form validation styles for radio groups */
.schedule-option,
.payment-method {
    transition: all 0.3s ease;
}

.schedule-option input:checked + .schedule-label,
.payment-method input:checked + .payment-label {
    border-color: var(--primary-color);
    background: rgba(116, 107, 171, 0.1);
}

/* File input styling */
.input-with-icon input[type="file"] {
    padding: 12px 20px 12px 50px;
    background-color: white;
}

.input-with-icon input[type="file"]::file-selector-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Fredoka', sans-serif;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.input-with-icon input[type="file"]::file-selector-button:hover {
    background: var(--blue);
}

/* Progress step enhancements */
.progress-step {
    position: relative;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    right: -40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.step-number {
    position: relative;
    z-index: 2;
}

/* Responsive improvements for enrollment form */
@media (max-width: 768px) {
    .enrollment-header {
        padding: 30px 20px;
    }
    
    .enrollment-header h1 {
        font-size: 2rem;
    }
    
    .enrollment-progress {
        gap: 20px;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .enrollment-body {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .schedule-options {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
    }
    
    .checkbox-container {
        padding: 12px;
    }
    
    .checkbox-container label {
        font-size: 0.9rem;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 15px;
    }
    
    .modal-content h3 {
        font-size: 1.5rem;
    }
    
    .modal-content p {
        font-size: 1rem;
    }
    
    .child-profile-preview {
        padding: 20px 15px;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .enrollment-section {
        padding: 100px 0 60px;
    }
    
    .enrollment-header {
        padding: 25px 15px;
    }
    
    .enrollment-header h1 {
        font-size: 1.8rem;
    }
    
    .enrollment-progress {
        flex-direction: column;
        gap: 15px;
    }
    
    .progress-step {
        flex-direction: row;
        gap: 15px;
    }
    
    .enrollment-body {
        padding: 25px 15px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .summary-section {
        padding: 20px;
    }
    
    .checkbox-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .checkbox-container input[type="checkbox"] {
        align-self: flex-start;
        margin-top: 2px;
    }
    
    .child-profile-preview {
        padding: 15px 10px;
    }
    
    .profile-avatar {
        width: 80px;
        height: 80px;
    }
}

/* Enrollment form step animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.enrollment-form.active.slide-in-right {
    animation: slideInRight 0.4s ease;
}

.enrollment-form.active.slide-in-left {
    animation: slideInLeft 0.4s ease;
}

/* Loading states */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Error states */
.input-error {
    border-color: #e74c3c !important;
    background-color: #fff5f5 !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Success states */
.input-success {
    border-color: #27ae60 !important;
    background-color: #f0fff4 !important;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert-error {
    background-color: #ffeaea;
    color: #d63031;
    border: 2px solid #fab1a0;
}

.alert-success {
    background-color: #e8f6f3;
    color: #00b894;
    border: 2px solid #55efc4;
}

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

.promo-notice {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 10px;
    border: 2px solid #ffd43b;
}

.valid-until {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    color: #e67700;
    margin-bottom: 5px;
}

.original-price {
    display: block;
    font-size: 1rem;
    color: #495057;
    text-decoration: line-through;
}

.promo-note {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.promo-note p {
    margin-bottom: 0;
    color: #495057;
}

/**PROMO RIBBON**/
.promo-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #dc3545;
    color: white;
    padding: 8px 35px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    transform: rotate(45deg);
    transform-origin: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
    line-height: 1.1;
    width: 120px;
}

.promo-ribbon::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    border-left: 10px solid #c82333;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-top: 10px solid #c82333;
}

.promo-ribbon::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid #c82333;
    border-bottom: 10px solid transparent;
    border-top: 10px solid #c82333;
}

.comparison-card {
    position: relative;
    overflow: hidden;
}

/* ===== PRICING PAGE STYLES ===== */

/* Pricing Hero Section */
.pricing-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue-2) 100%);
    text-align: center;
    color: white;
}

.pricing-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.pricing-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Single Class Section - Subtle */
.single-class-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.single-class-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.single-class-content h3 {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 10px;
    font-weight: 500;
}

.single-class-price {
    margin-bottom: 15px;
}

.single-class-price .price-amount {
    font-size: 2rem;
    color: #6c757d;
    font-weight: 600;
}

.single-class-price .price-text {
    font-size: 1rem;
    color: #6c757d;
    margin-left: 5px;
}

.single-class-content p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 1rem;
}

.single-class-content .btn-outline {
    border-color: #6c757d;
    color: #6c757d;
    padding: 10px 25px;
}

.single-class-content .btn-outline:hover {
    background-color: #6c757d;
    color: white;
}

/* Unified Pricing Section */
.unified-pricing {
    padding: 80px 0;
    background: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.pricing-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

.savings-highlight {
    text-align: center;
    margin-bottom: 30px;
}

.savings-badge-large {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.savings-badge-large i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.promo-notice {
    text-align: center;
    margin-bottom: 40px;
    padding: 15px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 10px;
    border: 2px solid #ffd43b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.valid-until {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    color: #e67700;
    margin-bottom: 5px;
}

.original-price {
    display: block;
    font-size: 1.1rem;
    color: #495057;
}

.prominent-original {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #dc3545 !important;
}

/* Pricing Rows */
.pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.centered-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

/* Enhanced Card Height Alignment */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 550px;
}

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

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-card.premium {
    border-color: #ff6b35;
}

.pricing-card.elite {
    border-color: #9c27b0;
}

/* Card Headers */
.pricing-card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.pricing-card.popular .pricing-card-header {
    border-bottom-color: var(--primary-color);
}

.pricing-card.premium .pricing-card-header {
    border-bottom-color: #ff6b35;
}

.pricing-card.elite .pricing-card-header {
    border-bottom-color: #9c27b0;
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Badges */
.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.premium-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.elite-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* Enhanced Price Display */
.price-display {
    text-align: center;
    margin-bottom: 15px;
}

.per-class-price {
    margin-bottom: 8px;
}

.per-class-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(116, 107, 171, 0.2);
}

.pricing-card.premium .per-class-amount {
    color: #ff6b35;
}

.pricing-card.elite .per-class-amount {
    color: #9c27b0;
}

.per-class-text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

.total-price {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.total-amount {
    font-weight: 600;
    color: var(--dark-color);
}

.classes-count {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.savings-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e8;
    color: #27ae60;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.savings-badge i {
    margin-right: 5px;
}

.pricing-card.premium .savings-badge {
    background: #ffe8e0;
    color: #ff6b35;
}

.pricing-card.elite .savings-badge {
    background: #f3e5f5;
    color: #9c27b0;
}

/* Features List */
.pricing-features {
    flex-grow: 1;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.feature-item i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.pricing-card.premium .feature-item i {
    color: #ff6b35;
}

.pricing-card.elite .feature-item i {
    color: #9c27b0;
}

/* Card Footer */
.pricing-card-footer {
    text-align: center;
    margin-top: auto;
}

.btn-plan {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.btn-popular:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-premium {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    border: none;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #e55a2b, #ff7b40);
    transform: translateY(-2px);
}

.btn-elite {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
    color: white;
    border: none;
}

.btn-elite:hover {
    background: linear-gradient(135deg, #8e24aa, #ab47bc);
    transform: translateY(-2px);
}

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

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

/* Package Note */
.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    margin-bottom: 0;
    color: #495057;
    font-size: 0.95rem;
}

/* FAQ Section */
.pricing-faq {
    padding: 80px 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(116, 107, 171, 0.05);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active {
    border: 2px solid var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-row {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .centered-row {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2.2rem;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }

    .savings-badge-large {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .promo-notice {
        margin-bottom: 30px;
    }
    
    .pricing-card {
        padding: 20px;
        min-height: auto;
    }
    
    .per-class-amount {
        font-size: 2.8rem;
    }
}

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

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .mobile-fab-container {
        display: flex;
    }
    
    .header-buttons {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .mobile-fab-container {
        bottom: 90px;
        right: 15px;
    }
    
    .fab-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .mobile-cta {
        padding: 12px 15px;
    }
}

/* Safe area support for iOS */
@supports (padding: max(0px)) {
    .mobile-fab-container {
        bottom: max(100px, env(safe-area-inset-bottom) + 80px);
        right: max(20px, env(safe-area-inset-right) + 10px);
    }
    
    .mobile-cta {
        padding-bottom: max(15px, env(safe-area-inset-bottom));
    }
}

/* ===== PRICING MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 1200px) {
    .pricing-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 900px;
    }
    
    .centered-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
    
    .pricing-card {
        min-height: 520px;
    }
}

@media (max-width: 992px) {
    .pricing-row {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 20px;
    }
    
    .centered-row {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .pricing-card {
        min-height: auto;
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .per-class-amount {
        font-size: 2.8rem;
    }
    
    .pricing-features {
        margin-bottom: 20px;
    }
    
    .feature-item {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 130px 0 60px;
    }
    
    .pricing-hero h1 {
        font-size: 2.2rem;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }

    .savings-badge-large {
        font-size: 1rem;
        padding: 10px 20px;
        flex-direction: column;
        gap: 8px;
    }

    .promo-notice {
        margin-bottom: 25px;
        padding: 12px 15px;
    }
    
    .valid-until {
        font-size: 1.1rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .prominent-original {
        font-size: 1.2rem !important;
    }
    
    .pricing-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .per-class-amount {
        font-size: 2.5rem;
    }
    
    .total-amount {
        font-size: 1.3rem;
    }
    
    .pricing-features {
        margin-bottom: 15px;
    }
    
    .feature-item {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .pricing-card-header {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .pricing-card h3 {
        font-size: 1.3rem;
    }
    
    .popular-badge,
    .premium-badge,
    .elite-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
    }
    
    .promo-ribbon {
        font-size: 0.65rem;
        padding: 6px 30px;
        width: 110px;
        right: -28px;
        top: 12px;
    }
}

@media (max-width: 576px) {
    .pricing-hero {
        padding: 120px 0 50px;
    }
    
    .pricing-hero h1 {
        font-size: 1.8rem;
    }
    
    .pricing-hero p {
        font-size: 1rem;
    }
    
    .pricing-header h2 {
        font-size: 1.6rem;
    }
    
    .pricing-header p {
        font-size: 1rem;
    }
    
    .savings-badge-large {
        font-size: 0.9rem;
        padding: 8px 15px;
        text-align: center;
    }
    
    .promo-notice {
        margin-bottom: 20px;
        padding: 10px 12px;
    }
    
    .valid-until {
        font-size: 1rem;
    }
    
    .original-price {
        font-size: 0.9rem;
    }
    
    .prominent-original {
        font-size: 1.1rem !important;
    }
    
    .pricing-row {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .pricing-card {
        padding: 18px 12px;
        margin: 0;
        border-radius: 12px;
    }
    
    .per-class-amount {
        font-size: 2.2rem;
    }
    
    .per-class-text {
        font-size: 1rem;
    }
    
    .total-price {
        font-size: 0.8rem;
    }
    
    .total-amount {
        font-size: 1.1rem;
    }
    
    .classes-count {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .savings-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .pricing-features {
        margin-bottom: 12px;
    }
    
    .feature-item {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
    
    .feature-item i {
        font-size: 0.7rem;
        margin-right: 8px;
    }
    
    .btn-plan {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .pricing-note {
        margin-top: 30px;
        padding: 15px;
    }
    
    .pricing-note p {
        font-size: 0.85rem;
    }
    
    /* Single class section mobile fixes */
    .single-class-section {
        padding: 30px 0;
    }
    
    .single-class-content h3 {
        font-size: 1.3rem;
    }
    
    .single-class-price .price-amount {
        font-size: 1.8rem;
    }
    
    .single-class-content p {
        font-size: 0.9rem;
    }
    
    .single-class-content .btn-outline {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .pricing-card {
        padding: 15px 10px;
    }
    
    .per-class-amount {
        font-size: 2rem;
    }
    
    .pricing-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-item {
        font-size: 0.7rem;
    }
    
    .promo-ribbon {
        font-size: 0.6rem;
        padding: 5px 25px;
        width: 100px;
        right: -25px;
        top: 10px;
    }
}

/* Fix for very small screens */
@media (max-width: 320px) {
    .pricing-card {
        padding: 12px 8px;
    }
    
    .per-class-amount {
        font-size: 1.8rem;
    }
    
    .feature-item {
        font-size: 0.65rem;
    }
}

/* Ensure proper spacing on all mobile devices */
.pricing-row {
    width: 100%;
}

.pricing-card {
    width: 100%;
    box-sizing: border-box;
}

/* Mobile margin fixes */
@media (max-width: 768px) {
    .unified-pricing {
        padding: 60px 0;
    }
    
    .pricing-faq {
        padding: 60px 0;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* iOS specific optimizations */
@supports (-webkit-touch-callout: none) {
    .pricing-card {
        -webkit-transform: translateZ(0);
    }
}

/* Safe area insets for notch devices */
@supports (padding: max(0px)) {
    .container {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
    
    @media (max-width: 768px) {
        .pricing-card {
            margin-left: max(5px, env(safe-area-inset-left) / 2);
            margin-right: max(5px, env(safe-area-inset-right) / 2);
        }
    }
}



