/* ========== ABOUT PAGE STYLES ========== */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #000080 0%, #0000b3 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.8rem;
    margin: 0 10px;
    opacity: 0.7;
}

/* About Intro */
.about-intro {
    padding: 60px 0;
}

.intro-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.intro-image {
    flex: 1 1 400px;
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,128,0.15);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #000080;
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,128,0.3);
    border: 4px solid #ffd700;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Video Tour Button */
.video-tour-btn {
    position: absolute;
    bottom: 150px;
    left: 20px;
    background: #ffd700;
    color: #000080;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid white;
    z-index: 10;
}

.video-tour-btn i {
    width: 30px;
    height: 30px;
    background: #000080;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.video-tour-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.intro-content {
    flex: 1 1 500px;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.intro-content h2 span {
    color: #000080;
    position: relative;
    display: inline-block;
}

.intro-content h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000080;
    border-radius: 2px;
}

.intro-content h3 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.intro-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.intro-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-features .feature i {
    color: #000080;
    font-size: 1.2rem;
}

.intro-features .feature span {
    color: #555;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000080;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #000080;
}

.btn-primary:hover {
    background: white;
    color: #000080;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,128,0.2);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,128,0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,128,0.15);
}

.stat-card i {
    font-size: 2.5rem;
    color: #000080;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.stat-card p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 50px;
}

.section-title span {
    color: #000080;
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, #000080, #ffd700, #000080);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ffd700;
    border: 4px solid #000080;
    border-radius: 50%;
    top: 20px;
    right: -10px;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-year {
    position: absolute;
    top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000080;
    background: white;
    padding: 5px 15px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,128,0.1);
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -100px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -100px;
}

.timeline-content {
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,128,0.1);
    border: 1px solid rgba(0,0,128,0.1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Mission Vision */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.mv-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.mission-box, .vision-box {
    flex: 1 1 300px;
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,128,0.1);
    border: 1px solid rgba(0,0,128,0.1);
    transition: all 0.3s ease;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,128,0.15);
}

.mv-icon {
    width: 90px;
    height: 90px;
    background: #000080;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(0,0,128,0.2);
    transition: all 0.3s ease;
}

.mission-box:hover .mv-icon, .vision-box:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
    background: #ffd700;
    color: #000080;
}

.mission-box h3, .vision-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.mission-box p, .vision-box p {
    color: #666;
    line-height: 1.8;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background: #ffffff;
}

.founder-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.founder-image {
    flex: 1 1 350px;
    text-align: center;
}

.founder-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,128,0.2);
    border: 5px solid #ffd700;
}

.founder-message {
    flex: 1 1 500px;
}

.founder-message h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.founder-message h2 span {
    color: #000080;
}

.quote-icon {
    color: #000080;
    font-size: 2.5rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.message {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.founder-name {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(0,0,128,0.1);
}

.founder-name h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.founder-name p {
    color: #666;
}

/* Why Choose Enhanced */
.why-choose-enhanced {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.features-enhanced-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-enhanced {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,128,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,128,0.05);
}

.feature-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,128,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #000080;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-enhanced:hover .feature-icon {
    transform: scale(1.1);
    background: #ffd700;
    color: #000080;
}

.feature-enhanced h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.feature-enhanced p {
    color: #666;
    line-height: 1.6;
}

/* Trainers Carousel */
.trainers-showcase {
    padding: 80px 0;
    background: #ffffff;
}

.trainers-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.trainers-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.trainers-carousel::-webkit-scrollbar {
    display: none;
}

.trainer-nav-btn {
    width: 45px;
    height: 45px;
    background: #000080;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,128,0.3);
    flex-shrink: 0;
}

.trainer-nav-btn:hover {
    background: #ffd700;
    color: #000080;
    transform: scale(1.1);
}

.trainer-card {
    flex: 0 0 260px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,128,0.1);
    transition: all 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,128,0.2);
}

.trainer-image {
    height: 220px;
    overflow: hidden;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.1);
}

.trainer-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 18px 0 5px;
}

.trainer-title {
    color: #000080;
    font-weight: 600;
    margin-bottom: 5px;
}

.trainer-exp {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.trainer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 20px;
}

.trainer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #f0f0ff;
    color: #000080;
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.trainer-social a:hover {
    background: #000080;
    color: #ffd700;
    transform: translateY(-3px);
}

.trainer-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.trainer-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trainer-dots .dot.active {
    background: #000080;
    transform: scale(1.2);
}

.trainer-dots .dot:hover {
    background: #ffd700;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.partners-slider {
    overflow: hidden;
    padding: 20px 0;
}

.partner-track {
    display: flex;
    gap: 40px;
    animation: scrollPartners 25s linear infinite;
    width: max-content;
}

@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-track:hover {
    animation-play-state: paused;
}

.partner-item {
    flex: 0 0 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,128,0.08);
    overflow: hidden;
    border: 1px solid rgba(0,0,128,0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9ff;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #000080;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafaff;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding: 20px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Branch Section */
.branch-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.branch-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.branch-card {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0,0,128,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,128,0.1);
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #000080, #ffd700, #000080);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,128,0.2);
}

.branch-icon {
    width: 80px;
    height: 80px;
    background: #000080;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    border: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.branch-card:hover .branch-icon {
    transform: scale(1.1) rotate(360deg);
    background: #ffd700;
    color: #000080;
}

.branch-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.branch-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.branch-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    background: #f8f9ff;
    padding: 15px;
    border-radius: 15px;
}

.branch-address i {
    color: #000080;
    font-size: 1.2rem;
    margin-top: 3px;
}

.branch-address p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.branch-details {
    margin-bottom: 20px;
}

.branch-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,128,0.1);
}

.branch-detail:last-child {
    border-bottom: none;
}

.branch-detail i {
    color: #ffd700;
    font-size: 1.1rem;
    width: 25px;
}

.branch-detail a,
.branch-detail span {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
}

.branch-detail a:hover {
    color: #000080;
    text-decoration: underline;
}

.branch-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.branch-feature {
    background: #f0f0ff;
    color: #000080;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.branch-feature i {
    color: #ffd700;
    font-size: 0.8rem;
}

.branch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000080;
    color: white;
    padding: 12px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #000080;
    width: 100%;
}

.branch-btn:hover {
    background: white;
    color: #000080;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,128,0.2);
}

.branch-btn i {
    transition: transform 0.3s ease;
}

.branch-btn:hover i {
    transform: translateX(5px);
    color: #ffd700;
}

/* CTA Enhanced */
.cta-enhanced {
    padding: 100px 0;
    background: linear-gradient(135deg, #000080 0%, #0000b3 100%);
    color: white;
}

.cta-enhanced-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-enhanced-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-enhanced-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: white;
    color: #000080;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid white;
    display: inline-block;
}

.cta-btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid white;
    display: inline-block;
}

.cta-btn-secondary:hover {
    background: white;
    color: #000080;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    animation: slideIn 0.3s ease;
}

.close-modal {
    position: absolute;
    right: -30px;
    top: -30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #ffd700;
    transform: scale(1.1);
}

#videoFrame {
    border-radius: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-enhanced-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-enhanced-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::after {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 30px !important;
        right: auto !important;
    }
    
    .timeline-year {
        position: relative;
        left: 0 !important;
        right: auto !important;
        top: 0;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .branch-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .intro-wrapper {
        flex-direction: column;
    }
    
    .experience-badge {
        right: 10px;
        bottom: 10px;
        width: 100px;
        height: 100px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
    
    .features-enhanced-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-message h2 {
        font-size: 2rem;
    }
    
    .cta-enhanced-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary, .cta-btn-secondary {
        width: 80%;
        text-align: center;
    }
    
    .video-tour-btn {
        bottom: 120px;
        left: 10px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 30px auto;
    }
    
    .close-modal {
        right: 10px;
        top: -40px;
        font-size: 2rem;
    }
    
    #videoFrame {
        height: 250px;
    }
    
    .trainer-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .trainer-card {
        flex: 0 0 240px;
    }
    
    .trainer-image {
        height: 200px;
    }
    
    .branch-card {
        padding: 30px 20px;
    }
    
    .branch-card h3 {
        font-size: 1.5rem;
    }
    
    .branch-address {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .branch-address i {
        margin: 0 auto;
    }
    
    .branch-detail {
        justify-content: center;
    }
    
    .branch-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image img {
        height: 250px;
        object-fit: cover;
    }
    
    .video-tour-btn {
        bottom: 100px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .trainer-card {
        flex: 0 0 220px;
    }
    
    .trainer-image {
        height: 180px;
    }
    
    .branch-card {
        padding: 25px 15px;
    }
    
    .branch-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .branch-card h3 {
        font-size: 1.3rem;
    }
    
    .branch-address p {
        font-size: 0.9rem;
    }
    
    .branch-detail a,
    .branch-detail span {
        font-size: 0.9rem;
    }
    
    .branch-feature {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    .cta-enhanced-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-enhanced-content p {
        font-size: 1rem;
    }
    
    .modal-content {
        margin: 20px auto;
    }
    
    #videoFrame {
        height: 200px;
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    .trainer-card:hover,
    .feature-enhanced:hover,
    .stat-card:hover {
        transform: none;
    }
    
    .branch-btn:active {
        transform: scale(0.98);
    }
}