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

:root {
    --color-primary: #1a1a2e;
    --color-accent: #d4af37;
    --color-accent-light: #e8c860;
    --color-accent-dark: #b8941f;
    --color-text: #333;
    --color-text-light: #666;
    --color-text-muted: #999;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-gray: #f0f0f0;
    --color-border: #e0e0e0;
    --color-success: #28a745;
    --color-danger: #dc3545;
    --color-warning: #ffc107;
    --color-info: #17a2b8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-main: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===========================
   Buttons
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

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

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

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* ===========================
   Navbar
=========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 16px 0;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--color-accent);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav-btn-booking {
    background: var(--color-accent);
    color: #fff !important;
    padding: 8px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
}

.nav-btn-booking:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.nav-btn-booking::after {
    display: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===========================
   Hero
=========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 40%, #16213e 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-tag {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--color-accent);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 4px;
    text-shadow: 0 4px 30px rgba(212, 175, 55, 0.2);
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 22px);
    color: var(--color-accent);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

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

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 16px;
    color: var(--color-text-light);
}

/* ===========================
   Stats
=========================== */
.stats {
    background: var(--color-primary);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* ===========================
   Programs
=========================== */
.programs {
    padding: 80px 0;
    background: var(--color-bg);
}

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

.programs-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.program-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--color-accent);
}

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

.program-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.program-posture .program-icon {
    background: linear-gradient(135deg, var(--color-info), #48cae4);
}

.program-posture {
    border-top-color: var(--color-info);
}

.program-height .program-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.program-height {
    border-top-color: #2ecc71;
}

.program-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--color-accent);
}

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

.program-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

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

.program-features {
    margin-bottom: 24px;
}

.program-features li {
    padding: 8px 0;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-features i {
    color: var(--color-accent);
    font-size: 14px;
}

/* ===========================
   Facilities
=========================== */
.facilities {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.facility-card {
    text-align: center;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.facility-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.8);
}

.facility-t-stage {
    background: linear-gradient(135deg, #2c3e50, #1a1a2e);
}

.facility-photo {
    background: linear-gradient(135deg, #8e44ad, #5d3a73);
}

.facility-posture {
    background: linear-gradient(135deg, #2980b9, #1a5276);
}

.facility-card h3 {
    padding: 20px 20px 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
}

.facility-card p {
    padding: 0 20px 24px;
    color: var(--color-text-light);
    font-size: 14px;
}

/* ===========================
   Achievements
=========================== */
.achievements {
    padding: 80px 0;
    background: var(--color-bg);
}

.achievements-content {
    max-width: 800px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.achievement-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 50%;
    font-size: 22px;
    color: var(--color-accent);
}

.achievement-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

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

/* ===========================
   CTA Section
=========================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

/* ===========================
   Page Header
=========================== */
.page-header {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #2c2c54);
}

.page-header-model {
    background: linear-gradient(135deg, #1a1a2e, #2c2c54);
}

.page-header-posture {
    background: linear-gradient(135deg, #1a1a2e, #2c2c54);
}

.page-header-booking {
    background: linear-gradient(135deg, #1a1a2e, #2c2c54);
}

.page-header-contact {
    background: linear-gradient(135deg, #1a1a2e, #2c2c54);
}

.page-header-about {
    background: linear-gradient(135deg, #1a1a2e, #2c2c54);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 70%);
}

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

.page-header .section-tag {
    color: var(--color-accent);
}

.page-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   Course Pages
=========================== */
.course-intro {
    padding: 80px 0;
}

.course-intro {
    padding: 80px 0;
    background: #fff;
}

.course-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.course-intro-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.course-intro-text p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

.course-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.info-card {
    text-align: center;
    padding: 20px 12px;
    background: var(--color-bg-light);
    border-radius: var(--radius);
    border-bottom: 3px solid var(--color-accent);
}

.info-card i {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.info-card span {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.info-card strong {
    display: block;
    font-size: 16px;
    color: var(--color-text);
}

.course-intro-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    max-width: 360px;
    width: 100%;
    position: sticky;
    top: 100px;
}

.visual-card i {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.visual-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.visual-card p {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .course-intro-grid {
        grid-template-columns: 1fr;
    }
    .visual-card {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    .course-info-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .course-info-cards {
        grid-template-columns: 1fr;
    }
}

.course-intro-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.course-intro-text p {
    color: var(--color-text-light);
    line-height: 2;
    margin-bottom: 16px;
}

.course-info-cards {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.info-card {
    flex: 1;
    text-align: center;
    padding: 20px 12px;
    background: var(--color-bg-light);
    border-radius: var(--radius);
    border-bottom: 3px solid var(--color-accent);
}

.info-card i {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.info-card span {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.info-card strong {
    font-size: 16px;
    color: var(--color-primary);
}

.course-intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    width: 100%;
    max-width: 400px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    color: #fff;
    text-align: center;
    padding: 40px;
}

.visual-model {
    background: linear-gradient(135deg, #1a1a2e, #2c2c54);
    box-shadow: var(--shadow-lg);
}

.visual-posture {
    background: linear-gradient(135deg, #1a1a2e, #1e3a5f);
    box-shadow: var(--shadow-lg);
}

.visual-card i {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.visual-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.visual-card p {
    color: rgba(255, 255, 255, 0.6);
}

.course-content-section {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.course-modules {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.module-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.module-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 12px;
}

.module-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.module-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.course-features-section {
    padding: 80px 0;
}

.course-features-section.bg-light {
    background: var(--color-bg-light);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.feature-item i {
    font-size: 32px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: var(--color-text-light);
}

.posture-problems {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 50%;
    font-size: 24px;
    color: var(--color-accent);
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.method-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.method-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.method-step p {
    font-size: 14px;
    color: var(--color-text-light);
}

.suitable-list {
    max-width: 700px;
    margin: 0 auto;
}

.suitable-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
    color: var(--color-text);
}

.suitable-item i {
    color: var(--color-success);
    font-size: 18px;
}

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

/* ===========================
   Booking Page
=========================== */
.booking-section {
    padding: 80px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.booking-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.booking-steps {
    margin-bottom: 32px;
}

.booking-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.step-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 18px;
}

.booking-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.booking-step p {
    font-size: 14px;
    color: var(--color-text-light);
}

.booking-note {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #fff8e1;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-warning);
}

.booking-note i {
    color: var(--color-warning);
    font-size: 18px;
}

.booking-note p {
    font-size: 14px;
    color: var(--color-text-light);
}

.booking-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* ===========================
   Forms
=========================== */
.booking-form h3,
.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.form-desc {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--color-text);
    transition: var(--transition);
    background: #fff;
}

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

.form-group textarea {
    resize: vertical;
}

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

/* ===========================
   Contact Page
=========================== */
.contact-section {
    padding: 80px 0;
}

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

.contact-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.contact-items {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-accent);
    border-radius: 50%;
    font-size: 18px;
}

.contact-detail h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 14px;
    color: var(--color-text-light);
}

.contact-facilities h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.facility-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.facility-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--color-bg-light);
    border-radius: 20px;
    font-size: 14px;
    color: var(--color-primary);
}

.facility-tag i {
    color: var(--color-accent);
}

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

/* ===========================
   About Page
=========================== */
.about-intro {
    padding: 80px 0;
}

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

.about-intro-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.about-intro-text p {
    color: var(--color-text-light);
    line-height: 2;
    margin-bottom: 16px;
}

.about-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat {
    text-align: center;
    padding: 28px 16px;
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    border-bottom: 3px solid var(--color-accent);
}

.about-stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-accent);
}

.about-stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 8px;
}

.about-mission {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mission-card {
    text-align: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mission-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 50%;
    font-size: 24px;
    color: var(--color-accent);
}

.mission-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.mission-card p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ===========================
   Footer
=========================== */
.footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

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

.footer-brand h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

.footer-contact ul li i {
    color: var(--color-accent);
    margin-right: 8px;
    width: 16px;
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 500;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-accent);
}

.footer-col ul li i {
    color: var(--color-accent);
    margin-right: 8px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
    margin-bottom: 6px;
}

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

/* ===========================
   Toast
=========================== */
.toast {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s ease;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
}

/* ============================ */

/* ===========================
   VIP Students Showcase (Homepage)
   =========================== */
.vip-showcase {
    background: linear-gradient(135deg, #1a1a2e, #2c2c54);
    padding: 80px 0;
}

.vip-showcase .section-header h2,
.vip-showcase .section-header p {
    color: #fff;
}

.vip-showcase .section-tag {
    color: #d4af37;
}

.vip-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.vip-story-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #e8c860, #d4af37);
}

.vip-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.4);
}

.vip-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.vip-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(212,175,55,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212,175,55,0.3);
}

.vip-avatar i {
    font-size: 24px;
    color: #d4af37;
}

.vip-info h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-badge {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.vip-age {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.vip-comment {
    background: rgba(212,175,55,0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    border-left: 3px solid #d4af37;
}

.vip-comment i {
    color: #d4af37;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.vip-comment p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.vip-milestones {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vip-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.vip-tag i {
    font-size: 11px;
}

/* Mobile */
@media (max-width: 768px) {
    .vip-stories-grid {
        grid-template-columns: 1fr;
    }

    .vip-story-card {
        padding: 20px;
    }

    .vip-avatar {
        width: 48px;
        height: 48px;
    }

    .vip-avatar i {
        font-size: 20px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .vip-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ============================ */

/* ===========================
   Layout Consistency & Mobile Optimization
   =========================== */

/* Section Spacing Standardization */
section {
    padding: 80px 0;
}

.page-header {
    padding: 120px 0 80px;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Course Pages: Structured Info Section */
.course-info-structured {
    background: #f8f9fa;
    padding: 60px 0;
}

.course-info-structured .info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .course-info-structured .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .course-info-structured .info-grid {
        grid-template-columns: 1fr;
    }
}

.structured-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--course-color, var(--color-accent));
    box-shadow: var(--shadow-sm);
}

.structured-card h4 {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.structured-card h4 i {
    color: var(--course-color, var(--color-accent));
    font-size: 18px;
}

.structured-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.structured-card ul li {
    font-size: 14px;
    color: var(--color-text-light);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.structured-card ul li::before {
    content: '\2713';
    color: var(--course-color, var(--color-accent));
    font-weight: 700;
}

/* Course Target Audience Section */
.target-audience {
    background: linear-gradient(135deg, #1a1a2e, #2c2c54);
    color: #fff;
    padding: 60px 0;
}

.target-audience .section-header h2,
.target-audience .section-header p {
    color: #fff;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.audience-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

.audience-card i {
    font-size: 32px;
    color: var(--course-color, var(--color-accent));
    margin-bottom: 12px;
}

.audience-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.audience-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Value Proposition Section */
.value-props {
    padding: 60px 0;
    background: #fff;
}

.value-props .section-header h2,
.value-props .section-header p {
    color: var(--color-text);
}

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

.value-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--course-color, var(--color-accent));
}

.value-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--color-text);
}

.value-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Contact Page Enhancements */
.contact-map-section {
    background: #f8f9fa;
    padding: 40px 0;
}

.contact-map-frame {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #fff;
}

.contact-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 40px 0;
}

.trust-badge {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.trust-badge i {
    font-size: 28px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.trust-badge h4 {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 4px;
}

.trust-badge p {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Booking Page: Form Improvements */
.booking-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.form-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin: 20px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

/* Hero Section Optimization */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 12px;
}

.hero-desc {
    font-size: clamp(14px, 1.5vw, 18px);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-showcase {
    margin: 30px 0;
}

.hero-showcase-real {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-showcase-real img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-courses {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .page-header {
        padding: 100px 0 60px;
        min-height: 300px;
    }

    .page-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .contact-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-info-structured .info-grid,
    .audience-cards,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .hero-courses {
        flex-direction: column;
        align-items: center;
    }

    .hero-course-tag {
        width: 100%;
        max-width: 280px;
    }

    /* Touch-friendly targets */
    .btn, a, button {
        min-height: 44px;
    }

    .form-input, .form-select, .form-textarea {
        font-size: 16px; /* Prevent iOS zoom */
        padding: 12px 14px;
    }

    /* Card spacing on mobile */
    .program-card,
    .why-card,
    .facility-card,
    .module-card,
    .feature-item {
        margin-bottom: 16px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .course-info-structured .info-grid,
    .audience-cards,
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* CTA Section Enhancement */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e, #2c2c54);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Consistent Card Hover Effects */
.program-card,
.why-card,
.facility-card,
.module-card,
.feature-item,
.structured-card,
.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover,
.why-card:hover,
.facility-card:hover,
.module-card:hover,
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Button consistency */
.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

/* Form improvements */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    outline: none;
}

/* Loading states */
.loading-icon {
    margin-left: 8px;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
}

/* ========== Hero Carousel ========== */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    position: relative;
    width: 100%;
    min-height: 280px;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
    position: relative;
    pointer-events: auto;
}

.carousel-item img,
.carousel-item .hero-media {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.carousel-item .hero-media {
    max-height: 400px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    font-size: 14px;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.8);
}

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

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

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dots .dot.active {
    background: #d4af37;
    border-color: #d4af37;
}

.carousel-dots .dot:hover {
    border-color: #d4af37;
}

/* Mobile carousel adjustments */
@media (max-width: 768px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
    .carousel-dots { bottom: 12px; }
    .carousel-dots .dot {
        width: 8px;
        height: 8px;
    }
    .carousel-item .hero-media {
        max-height: 240px;
    }
}

/* ===========================
   Mobile Responsive - Comprehensive
   =========================== */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Hero area */
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }
    
    .hero-tag {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }
    
    .hero-title {
        font-size: clamp(20px, 6vw, 30px);
        line-height: 1.2;
        margin-bottom: 8px;
        letter-spacing: 0;
        word-break: keep-all;
        overflow-wrap: break-word;
        text-shadow: none;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .hero-desc {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 260px;
    }

    /* Carousel */
    .hero-showcase {
        margin: 16px 0;
    }
    
    .hero-showcase-real {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .carousel-item img,
    .carousel-item .hero-media {
        border-radius: 8px;
        max-height: 200px;
    }
    
    .carousel-track {
        min-height: 200px;
    }
    
    /* Course tags under hero */
    .hero-courses {
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
    }
    
    .hero-course-tag {
        width: 100%;
        max-width: 260px;
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Section spacing */
    section {
        padding: 40px 0;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 24px;
    }
    
    .section-tag {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .section-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    
    .section-desc {
        font-size: 14px;
    }

    /* Stats grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-item {
        padding: 12px;
        border-right: none;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }

    /* Program cards */
    .programs-grid,
    .programs-grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-card {
        padding: 24px;
    }
    
    .program-card h3 {
        font-size: 18px;
    }
    
    .program-card > p {
        font-size: 14px;
    }

    /* Facility cards */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .facility-card {
        padding: 20px;
    }
    
    .facility-card h3 {
        font-size: 16px;
    }
    
    .facility-card p {
        font-size: 13px;
    }

    /* Achievement items */
    .achievement-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px 0;
    }
    
    .achievement-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .achievement-text h4 {
        font-size: 16px;
    }
    
    .achievement-text p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* CTA section */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 14px;
    }

    /* Page header */
    .page-header {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }

    /* Course intro grid */
    .course-intro-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .intro-card {
        padding: 20px;
    }
    
    .course-info-structured .info-grid,
    .audience-cards,
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card,
    .audience-card,
    .value-card {
        padding: 20px;
    }

    /* Method/process steps */
    .method-steps,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* FAQ */
    .faq-item {
        padding: 16px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-answer {
        font-size: 14px;
    }

    /* Booking page */
    .booking-section {
        padding: 40px 0;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .booking-info h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .booking-step {
        padding: 12px 0;
        gap: 12px;
    }
    
    .step-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .booking-note {
        padding: 12px;
        font-size: 13px;
    }
    
    .booking-form-wrap {
        padding: 24px 16px;
        border-radius: 12px;
        max-width: 100%;
    }
    
    .booking-form h3 {
        font-size: 18px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-group {
        font-size: 13px;
    }
    
    .checkbox-label {
        padding: 6px 0;
    }
    
    .eval-grid {
        gap: 8px;
    }
    
    .eval-row {
        flex-direction: column;
        gap: 6px;
        padding: 8px 0;
    }
    
    .eval-question {
        font-size: 13px;
        width: 100%;
    }
    
    .eval-text input[type="text"] {
        width: 100%;
        margin-top: 6px;
    }
    
    /* Page headers */
    .page-header {
        min-height: auto;
        padding: 60px 0 30px;
    }
    
    .page-title {
        font-size: clamp(22px, 7vw, 32px);
        word-break: keep-all;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    /* Contact page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-info h2 {
        font-size: 20px;
    }
    
    .contact-form-wrap {
        padding: 24px 16px;
    }
    
    /* Cases page */
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    /* Team page */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* FAQ page */
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    /* About page */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Article page */
    .article-content {
        padding: 0 8px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 16px;
    }
    
    .footer-contact ul li {
        justify-content: center;
    }
    
    .footer-brand h3,
    .footer-brand p,
    .footer-links h4,
    .footer-contact h4 {
        text-align: center;
    }
    
    /* Section padding adjustments */
    .section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: clamp(20px, 6vw, 28px);
        word-break: keep-all;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    /* Course pages */
    .course-hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .course-content-grid {
        grid-template-columns: 1fr;
    }
    
    .course-features-grid {
        grid-template-columns: 1fr;
    }
    
    .course-cta {
        padding: 40px 20px;
    }
    
    /* Button sizes */
    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .btn-block {
        width: 100%;
    }
    
    /* Forms */
    .form-section-title {
        font-size: 14px;
    }
    
    /* Evaluation section */
    .evaluation-section h4 {
        font-size: 15px;
    }
    
    .evaluation-section h5 {
        font-size: 14px;
    }
    
    .eval-desc {
        font-size: 12px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    /* Articles */
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    /* Statistics */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Scroll top */
    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
    }
    
    /* Mobile nav CTA */
    .mobile-nav-cta {
        padding: 6px 12px;
        font-size: 12px;
    }
}
    
    .footer-col {
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .footer-contact p {
        font-size: 14px;
    }

    /* Contact trust badges */
    .contact-trust-badges {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trust-badge {
        padding: 16px;
    }

    /* Forms */
    .form-input, .form-select, .form-textarea {
        font-size: 16px;
        padding: 12px 14px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .booking-form {
        padding: 20px;
    }

    /* Buttons touch targets */
    .btn, a.btn, button.btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 16px;
    }

    /* VIP showcase */
    .vip-showcase {
        padding: 50px 0;
    }
    
    .vip-stories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .vip-story-card {
        padding: 20px;
    }
    
    .vip-card-header h4 {
        font-size: 16px;
    }
    
    .vip-comment p {
        font-size: 14px;
    }
    
    .vip-milestones {
        font-size: 12px;
    }

    /* Articles list */
    .article-card {
        flex-direction: column;
    }
    
    .article-image {
        width: 100%;
        height: 180px;
    }
    
    .article-content {
        padding: 16px;
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .article-excerpt {
        font-size: 14px;
    }

    /* Team grid */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .team-card h4 {
        font-size: 16px;
    }
    
    .team-card .role {
        font-size: 13px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Cases */
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .case-card {
        padding: 16px;
    }

    /* Navigation mobile menu */
    .nav-menu {
        padding: 60px 20px 20px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 0;
    }
    
    .nav-btn-booking {
        margin-top: 10px;
        padding: 12px 20px;
        font-size: 16px;
    }

    /* General typography */
    p, li {
        font-size: 14px;
        line-height: 1.6;
    }
    
    h3 {
        font-size: 18px;
    }
    
    h4 {
        font-size: 16px;
    }
}

/* Extra small screens - iPhone SE and smaller */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-item .hero-media,
    .carousel-item img {
        max-height: 180px;
    }
    
    .carousel-track {
        min-height: 180px;
    }
}
