/* ==================== 基础样式 ==================== */
:root {
    --primary-color: #1a5fb4;
    --primary-dark: #0d3a7d;
    --primary-light: #3584e4;
    --secondary-color: #26a269;
    --accent-color: #e5a50a;
    --text-dark: #1c1c1c;
    --text-light: #5e5e5e;
    --text-muted: #8e8e8e;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* ==================== 导航栏 ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.nav-contact i {
    font-size: 18px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ==================== Hero Banner ==================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1523050854058-8df57a76fcef?w=1920') center/cover;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--bg-white);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-large {
    padding: 12px 30px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-official {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.btn-official:hover {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

.btn-official i {
    font-size: 18px;
}

.official-url-section {
    text-align: center;
    padding: 10px;
}

.official-url-section .hint {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 24px;
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

/* ==================== About Section ==================== */
.about {
    padding: 15px 0;
    background: var(--bg-light);
}

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

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

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.about-images-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.about-images-grid img:hover {
    transform: scale(1.05);
}

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

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.about-features {
    display: grid;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 20px;
}

.about-contact {
    margin-top: 30px;
    padding: 10px;
    background: linear-gradient(135deg, #1a5fb4 0%, #0d3a7d 100%);
    color: #ffffff;
    border-radius: 12px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(26, 95, 180, 0.3);
}

.about-contact p {
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-contact strong {
    font-size: 24px;
    color: #ffd700;
    font-weight: 700;
}

.about-contact i {
    margin-right: 10px;
    color: #ffffff;
}

/* ==================== Products Section ==================== */
.products {
    padding: 15px 0;
}

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

.product-card {
    background: var(--bg-white);
    padding: 10px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--bg-white);
    font-size: 32px;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.product-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

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

/* ==================== Colleges Section ==================== */
.colleges {
    padding: 15px 0;
    background: var(--bg-light);
}

/* 咨询热线横幅 */
.consultation-banner {
    background: linear-gradient(135deg, #1a5fb4, #0d3a7d);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(26, 95, 180, 0.3);
}

.consultation-banner i {
    font-size: 24px;
    animation: ring 1.5s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

.consultation-banner span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.consultation-banner strong {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
}

/* 城市筛选 */
.city-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
    justify-content: center;
}

.city-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

/* 院校网格 */
.colleges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.college-card {
    background: var(--bg-white);
    padding: 10px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.college-card.hidden {
    display: none;
}

/* 院校折叠样式 */
.college-card.collapsed {
    display: none;
}

.colleges-toggle {
    margin-top: 30px;
    text-align: center;
}

.colleges-toggle .btn {
    padding: 12px 40px;
    font-size: 16px;
    transition: all 0.3s;
}

.colleges-toggle .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}

.college-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
    vertical-align: middle;
}

.college-badge.hot {
    background: #ff6b6b;
    color: white;
}

.college-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.college-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.college-location {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.college-type {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.college-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.5;
}

.college-majors-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.major-tag {
    padding: 5px 12px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-dark);
}

.major-tag.more {
    background: var(--primary-light);
    color: var(--bg-white);
}

.college-detail-btn {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.college-detail-btn:hover {
    background: var(--primary-dark);
}

/* ==================== Modal 弹窗 ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--bg-white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.modal-close:hover {
    opacity: 0.8;
}

.modal-body {
    padding: 10px;
}

/* 弹窗内咨询热线 */
.modal-contact {
    background: linear-gradient(135deg, var(--secondary-color), #2ecc71);
    color: var(--bg-white);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 16px;
}

.modal-contact i {
    font-size: 20px;
}

.modal-contact strong {
    font-size: 20px;
}

/* 弹窗区块 */
.modal-section {
    margin-bottom: 8px;
}

.modal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section h3 i {
    color: var(--primary-color);
}

/* 图片占位 */
.gallery-placeholder {
    background: var(--bg-light);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-muted);
}

.gallery-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--border-color);
}

.gallery-placeholder p {
    font-size: 16px;
    margin-bottom: 5px;
}

.gallery-placeholder .hint {
    font-size: 14px;
    color: var(--text-muted);
}

/* 弹窗内图片网格 */
.modal .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.modal .gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.modal .gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.modal .gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* 专业列表 */
.majors-list {
    display: grid;
    gap: 10px;
}

.major-category {
    background: var(--bg-light);
    padding: 10px;
    border-radius: 12px;
}

.major-category h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.major-note {
    font-size: 14px;
    color: var(--text-muted);
}

/* 招生简章 */
.enrollment-guide {
    background: var(--bg-light);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
}

.enrollment-guide p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.enrollment-guide .hint {
    font-size: 14px;
    margin-bottom: 8px;
}

/* 弹窗底部 */
.modal-footer {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* ==================== Features Section ==================== */
.features {
    padding: 15px 0;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--bg-white);
    font-size: 28px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

/* ==================== Contact Section ==================== */
.contact {
    padding: 15px 0;
    background: var(--bg-light);
}

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

.contact-info {
    display: grid;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-white);
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

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

.contact-form {
    background: var(--bg-white);
    padding: 10px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 15px;
    text-align: center;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 15px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

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

.footer-links a {
    color: var(--bg-white);
    opacity: 0.8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 5px;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .colleges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 10px;
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .colleges-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .city-filter {
        justify-content: flex-start;
    }
    
    .city-btn {
        font-size: 12px;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .consultation-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== 寝室环境信息样式 ==================== */
.dormitory-info-box {
    background: var(--bg-white);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.dormitory-info-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dormitory-info-box p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ==================== 招生简章样式 ==================== */
.guide-content {
    background: var(--bg-white);
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.guide-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    margin-top: 20px;
}

.guide-content h4:first-child {
    margin-top: 0;
}

.guide-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.guide-footer {
    text-align: center;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.guide-footer p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* ==================== 专业标签样式优化 ==================== */
.major-category {
    margin-bottom: 10px;
}

.major-category h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.major-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.major-tag {
    padding: 8px 15px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--bg-white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.major-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.major-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ==================== 响应式图片展示 ==================== */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .guide-footer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* ==================== 机构环境展示 ==================== */
.environment {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.environment-gallery {
    margin-top: 40px;
}

.gallery-main {
    width: 100%;
    margin-bottom: 8px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-main img:hover {
    transform: scale(1.02);
}

.environment .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.environment .gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.environment .gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.environment .gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.environment-note {
    margin-top: 30px;
    padding: 10px;
    background: var(--bg-white);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.environment-note p {
    color: var(--text-muted);
    font-size: 15px;
}

.environment-note strong {
    color: var(--primary-color);
}

/* ==================== 就业信息样式 ==================== */
.employment-info-box {
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.employment-info-box p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.employment-info-box .hint {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 15px;
}

.employment-info-box strong {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .environment .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-main img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .environment .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .environment .gallery-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .environment .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .environment .gallery-item img {
        height: 200px;
    }
    
    .gallery-main img {
        height: 250px;
    }
}

/* ==================== 新首页板块样式 ==================== */

/* Hero Banner 新样式 */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.hero-slogan {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-highlight {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: white;
    font-size: 14px;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-trust i {
    color: var(--secondary-color);
}

.btn-large {
    padding: 12px 20px;
    font-size: 18px;
}

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

/* 核心优势速览 */
.advantages-quick {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 15px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.advantage-item {
    text-align: center;
    color: white;
    padding: 20px 10px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.advantage-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.advantage-item p {
    font-size: 13px;
    opacity: 0.9;
}

/* 热门服务 */
.services-hot {
    padding: 15px 0;
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card.hot {
    border: 2px solid var(--accent-color);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.service-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.service-features span {
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--text-light);
}

.service-features i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-service:hover {
    background: var(--primary-dark);
}

/* 升学成果展示 */
.achievements {
    padding: 15px 0;
    background: white;
}

.achievements-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    margin-bottom: 8px;
}

.achievement-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.achievement-stat {
    text-align: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: var(--shadow-md);
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.achievement-stat p {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.achievement-item {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 10px;
    border-left: 4px solid var(--primary-color);
}

.achievement-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.achievement-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.achievement-content p::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.more-link {
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
}

.more-link::before {
    content: '';
}

.testimonial {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
}

.testimonial p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.8;
    padding-left: 0;
}

.testimonial p::before {
    content: '';
}

.testimonial-author {
    display: block;
    text-align: right;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

.achievement-cta {
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
    border-radius: 15px;
}

.achievement-cta p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slogan {
        font-size: 32px;
    }
    
    .hero-highlight {
        font-size: 24px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-showcase {
        grid-template-columns: 1fr;
    }
    
    .achievement-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-value {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        padding: 10px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
}

/* ==================== 师资团队 ==================== */
.teachers {
    padding: 50px 0;
    background: var(--bg-light);
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.teacher-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.teacher-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 36px;
}

.teacher-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.teacher-title {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.teacher-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.teacher-stats {
    font-size: 13px;
    color: var(--secondary-color);
}

.teacher-stats i {
    margin-right: 5px;
}

.teachers-note {
    text-align: center;
    margin-top: 30px;
    padding: 10px;
    background: var(--bg-white);
    border-radius: 12px;
    color: var(--text-light);
}

.teachers-note strong {
    color: var(--primary-color);
}

/* ==================== 地址导航 ==================== */
.location {
    padding: 50px 0;
    background: var(--bg-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 40px;
}

.location-info {
    padding: 10px;
    background: var(--bg-light);
    border-radius: 16px;
}

.location-info h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.address-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.address-note {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.location-details {
    margin-bottom: 10px;
}

.location-details p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.location-details i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

.location-details strong {
    color: var(--primary-color);
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.map-note {
    text-align: center;
    padding: 10px;
    background: var(--bg-light);
    font-size: 13px;
    color: var(--text-muted);
}

/* ==================== 右侧悬浮咨询入口 ==================== */
.floating-consult {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.consult-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.consult-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.consult-btn i {
    font-size: 24px;
    margin-bottom: 2px;
}

.consult-btn span {
    font-size: 12px;
    font-weight: 600;
}

.consult-panel {
    position: absolute;
    right: 70px;
    top: 0;
    width: 280px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: none;
    opacity: 0;
    transition: var(--transition);
}

.consult-panel.active {
    display: block;
    opacity: 1;
}

.consult-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px 16px 0 0;
    color: white;
}

.consult-header h4 {
    font-size: 16px;
}

.consult-header button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

.consult-body {
    padding: 10px;
    text-align: center;
}

.consult-phone {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.consult-phone i {
    margin-right: 10px;
}

.consult-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background: var(--secondary-color);
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-call:hover {
    background: #1e8a5a;
    transform: translateY(-2px);
}

.btn-call i {
    margin-right: 8px;
}

.consult-time {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 15px;
}

.consult-time i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .floating-consult {
        right: 10px;
        bottom: 20px;
        top: auto;
        transform: none;
    }
    
    .consult-btn {
        width: 50px;
        height: 50px;
    }
    
    .consult-btn i {
        font-size: 20px;
    }
    
    .consult-btn span {
        font-size: 10px;
    }
    
    .consult-panel {
        right: 60px;
        top: auto;
        bottom: 0;
        width: 260px;
    }
}

@media (max-width: 480px) {
    .teachers-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== 完善响应式布局 ==================== */
@media (max-width: 992px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 15px;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 15px;
        border-radius: 8px;
    }
    
    .nav-links a:hover {
        background: var(--bg-light);
    }
    
    .nav-contact {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .btn-large {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    .hero {
        min-height: 70vh;
        padding-top: 50px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    .hero-slogan {
        font-size: 28px;
    }
    
    .hero-highlight {
        font-size: 20px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 8px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .advantage-item {
        padding: 15px;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .advantage-item h4 {
        font-size: 16px;
    }
    
    .advantage-item p {
        font-size: 13px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .service-features {
        gap: 8px;
    }
    
    .service-features span {
        font-size: 12px;
    }
    
    .btn-service {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .colleges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .college-card {
        padding: 15px;
    }
    
    .college-card h3 {
        font-size: 16px;
    }
    
    .college-info {
        font-size: 13px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .achievements-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-circle {
        width: 80px;
        height: 80px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .achievement-stat p {
        font-size: 14px;
    }
    
    .achievement-item {
        padding: 15px;
    }
    
    .achievement-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .achievement-content h4 {
        font-size: 16px;
    }
    
    .achievement-content p {
        font-size: 13px;
    }
    
    .testimonial {
        padding: 12px 15px;
    }
    
    .testimonial p {
        font-size: 13px;
    }
    
    .testimonial-author {
        font-size: 12px;
    }
    
    .achievement-cta p {
        font-size: 16px;
    }
    
    .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .teacher-card {
        padding: 20px 15px;
    }
    
    .teacher-avatar {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .teacher-card h3 {
        font-size: 18px;
    }
    
    .teacher-title {
        font-size: 13px;
    }
    
    .teacher-desc {
        font-size: 13px;
    }
    
    .teacher-stats {
        font-size: 12px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-info h3 {
        font-size: 20px;
    }
    
    .address-text {
        font-size: 14px;
    }
    
    .address-note {
        font-size: 13px;
    }
    
    .location-details p {
        font-size: 13px;
    }
    
    .location-map iframe {
        height: 250px;
    }
    
    .map-note {
        font-size: 12px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info h3 {
        font-size: 20px;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .btn-submit {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }
    
    .footer-bottom {
        font-size: 13px;
    }
    
    .floating-consult {
        right: 10px;
        bottom: 20px;
        top: auto;
        transform: none;
    }
    
    .consult-btn {
        width: 50px;
        height: 50px;
    }
    
    .consult-btn i {
        font-size: 20px;
    }
    
    .consult-btn span {
        font-size: 10px;
    }
    
    .consult-panel {
        right: 60px;
        top: auto;
        bottom: 0;
        width: 260px;
    }
    
    .consult-phone {
        font-size: 24px;
    }
    
    .consult-note {
        font-size: 13px;
    }
    
    .btn-call {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .consult-time {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .logo {
        font-size: 16px;
        gap: 8px;
    }
    
    .logo i {
        font-size: 22px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
    }
    
    .hero {
        min-height: 60vh;
        padding-top: 40px;
    }
    
    .hero-content {
        padding: 20px 10px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .hero-slogan {
        font-size: 24px;
    }
    
    .hero-highlight {
        font-size: 18px;
    }
    
    .hero-desc {
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .btn-large {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .hero-trust {
        font-size: 12px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator i {
        font-size: 20px;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .section-header p {
        font-size: 13px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .advantage-item {
        padding: 12px;
    }
    
    .advantage-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .advantage-item h4 {
        font-size: 15px;
    }
    
    .advantage-item p {
        font-size: 12px;
    }
    
    .services-grid {
        gap: 15px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .service-features {
        gap: 6px;
    }
    
    .service-features span {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .btn-service {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .colleges-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .college-card {
        padding: 12px;
    }
    
    .college-card h3 {
        font-size: 15px;
    }
    
    .college-info {
        font-size: 12px;
    }
    
    .college-tags {
        gap: 5px;
    }
    
    .college-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .feature-list li {
        font-size: 12px;
    }
    
    .achievements-showcase {
        gap: 15px;
    }
    
    .achievement-stats {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .stat-circle {
        width: 70px;
        height: 70px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .achievement-stat p {
        font-size: 12px;
    }
    
    .achievement-item {
        padding: 12px;
    }
    
    .achievement-badge {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .achievement-content h4 {
        font-size: 15px;
    }
    
    .achievement-content p {
        font-size: 12px;
        padding-left: 12px;
    }
    
    .testimonial {
        padding: 10px 12px;
    }
    
    .testimonial p {
        font-size: 12px;
    }
    
    .testimonial-author {
        font-size: 11px;
    }
    
    .achievement-cta {
        padding: 12px;
    }
    
    .achievement-cta p {
        font-size: 14px;
    }
    
    .teachers-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .teacher-card {
        padding: 15px 10px;
    }
    
    .teacher-avatar {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .teacher-card h3 {
        font-size: 16px;
    }
    
    .teacher-title {
        font-size: 12px;
    }
    
    .teacher-desc {
        font-size: 12px;
    }
    
    .teacher-stats {
        font-size: 11px;
    }
    
    .teachers-note {
        font-size: 13px;
        padding: 8px;
    }
    
    .location-content {
        gap: 15px;
    }
    
    .location-info {
        padding: 12px;
    }
    
    .location-info h3 {
        font-size: 18px;
    }
    
    .address-text {
        font-size: 13px;
    }
    
    .address-note {
        font-size: 12px;
    }
    
    .location-details p {
        font-size: 12px;
    }
    
    .location-map iframe {
        height: 200px;
    }
    
    .map-note {
        font-size: 11px;
        padding: 8px;
    }
    
    .contact-content {
        gap: 15px;
    }
    
    .contact-info {
        padding: 12px;
    }
    
    .contact-info h3 {
        font-size: 18px;
    }
    
    .contact-item {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .btn-submit {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .footer-content {
        gap: 15px;
        padding: 20px 0;
    }
    
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 12px;
    }
    
    .footer-bottom {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .floating-consult {
        right: 8px;
        bottom: 15px;
    }
    
    .consult-btn {
        width: 45px;
        height: 45px;
    }
    
    .consult-btn i {
        font-size: 18px;
    }
    
    .consult-btn span {
        font-size: 9px;
    }
    
    .consult-panel {
        right: 55px;
        width: 240px;
    }
    
    .consult-header {
        padding: 12px 15px;
    }
    
    .consult-header h4 {
        font-size: 14px;
    }
    
    .consult-body {
        padding: 8px;
    }
    
    .consult-phone {
        font-size: 20px;
    }
    
    .consult-note {
        font-size: 12px;
    }
    
    .btn-call {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .consult-time {
        font-size: 11px;
    }
}