/*
Theme Name: 舒悦民宿
Theme URI: https://shuyue.com
Author: ShuYue Team
Author URI: https://shuyue.com
Description: 舒悦民宿温馨展示型 WordPress 主题，暖棕色系设计，适合公寓/民宿/酒店类网站。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shuyue
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready
*/

/* ========== Reset & Base ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #3a3a3a;
    background: #fffbf5;
    line-height: 1.8;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }

:root {
    --warm-cream: #fffbf5;
    --warm-beige: #f5ede3;
    --warm-tan: #e8d5c0;
    --warm-brown: #8b6f4e;
    --warm-dark: #5a4632;
    --warm-accent: #c9956b;
    --warm-gold: #d4a76a;
    --warm-rose: #d4a0a0;
    --text-primary: #3a3a3a;
    --text-secondary: #6b6b6b;
    --text-light: #999;
    --white: #ffffff;
    --shadow-soft: 0 4px 30px rgba(139,111,78,0.1);
    --shadow-medium: 0 8px 40px rgba(139,111,78,0.15);
    --shadow-hover: 0 12px 50px rgba(139,111,78,0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-weight: 600;
    color: var(--warm-dark);
    line-height: 1.4;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-secondary); margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }

/* ========== Layout ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }

/* ========== Section Header ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .en-label {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--warm-accent);
    margin-bottom: 12px;
    display: block;
}
.section-header h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
}
.section-header p {
    max-width: 560px;
    margin: 24px auto 0;
    font-size: 0.95rem;
    line-height: 1.9;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
    line-height: 1.4;
}
.btn-primary {
    background: var(--warm-gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(212,167,106,0.4);
}
.btn-primary:hover {
    background: var(--warm-brown);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139,111,78,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}
.btn-outline-dark {
    background: transparent;
    color: var(--warm-brown);
    border: 1.5px solid var(--warm-tan);
}
.btn-outline-dark:hover {
    background: var(--warm-brown);
    color: var(--white);
    border-color: var(--warm-brown);
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,251,245,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(139,111,78,0.08);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}
.navbar.scrolled .nav-logo { color: var(--warm-dark); }
.nav-logo span { color: var(--warm-gold); }
.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
    position: relative;
    letter-spacing: 1px;
}
.navbar.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a:hover { color: var(--warm-gold); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--warm-gold);
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-book-btn {
    background: var(--warm-gold) !important;
    color: var(--white) !important;
    padding: 10px 28px !important;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}
.nav-book-btn:hover {
    background: var(--warm-brown) !important;
    transform: translateY(-1px);
}
.nav-book-btn::after { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}
.navbar.scrolled .nav-toggle span { background: var(--warm-dark); }

/* ========== Hero ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90,70,50,0.55) 0%, rgba(139,111,78,0.3) 50%, rgba(201,149,107,0.2) 100%);
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.hero-content h1 .hero-sub {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== About ========== */
.about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}
.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.03); }
.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-medium);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-text .en-label {
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--warm-accent);
    margin-bottom: 12px;
    display: block;
}
.about-text h2 { margin-bottom: 24px; }
.about-text h2::after { display: none; }
.about-text p {
    font-size: 0.95rem;
    line-height: 2;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--warm-beige);
}
.stat-item .stat-number {
    font-family: 'Noto Serif SC', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--warm-gold);
}
.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ========== Rooms ========== */
.rooms { background: var(--warm-cream); }
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.room-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-card:hover .room-img img { transform: scale(1.08); }
.room-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--warm-brown);
    font-weight: 500;
}
.room-info { padding: 28px; }
.room-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.room-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}
.room-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--warm-beige);
}
.room-features {
    display: flex;
    gap: 12px;
}
.room-features span {
    font-size: 0.78rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}
.room-price {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--warm-gold);
}
.room-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ========== Features ========== */
.features { background: var(--white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    background: var(--warm-cream);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    background: var(--white);
}
.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--warm-gold), var(--warm-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ========== Gallery ========== */
.gallery { background: var(--warm-beige); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(90,70,50,0.5), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========== Testimonials ========== */
.testimonials { background: var(--white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--warm-cream);
    padding: 36px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Noto Serif SC', serif;
    font-size: 4rem;
    color: var(--warm-tan);
    position: absolute;
    top: 16px;
    left: 28px;
    line-height: 1;
}
.testimonial-stars {
    color: var(--warm-gold);
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-gold), var(--warm-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--warm-dark);
}
.testimonial-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ========== Location ========== */
.location { background: var(--warm-cream); }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 400px;
    background: var(--warm-beige);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.location-info .en-label {
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--warm-accent);
    margin-bottom: 12px;
    display: block;
}
.location-info h2 { margin-bottom: 20px; }
.location-info h2::after { display: none; }
.location-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.location-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.location-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
}
.location-item-text h4 {
    font-size: 0.9rem;
    color: var(--warm-dark);
    margin-bottom: 4px;
    font-family: 'Noto Sans SC', sans-serif;
}
.location-item-text p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ========== Booking CTA ========== */
.booking-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.booking-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.booking-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90,70,50,0.8), rgba(139,111,78,0.7));
}
.booking-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}
.booking-cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}
.booking-cta-content h2::after { display: none; }
.booking-cta-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    font-size: 1.05rem;
}
.booking-cta-content .btn-primary {
    background: var(--white);
    color: var(--warm-dark);
    font-size: 1.05rem;
    padding: 16px 48px;
}
.booking-cta-content .btn-primary:hover {
    background: var(--warm-gold);
    color: var(--white);
}

/* ========== Footer ========== */
.site-footer {
    background: var(--warm-dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand .nav-logo {
    font-size: 1.6rem;
    margin-bottom: 16px;
    display: inline-block;
}
.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.8;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--warm-gold);
    color: var(--white);
}
.site-footer h4 {
    color: var(--white);
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--warm-gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ========== WordPress specific ========== */
.wp-caption { max-width: 100%; }
.wp-caption-text {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    padding: 8px 0;
}
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { display: block; margin: 0 auto 16px; }

/* Entry content (for blog/pages) */
.entry-content {
    font-size: 1rem;
    line-height: 2;
}
.entry-content h2 { margin: 40px 0 16px; }
.entry-content h3 { margin: 32px 0 12px; }
.entry-content p { margin-bottom: 20px; }
.entry-content ul, .entry-content ol {
    margin: 16px 0;
    padding-left: 24px;
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
    border-left: 3px solid var(--warm-gold);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--warm-cream);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* ========== Animations ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Back to Top ========== */
.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--warm-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212,167,106,0.4);
    z-index: 999;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--warm-brown); transform: translateY(-3px); }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--warm-cream);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: var(--text-primary) !important; font-size: 1.05rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-float { display: none; }
    .rooms-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }
    .testimonials-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .location-map { height: 300px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .section-padding { padding: 70px 0; }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; }
}
