:root {
    --color-bg: #1B0B2A; /* Deep Purple */
    --color-bg-alt: #130620; /* Darker Purple / Soft Black */
    --color-accent: #D4AF37; /* Gold */
    --color-accent-hover: #F2CC5D;
    --color-text: #F5F5F5;
    --color-text-muted: #B3A8C4;
    --font-title: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, .logo {
    font-family: var(--font-title);
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    line-height: 1.2;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-alt);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.tarot-card svg {
    width: 100px;
    height: 150px;
    animation: pulseMystic 1.5s infinite, cardReveal 1s ease-out forwards;
}

@keyframes pulseMystic {
    0% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2)); }
    50% { filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8)); }
    100% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2)); }
}

@keyframes cardReveal {
    0% { transform: translateY(50px) scale(0.8) rotate(5deg); opacity: 0; }
    100% { transform: translateY(0) scale(1) rotate(0); opacity: 1; }
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(27, 11, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.lang-switch button {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 5px;
}

.lang-switch button:hover, .lang-switch button.active {
    color: var(--color-accent);
    font-weight: 500;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.mystic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* --- Buttons --- */
.cta-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    font-family: var(--font-title);
    font-size: 1.3rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-weight: 700;
    text-align: center;
}

.cta-btn.primary {
    background-color: var(--color-accent);
    color: var(--color-bg-alt);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-btn.primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.cta-btn.secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.cta-btn.secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Animations */
@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.pulse-gold {
    animation: pulseGlow 2s infinite;
    background: linear-gradient(135deg, var(--color-accent) 0%, #B8860B 100%) !important;
    color: #1B0B2A !important;
    border: none !important;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.2s;
}

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

.cta-subtext {
    font-size: 0.95rem;
    color: #FF5A5A;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 90, 90, 0.1);
    padding: 5px 15px;
    border-radius: 4px;
}

/* --- Sections Base --- */
section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* --- About --- */
.about {
    display: flex;
    justify-content: center;
    background-color: var(--color-bg);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1000px;
    gap: 4rem;
}

.about-image-wrapper {
    position: relative;
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.about-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 3px solid var(--color-accent);
}

.mystic-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 310px;
    height: 310px;
    border: 1px dashed rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    z-index: 1;
    animation: spin 30s linear infinite;
}

@keyframes spin { 
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); } 
}

.about-text {
    flex: 1.5;
    min-width: 300px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.about-name {
    font-size: 2.5rem;
    color: var(--color-text);
    font-family: var(--font-title);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.1;
    display: block;
}

.about-highlight {
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-desc p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* --- Services --- */
.services {
    background-color: var(--color-bg-alt);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--color-text-muted);
}

/* --- Courses --- */
.courses {
    text-align: center;
    position: relative;
}

.courses::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.courses-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.courses p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.course-card {
    display: flex;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3rem;
    text-align: left;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.course-image {
    flex: 1.2;
    min-height: 400px;
    background: #2A1035;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-details {
    flex: 1;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(27, 11, 42, 0.95), rgba(42, 16, 53, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-details h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    text-transform: uppercase;
}

.course-info-box {
    background: rgba(255, 235, 175, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    position: relative;
}

.course-info-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    opacity: 0.1;
    pointer-events: none;
}

.course-infoList {
    list-style: none;
    margin: 0;
}

.course-infoList li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.course-infoList .icon {
    font-size: 1.3rem;
    margin-right: 1rem;
}

.course-description {
    margin-bottom: 2.5rem;
}

.course-intro {
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem !important;
}

.course-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.course-features li {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.course-extra {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 1.5rem;
}

.course-extra p {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
    font-style: italic;
}

.course-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.scarcity-bar {
    background: rgba(255, 90, 90, 0.15);
    color: #FF5A5A;
    padding: 0.6rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 1px solid rgba(255, 90, 90, 0.3);
}

/* Navbar Improvements */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(27, 11, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 2001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

/* WhatsApp Refinement (Official Look) */
/* WhatsApp Refinement (Official Look) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366; /* Official WhatsApp Green */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20BA5A;
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
    fill: white;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 3000;
        position: relative;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%; /* Cover full width on mobile for better experience */
        height: 100vh;
        background: rgba(27, 11, 42, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        z-index: 2500;
        visibility: hidden;
        display: flex !important;
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .nav-links a {
        font-size: 2rem;
        margin: 1.5rem 0;
        font-family: var(--font-title);
    }

    .navbar {
        padding: 1rem 5%; /* Thinner on mobile */
    }

    .lang-switch {
        margin-right: 4rem; /* Give space for hamburger */
    }

    /* Animation for Hamburger Menu */
    .hamburger.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }
    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }
}

/* Retiros Styles */
.retreat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.retreat-image {
    flex: 1.2;
    min-height: 400px;
}

.retreat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.retreat-details {
    flex: 1;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(27, 11, 42, 0.95), rgba(42, 16, 53, 0.95));
}

.retreat-details h3 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.retreat-info-list {
    list-style: none;
    margin-bottom: 2rem;
}

.retreat-info-list li {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.retreat-info-list li span {
    color: var(--color-accent);
}

/* Secondary Pages Styling */
.page-header {
    background: linear-gradient(rgba(27, 11, 42, 0.8), rgba(27, 11, 42, 0.8));
    background-size: cover;
    background-position: center;
    padding: 6rem 5% 2.5rem;
    text-align: center;
}

.header-content h1 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.header-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .page-header {
        padding: 5rem 5% 2rem;
    }
    .header-content h1 {
        font-size: 2rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.secondary-page .navbar {
    background: rgba(27, 11, 42, 0.95);
}

.retreat-action .cta-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Retreats */
@media (max-width: 992px) {
    .retreat-card, .course-card {
        flex-direction: column;
    }
    
    .retreat-image, .course-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .retreat-details h3 {
        font-size: 1.8rem;
    }
}

/* Hide text on very small screens to keep it cleaner */
@media (max-width: 480px) {
    .whatsapp-text {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
    }
    .whatsapp-float svg {
        margin-right: 0;
    }
}

/* --- Contact Form --- */
.contact {
    background-color: var(--color-bg-alt);
    text-align: center;
}

.contact p {
    margin-bottom: 3rem;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rgpd-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.rgpd-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    accent-color: var(--color-accent);
    cursor: pointer;
}

.rgpd-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.rgpd-label a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: var(--transition);
}

.rgpd-label a:hover {
    color: var(--color-text);
}

/* Specific Course Styling from Image */
.course-card {
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.course-info-box {
    background: #fdf5e6;
    color: #2a1810;
    border: none;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.4);
    transform: rotate(-1deg);
    padding: 2rem;
    border-radius: 2px;
    position: relative;
    border-left: 4px solid var(--color-accent);
}

.course-info-box::after {
    content: '';
    position: absolute;
    bottom: 5px; right: 5px;
    width: 30px; height: 30px;
    background: linear-gradient(135deg, transparent 50%, rgba(212, 175, 55, 0.2) 50%);
}

.course-info-box * {
    color: #2a1810 !important;
}

.course-infoList li {
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-infoList .icon {
    font-size: 1.4rem;
    filter: drop-shadow(1px 1px 0 rgba(0,0,0,0.1));
}

.scarcity-bar {
    background: linear-gradient(90deg, #8A2BE2, #4B0082);
    color: white;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.submit-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-title);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-weight: 600;
    background-color: var(--color-accent);
    color: var(--color-bg-alt);
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(179, 168, 196, 0.5);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #0A0410; /* Extra dark base */
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 1rem 5%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links {
        display: none; /* Simplificação mobile para conversão */
    }

    .logo {
        font-size: 1.4rem;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 5%;
        height: auto;
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-top: 1rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* Generic Sections */
    section {
        padding: 4rem 5%;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* About Section */
    .about-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-image {
        width: 200px;
        height: 200px;
    }

    .mystic-frame {
        width: 220px;
        height: 220px;
    }

    /* Course Card (Critical Fix) */
    .course-card {
        flex-direction: column;
        margin-top: 2rem;
    }

    .course-image {
        height: 220px; /* Fixed visual height for header style */
    }

    .course-details {
        padding: 1.5rem;
    }

    .course-details h3 {
        font-size: 1.8rem;
        text-align: center;
    }

    .course-info-box {
        transform: rotate(0); /* Remove rotation to prevent horizontal spill */
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .course-infoList li {
        font-size: 1rem;
    }

    .course-features li {
        font-size: 1rem;
    }

    .scarcity-bar {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

}

/* Fix for extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* --- Form Feedback --- */
.form-feedback {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-accent);
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
}

.form-feedback.hidden {
    display: none;
}

.form-feedback.error {
    border-color: #FF5A5A;
    color: #FF5A5A;
}

.success-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.form-feedback h3 {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    text-align: left;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.error-msg {
    display: block;
    color: #FF5A5A;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    text-align: left;
    min-height: 1.2rem;
}

input.invalid, textarea.invalid {
    border-color: #FF5A5A !important;
    background: rgba(255, 90, 90, 0.05) !important;
}

/* --- Form Inputs Enhancements --- */
select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

select option {
    background-color: #0a0a0a;
}

/* --- Choice Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    display: none;
    opacity: 0;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid var(--color-accent);
    padding: 3rem 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
    animation: modalSlide 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

.modal-content h3 {
    color: var(--color-accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.modal-content p {
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.3s;
}

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

.gold-btn {
    background: var(--color-accent);
    color: #000;
    font-weight: 600;
}

.gold-btn:hover {
    background: #e5c05b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

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