:root {
    --primary: #fc308a;
    --primary-light: #ff758c;
    --primary-dark: #d61a6c;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --text-main: #333;
    --text-muted: #666;
    --soft-bg: #fff9fb;
    --line-color: #06c755;
    --bg-color: #f7f9fb;

    /* Admin Backend Variables */
    --color-bg: #f7f9fb;
    --color-primary: #fc308a;
    --color-text-main: #333333;
    --color-text-light: #888888;
    --color-danger: #ea4335;
    --color-danger-bg: #fce8e6;
    --color-warning: #fbbc04;
    --color-warning-bg: #fef7e0;
    --color-success: #34a853;
    --color-success-bg: #e6f4ea;
}

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

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

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

.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Noto Sans TC', sans-serif;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/lady_sport_hero_v2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}

.hero-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.3s;
}

.hero p {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.6s;
}

.cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.9s;
}

.btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(252, 48, 138, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
    box-shadow: 0 15px 40px rgba(252, 48, 138, 0.6);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    transform: translateY(-5px);
    background-color: white;
    color: var(--primary);
}

.btn-line {
    background-color: var(--line-color);
    color: white;
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.3);
    border: none;
}

.btn-line:hover {
    transform: translateY(-5px);
    background-color: #05b34c;
    color: white;
    box-shadow: 0 15px 40px rgba(6, 199, 85, 0.5);
}

/* --- Stats Section --- */
.features {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px;
    border-radius: 25px;
    background: var(--soft-bg);
    transition: all 0.4s;
    border: 1px solid transparent;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 20px 50px rgba(252, 48, 138, 0.08);
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.floor-tag {
    background: var(--primary);
    color: white;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* --- Reviews Section --- */
.reviews {
    padding: 100px 0;
    background: #fff;
}

.reviews-slider {
    padding: 40px 10px 60px;
    overflow: hidden;
    position: relative;
}

.review-card {
    height: auto;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(252, 48, 138, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-light);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 400;
}

.review-author {
    font-weight: 700;
    display: block;
    margin-top: 15px;
    color: var(--text-main);
    font-size: 1rem;
}

.review-source {
    font-size: 0.8rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* --- Refined Button Style --- */
.btn-refined {
    padding: 12px 30px;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(252, 48, 138, 0.1);
    text-decoration: none;
}

.btn-refined:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 48, 138, 0.3);
}

.btn-refined i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-refined:hover i {
    transform: scale(1.1);
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    .btn { width: 100%; justify-content: center; }
    .feature-grid { grid-template-columns: 1fr; }
    .nav-links { display: none !important; /* Will add mobile menu logic if needed */ }
}

@media (max-width: 992px) {
    .location-wrapper {
        flex-direction: column;
    }
}
