/* ===== CSS Variables ===== */
:root {
    --color-white: #ffffff;
    --color-pink: #e8a0b4;
    --color-pink-dark: #d4899e;
    --color-blue: #dcc7a6;
    --color-blue-dark: #9d865a;
    --color-gray-light: #6b7280;
    --color-gray-medium: #9ca3af;
    --color-gray-dark: #374151;
    --color-bg: #ffffff;

    /* Lady Pilates Theme (gold) */
    --color-lady-primary: #dcc7a6;
    --color-lady-secondary: #9d865a;

    /* Mommy & Baby Theme (pink) */
    --color-mommy-primary: #e8a0b4;
    --color-mommy-secondary: #d4899e;

    --font-body: 'Figtree', sans-serif;
    --font-heading: 'Meow Script', cursive;

    --container-width: 1200px;
    --header-height: 140px;
}

/* Mommy & Baby Theme Override */
.theme-mommy {
    --color-blue: var(--color-mommy-primary);
    --color-blue-dark: var(--color-mommy-secondary);
    --color-pink: var(--color-mommy-primary);
    --color-pink-dark: var(--color-mommy-secondary);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* Online/Fizic Toggle */
.plan-toggle {
    display: flex;
    background: #f3f4f6;
    border-radius: 50px;
    padding: 4px;
    margin: 0 auto 2rem;
    max-width: 320px;
}

.plan-toggle-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-toggle-btn.active {
    background: var(--color-blue-dark);
    color: var(--color-white);
    box-shadow: 0 2px 10px rgba(157, 134, 90, 0.3);
}

/* Online/Fizic Badges */
.badge-online {
    display: inline-block;
    background-color: #eff6ff;
    color: #1e40af;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
}

.badge-fizic {
    display: inline-block;
    background-color: #f0fdf4;
    color: #166534;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
}

/* Welcome Discount Banner */
.welcome-discount-banner {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: white;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Button outline style */
.btn-outline {
    background: transparent;
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
}

.btn-outline:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Filled header button */
.btn-header-filled {
    display: inline-block;
    background-color: var(--color-blue-dark);
    color: var(--color-white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-header-filled:hover {
    background-color: var(--color-blue);
    transform: translateY(-1px);
    text-decoration: none;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-gray-light);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2 {
    font-family: var(--font-heading);
    color: var(--color-gray-medium);
    font-weight: 400;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
}

h3, h4 {
    font-family: var(--font-body);
    font-weight: 900;
    color: var(--color-gray-medium);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 134, 90, 0.4);
}

/* ===== SPLIT LANDING PAGE ===== */
.landing-page {
    overflow: hidden;
}

.split-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.split-side {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.split-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.split-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.4s ease;
}

.split-side:hover .split-bg img {
    transform: scale(1.05);
}

.split-side:hover .split-bg::after {
    background: rgba(0, 0, 0, 0.2);
}

.split-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
}

.split-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.split-side:hover .split-logo {
    transform: scale(1.1);
}

.split-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.split-content p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.split-cta {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid var(--color-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.split-left:hover .split-cta {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
}

.split-right:hover .split-cta {
    background-color: var(--color-pink);
    border-color: var(--color-pink);
}

/* Split Landing Responsive */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }

    .split-side {
        width: 100%;
        height: 50vh;
    }

    .split-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .split-content h2 {
        font-size: 2.5rem;
    }

    .split-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .split-cta {
        padding: 10px 30px;
        font-size: 0.8rem;
    }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--color-white);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-list a {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-blue-dark);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-blue-dark);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Header actions (CONTUL MEU + hamburger) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Hide CONTUL MEU inside nav on desktop (shown in header-actions) */
.nav-account-mobile {
    display: none;
}

.nav-social {
    display: none;
}

.social-link {
    color: var(--color-gray-light);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-blue);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-gray-dark);
    transition: all 0.3s ease;
}

.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(5px, -5px);
}

/* ===== Lady Schedule Section ===== */
.lady-schedule {
    padding: 6rem 0;
    background: linear-gradient(135deg, #faf6ef 0%, #fff 100%);
}

.lady-schedule-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(157, 134, 90, 0.12);
}

.lady-schedule-card h2 {
    margin-bottom: 2rem;
}

.lady-schedule-times {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.lady-schedule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.lady-day {
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-blue-dark);
}

.lady-time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-dark);
}

.lady-schedule-note {
    font-size: 0.9rem;
    color: var(--color-gray-light);
}

@media (max-width: 768px) {
    .lady-schedule-times {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .lady-schedule-card {
        padding: 2rem;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 70%);
}

.hero-content {
    position: relative;
    max-width: 600px;
    padding: 2rem;
    margin-left: 5%;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--color-gray-medium);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-gray-light);
}

/* ===== Benefits Section ===== */
.benefits {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    margin-bottom: 1.5rem;
    color: var(--color-blue);
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Mommy & Baby Section ===== */
.mommy-baby {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.mommy-baby-image {
    position: relative;
    overflow: hidden;
}

.mommy-baby-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mommy-baby-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem;
    background-color: #fdf8f9;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-pink);
    margin-bottom: 1rem;
}

.mommy-baby-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.mommy-baby-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 450px;
}

/* ===== Schedule Section ===== */
.schedule {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.25rem;
}

.schedule-card {
    background-color: #f9fafb;
    border-radius: 16px;
    padding: 2rem 1.25rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.schedule-day {
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray-medium);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-type {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    border-radius: 6px;
}

.schedule-type.lady {
    background-color: rgba(157, 134, 90, 0.15);
    color: var(--color-blue-dark);
}

.schedule-type.mommy {
    background-color: rgba(232, 160, 180, 0.15);
    color: var(--color-pink-dark);
}

.schedule-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-medium);
}

.schedule-status {
    color: #d1d5db;
    font-size: 1.75rem;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

.gallery-item-wide {
    grid-column: span 3;
    aspect-ratio: 3/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-blue-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.theme-mommy .footer {
    background-color: var(--color-mommy-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 300px;
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-social .social-links {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    transition: background-color 0.3s ease;
}

.footer-social .social-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }


    .logo img {
        height: 50px;
    }

    .hamburger {
        display: flex;
    }

    /* On mobile: hide CONTUL MEU next to hamburger, show it inside nav drawer instead */
    .header-actions .btn-header-filled {
        display: none;
    }

    .nav-account-mobile {
        display: list-item;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .nav-list a {
        font-size: 1.1rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-image::after {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.5) 100%);
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        padding: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mommy-baby {
        grid-template-columns: 1fr;
    }

    .mommy-baby-content {
        padding: 3rem 2rem;
        text-align: center;
        align-items: center;
    }

    .mommy-baby-content h2 {
        text-align: center;
    }

    .mommy-baby-content p {
        max-width: 100%;
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-wide {
        grid-column: span 2;
        aspect-ratio: 2/1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-contact ul {
        align-items: center;
    }

    .footer-social .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.pricing-subtitle {
    text-align: center;
    color: var(--color-gray-light);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 1.1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-gray-medium);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-blue);
}

.price-period {
    font-size: 1rem;
    color: var(--color-gray-light);
}

.price-original {
    text-decoration: line-through;
    color: var(--color-gray-light);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--color-gray-light);
}

.pricing-features li svg {
    color: var(--color-blue);
    flex-shrink: 0;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--color-pink);
    font-weight: 500;
}

/* Pricing Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ===== Flash Messages ===== */
.flash-messages {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 0;
}

.flash-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.flash-success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.flash-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.flash-warning {
    background-color: #fffbeb;
    color: #92400e;
    border: 1px solid #fcd34d;
}

.flash-info {
    background-color: #eff6ff;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.flash-icon {
    flex-shrink: 0;
}

.flash-text {
    flex: 1;
}

.flash-close {
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    padding: 0;
}

.flash-close:hover {
    opacity: 1;
}

/* ===== Auth Navigation Links ===== */
.nav-login,
.nav-dashboard {
    color: var(--color-blue) !important;
}

.nav-login::after,
.nav-dashboard::after {
    background-color: var(--color-blue) !important;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray-medium);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background-color: var(--color-white);
    color: var(--color-gray-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(157, 134, 90, 0.2);
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-control.is-invalid {
    border-color: #ef4444;
}

.form-error {
    font-size: 0.85rem;
    color: #ef4444;
    margin-top: 0.5rem;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--color-gray-light);
    margin-top: 0.5rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-blue);
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--color-gray-light);
    cursor: pointer;
}

/* ===== Auth Pages ===== */
.auth-page {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background-color: #f9fafb;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--color-gray-light);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.95rem;
    color: var(--color-gray-light);
}

.auth-footer a {
    color: var(--color-blue);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    color: var(--color-gray-light);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e5e7eb;
}

/* ===== Badge Components ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.badge-success {
    background-color: #ecfdf5;
    color: #065f46;
}

.badge-warning {
    background-color: #fffbeb;
    color: #92400e;
}

.badge-danger {
    background-color: #fef2f2;
    color: #991b1b;
}

.badge-info {
    background-color: #eff6ff;
    color: #1e40af;
}

.badge-secondary {
    background-color: #f3f4f6;
    color: #4b5563;
}

.badge-bronze {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-silver {
    background-color: #f3f4f6;
    color: #4b5563;
}

.badge-gold {
    background-color: #fef3c7;
    color: #b45309;
}
