/* ============================================================
   月亮琴室 Moon Piano Studio - 共用 CSS
   ============================================================ */

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
    --primary-color: #fdf0db;
    --secondary-color: #f5d9a8;
    --accent-color: #d4a855;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --success: #28a745;
    --info: #17a2b8;
    --danger: #e74c3c;
    --shadow-sm: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes expandDown {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 500px; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
    to { opacity: 1; transform: rotate(0) scale(1); }
}

/* Animation utility classes */
.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.8s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.8s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.8s ease forwards; }

/* Animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================================
   Scroll Animation
   ============================================================ */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================================
   Container
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* ============================================================
   Header
   ============================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ============================================================
   Desktop Navigation
   ============================================================ */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

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

/* ============================================================
   Hamburger Button
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background: var(--accent-color);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background: var(--accent-color);
}

/* ============================================================
   Mobile Menu
   ============================================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
    z-index: 999;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 100px 40px 40px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.mobile-menu.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active ul li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active ul li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active ul li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active ul li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active ul li:nth-child(6) { transition-delay: 0.6s; }

.mobile-menu a {
    display: block;
    padding: 15px 0;
    font-size: 1.3rem;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.mobile-menu .social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.mobile-menu .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
    padding: 0;
    text-decoration: none;
}

.mobile-menu .social-links a:hover {
    background: var(--text-dark);
    padding-left: 0;
}

/* ============================================================
   Hero Carousel
   ============================================================ */
.hero-carousel {
    margin-top: 80px;
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 240, 219, 0.9) 0%, rgba(255,255,255,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content {
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.carousel-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.carousel-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.carousel-content .btn {
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
}

.carousel-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--accent-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }

/* ============================================================
   Page Banner (for inner pages)
   ============================================================ */
.page-banner {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    color: var(--text-dark);
}

.page-banner .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    position: relative;
}

.page-banner .breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner .breadcrumb a:hover {
    color: var(--accent-color);
}

.page-banner .breadcrumb span {
    color: var(--accent-color);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1;
}

.btn:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 85, 0.3);
}

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

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--white);
}

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

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

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

.btn-outline-white:hover {
    background: var(--white);
    color: var(--accent-color);
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: transparent;
    color: #25D366;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 50px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Loading state */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================================
   Sections
   ============================================================ */
section {
    padding: 80px 20px;
}

.section-light {
    background: var(--white);
}

.section-colored {
    background: var(--primary-color);
}

/* ============================================================
   Section Header
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* ============================================================
   About Grid
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content h3,
.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content p,
.about-text p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ============================================================
   Services Grid + Service Card
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card:hover .service-icon {
    background: var(--accent-color);
    color: var(--white);
    animation: pulse 0.6s ease;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

/* ============================================================
   Features Grid
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Feature Cards (booking page style) */
.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

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

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

.feature-card:hover .feature-icon {
    background: var(--accent-color);
    color: var(--white);
    animation: pulse 0.6s ease;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
   Contact Grid + Form
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--accent-color);
    color: var(--white);
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

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

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Map */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* ============================================================
   Form Styles
   ============================================================ */
.form-group {
    margin-bottom: 20px;
}

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

.form-group label .required {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 168, 85, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Form feedback */
.form-success,
.form-error {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: none;
}

.form-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

/* FAQ Search */
.faq-search {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 5px 30px rgba(212, 168, 85, 0.2);
}

.faq-search button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-search button:hover {
    background: var(--text-dark);
}

/* ============================================================
   Mission & Vision Cards
   ============================================================ */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.mv-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.mv-card:hover .mv-icon {
    background: var(--accent-color);
    color: var(--white);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

/* ============================================================
   Timeline
   ============================================================ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

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

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

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

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 0;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--accent-color);
}

.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.timeline-year {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
   Team Grid
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

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

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 5px solid var(--primary-color);
    transition: var(--transition);
}

.team-card:hover .team-avatar { border-color: var(--accent-color); }

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

.team-card h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-card .role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
   Values Grid
   ============================================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================================
   Course Cards
   ============================================================ */
.course-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-btn {
    padding: 12px 30px;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--accent-color);
    color: var(--white);
}

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

.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.course-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6c078 100%);
    padding: 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.course-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.course-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
}

.course-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    position: relative;
}

.course-header .subtitle {
    opacity: 0.9;
    font-size: 0.95rem;
    position: relative;
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.course-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.course-features {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
}

.course-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px dashed #eee;
    color: var(--text-dark);
}

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

.course-features i { color: var(--accent-color); font-size: 1.1rem; }

.course-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--primary-color);
}

.price-info .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-info .unit {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Level Cards */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.level-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.level-card:hover::before { transform: scaleX(1); }

.level-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    transition: var(--transition);
}

.level-card:hover .level-number {
    background: var(--accent-color);
    color: var(--white);
}

.level-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.level-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

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

.pricing-card.featured::before {
    content: '最受歡迎';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

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

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

.pricing-card .duration {
    color: var(--text-light);
    margin-bottom: 25px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
    line-height: 1;
}

.pricing-card .price-unit {
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #eee;
    color: var(--text-dark);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features i { color: var(--accent-color); }

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6c078 100%);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   FAQ Styles
   ============================================================ */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.faq-category-btn {
    padding: 12px 30px;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--accent-color);
    color: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.sidebar-card h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.sidebar-card h4 i { color: var(--accent-color); }

.sidebar-nav { list-style: none; }
.sidebar-nav li { margin-bottom: 5px; }

.sidebar-nav a {
    display: block;
    padding: 12px 15px;
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.95rem;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--primary-color);
    color: var(--accent-color);
    padding-left: 20px;
}

.contact-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6c078 100%);
    color: var(--white);
    text-align: center;
}

.contact-card h4 { color: var(--white); justify-content: center; }
.contact-card p { margin-bottom: 20px; opacity: 0.9; }

.contact-card .btn {
    background: var(--white);
    color: var(--accent-color);
    border-color: var(--white);
    width: 100%;
    text-align: center;
}

.contact-card .btn:hover {
    background: transparent;
    color: var(--white);
}

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

.faq-section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.faq-section-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-section-title h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.faq-item.active { box-shadow: 0 15px 50px rgba(0,0,0,0.12); }

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover { background: var(--primary-color); }
.faq-item.active .faq-question { background: var(--accent-color); color: var(--white); }

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 500;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer-content p { margin-bottom: 15px; }
.faq-answer-content p:last-child { margin-bottom: 0; }
.faq-answer-content ul { margin: 15px 0; padding-left: 20px; list-style: disc; }
.faq-answer-content li { margin-bottom: 8px; }
.faq-answer-content a { color: var(--accent-color); font-weight: 500; }
.faq-answer-content a:hover { text-decoration: underline; }

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.quick-link-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    color: inherit;
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.quick-link-card:hover .quick-link-icon {
    background: var(--accent-color);
    color: var(--white);
}

.quick-link-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.quick-link-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ============================================================
   Room Cards (Booking)
   ============================================================ */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.room-card.featured { border: 3px solid var(--accent-color); }

.room-card.featured::before {
    content: '熱門';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
}

.room-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.room-content { padding: 30px; }
.room-content h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-dark); }
.room-content .room-type { color: var(--accent-color); font-weight: 500; margin-bottom: 15px; }

.room-features { list-style: none; margin-bottom: 20px; }

.room-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #eee;
}

.room-features li:last-child { border-bottom: none; }
.room-features i { color: var(--accent-color); width: 20px; }

.room-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

.room-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.room-price .unit { color: var(--text-light); }

/* Pricing Table */
.pricing-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.pricing-table table { width: 100%; border-collapse: collapse; }

.pricing-table th,
.pricing-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
}

.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--primary-color); }
.pricing-table .highlight { background: var(--primary-color); font-weight: 600; }

/* Booking Form */
.booking-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.booking-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-list { list-style: none; }

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.info-list li:last-child { border-bottom: none; }

.info-list .icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-list h4 { margin-bottom: 5px; color: var(--text-dark); }
.info-list p { margin: 0; font-size: 0.95rem; color: var(--text-light); }

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.booking-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-dark);
}

/* Hours */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hours-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.hours-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.hours-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.hours-card h4 { margin-bottom: 5px; color: var(--text-dark); }
.hours-card p { color: var(--text-light); margin: 0; }

/* Notice Box */
.notice-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff9ed 100%);
    border-left: 4px solid var(--accent-color);
    padding: 25px 30px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 30px;
}

.notice-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.notice-box ul { list-style: none; }

.notice-box li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.notice-box li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    flex-shrink: 0;
}

/* ============================================================
   Blog Styles
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-thumbnail {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-thumbnail img { transform: scale(1.08); }

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-meta i { color: var(--accent-color); margin-right: 4px; }

.blog-content h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.5;
    color: var(--text-dark);
}

.blog-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover { color: var(--accent-color); }

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.blog-read-more:hover { gap: 10px; }

/* Blog Post Content */
.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    color: var(--text-dark);
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.post-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.post-content ul,
.post-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }

.post-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.post-content img {
    width: 100%;
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.post-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding: 15px 20px;
    margin: 20px 0;
    background: var(--primary-color);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================================
   Approach Cards
   ============================================================ */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.approach-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

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

.approach-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.approach-card:hover .approach-icon { animation: pulse 0.6s ease; }
.approach-card h4 { font-size: 1.2rem; margin-bottom: 15px; color: var(--text-dark); }
.approach-card p { color: var(--text-light); line-height: 1.7; }

/* Exam Grid */
.exam-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.exam-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.exam-list { list-style: none; }

.exam-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.exam-list li:last-child { border-bottom: none; }

.exam-list .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.exam-list h4 { margin-bottom: 5px; color: var(--text-dark); }
.exam-list p { margin: 0; font-size: 0.95rem; color: var(--text-light); }

.exam-image { position: relative; }

.exam-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.exam-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    left: 20px;
    bottom: -20px;
    border: 3px solid var(--accent-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-links li:not(:has(a)) {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
    color: var(--white);
    animation: none;
}

/* ============================================================
   Misc utility
   ============================================================ */
.text-center { text-align: center; }
.text-accent { color: var(--accent-color); }
.text-light-color { color: var(--text-light); }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* CTA buttons row */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   Responsive Breakpoints — 992px (Tablet)
   ============================================================ */
@media (max-width: 992px) {
    .nav-menu { display: none; }
    .hamburger { display: flex; }

    /* Grids → 1 column or 2 column */
    .about-grid,
    .about-intro,
    .contact-grid,
    .mission-vision,
    .exam-grid,
    .booking-section {
        grid-template-columns: 1fr;
    }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .courses-grid { grid-template-columns: 1fr; }
    .levels-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-10px); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-links { grid-template-columns: repeat(2, 1fr); }

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

    /* FAQ layout */
    .faq-layout { grid-template-columns: 1fr; }
    .faq-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Timeline */
    .timeline::before { left: 20px; }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
    }
    .timeline-dot { left: 11px !important; right: auto !important; }
}

/* ============================================================
   Responsive Breakpoints — 768px (Mobile)
   ============================================================ */
@media (max-width: 768px) {
    /* Hero Carousel */
    .hero-carousel { height: 60vh; min-height: 400px; }
    .carousel-content h1 { font-size: 2rem; }
    .carousel-content p { font-size: 1rem; }
    .carousel-arrow { width: 40px; height: 40px; font-size: 1rem; }

    /* Page Banner */
    .page-banner h1 { font-size: 2rem; }
    .page-banner { padding: 60px 20px; }

    /* Section */
    section { padding: 60px 20px; }
    .section-header h2 { font-size: 2rem; }

    /* Grids */
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .levels-grid { grid-template-columns: 1fr 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .quick-links { grid-template-columns: 1fr 1fr; }
    .hours-grid { grid-template-columns: 1fr; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .contact-form { padding: 25px; }
    .booking-form { padding: 25px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }

    /* WhatsApp */
    .whatsapp-btn { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 1.7rem; }

    /* FAQ */
    .faq-sidebar { grid-template-columns: 1fr; }
    .faq-question { padding: 20px; }
    .faq-question h4 { font-size: 0.95rem; }
    .faq-answer-content { padding: 0 20px 20px; }

    /* Pricing table */
    .pricing-table { overflow-x: auto; }
    .pricing-table table { min-width: 500px; }

    /* CTA */
    .cta-buttons { flex-direction: column; align-items: center; }

    /* Course */
    .course-categories { gap: 10px; }
    .category-btn { padding: 10px 20px; font-size: 0.9rem; }

    /* Misc */
    .mission-vision { grid-template-columns: 1fr; }
}

/* ============================================================
   Responsive Breakpoints — 576px (Small Mobile)
   ============================================================ */
@media (max-width: 576px) {
    .hero-carousel { height: 50vh; min-height: 350px; }
    .carousel-content h1 { font-size: 1.6rem; }
    .carousel-arrow { display: none; }

    .features-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .levels-grid { grid-template-columns: 1fr; }
    .quick-links { grid-template-columns: 1fr 1fr; }

    .btn { padding: 12px 30px; }
    .logo-text { font-size: 1.2rem; }
    .logo img { height: 40px; }

    .footer-grid { gap: 30px; }
}
