/**
 * Landoro Main Page Styles
 * Page-specific styles for public pages (index, about, contact)
 * Works with header-new.php which provides base styles and CSS variables
 * Version: 2.0
 */

/* ============================================
   ADDITIONAL VARIABLES (extend header's vars)
   ============================================ */
:root {
    --section-padding: 6rem;
    --card-radius: 20px;
    --gold-hover: #E6C547;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    color: var(--text-primary);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

[data-theme="light"] .hero {
    background: linear-gradient(135deg, #1C2C4C 0%, #2A3F63 50%, #1C2C4C 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(100, 210, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeUp 0.8s ease;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeUp 0.8s ease 0.1s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-buttons a.btn-primary,
.hero-buttons a.btn-secondary {
    width: 220px;
    height: 56px;
    padding: 0;
    margin: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
}

.hero-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .hero-stats .stat-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

[data-theme="light"] .hero-stats .stat-label {
    color: #1C2C4C;
}

/* ============================================
   BUTTONS (page-specific)
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    color: #000;
    border: 1px solid transparent;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    min-width: 200px;
    box-sizing: border-box;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    color: #000;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-sizing: border-box;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-white {
    background: #ffffff;
    color: #1C2C4C;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    background: #f0f0f5;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: #1C2C4C;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-alt {
    background: var(--glass-bg);
}

.section-dark {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .section-dark {
    background: linear-gradient(135deg, #1C2C4C 0%, #2A3F63 50%, #1C2C4C 100%);
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(100, 210, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-dark .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-dark .section-title h2 {
    background: linear-gradient(135deg, #ffffff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-subtle);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: transform 0.4s ease;
    color: #000;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -1rem;
    width: calc(100% - 70px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.3;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-subtle);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    color: #000;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   STORY / CONTENT SECTION
   ============================================ */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.story-content p {
    margin-bottom: 2rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    background: var(--glass-bg);
    border: 1px solid var(--gold-subtle);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    border-radius: 16px;
    margin: 3rem 0;
    font-style: italic;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.2rem;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.professional-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ============================================
   FUTURE SECTION
   ============================================ */
.future-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.future-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid3" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid3)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: var(--card-radius);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
    align-items: start;
}

.contact-form {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--card-radius);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-subtle);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
    accent-color: var(--gold);
}

.recaptcha-group {
    margin-bottom: 1.5rem;
}

.recaptcha-group label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
    font-size: 0.95rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    color: #000;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-submit:disabled {
    background: var(--text-tertiary);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(52, 199, 89, 0.15);
    border: 1px solid rgba(52, 199, 89, 0.3);
    color: var(--success);
}

.form-message.error {
    background: rgba(255, 69, 58, 0.15);
    border: 1px solid rgba(255, 69, 58, 0.3);
    color: var(--danger);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-subtle);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    color: #000;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.contact-info-item h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   PAGE HEADER (for sub-pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: var(--card-radius);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .page-header {
    background: linear-gradient(135deg, #1C2C4C 0%, #2A3F63 50%, #1C2C4C 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-content {
    position: relative;
    z-index: 1;
}

.page-title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-title-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ============================================
   DASHBOARD CONTAINER (for contact page)
   ============================================ */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */
.breadcrumb-nav {
    margin-bottom: 1.5rem;
}

.breadcrumb-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.breadcrumb-link:hover {
    background: var(--glass-hover);
    color: var(--gold);
}

.breadcrumb-icon {
    font-size: 1rem;
}

.breadcrumb-separator {
    margin: 0 0.75rem;
    color: var(--text-tertiary);
    font-weight: 300;
    font-size: 1.1rem;
}

.breadcrumb-current {
    color: var(--text-secondary);
    font-weight: 600;
}

/* ============================================
   DASHBOARD MOCKUP
   ============================================ */
.dashboard-preview {
    padding: var(--section-padding) 0;
}

.dashboard-mockup {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-tertiary);
}

.mockup-dot:first-child { background: #ff5f56; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #27ca3f; }

.mockup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mockup-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.mockup-card h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mockup-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-icon {
    font-size: 2rem;
}

.cookie-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.cookie-btn.accept {
    background: var(--gold);
    color: #000;
    border: none;
}

.cookie-btn.accept:hover {
    background: var(--gold-hover);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.cookie-btn.decline:hover {
    background: var(--glass-hover);
    border-color: var(--text-tertiary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeUp 0.6s ease-out;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons a.btn-primary,
    .hero-buttons a.btn-secondary {
        width: 280px;
        max-width: 100%;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: -1;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-info-item {
        flex: 1;
        min-width: 150px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-white {
        width: 100%;
        max-width: 280px;
    }
    
    .mockup-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 140px;
    }
    
    .page-title-section h1 {
        font-size: 2rem;
    }
    
    .dashboard-container {
        padding: 1rem;
    }
    
    .contact-section {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .value-card {
        padding: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .contact-info-item {
        min-width: auto;
    }
    
    .professional-badge {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    color: #ffffff;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .blog-hero {
    background: linear-gradient(135deg, #1C2C4C 0%, #2A3F63 50%, #1C2C4C 100%);
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(100, 210, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Blog Main Content */
.blog-main {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.sidebar-widget {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .sidebar-widget {
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.widget-title svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
}

.search-form {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

.search-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 0.95rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.search-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    color: #000;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tag {
    background: var(--glass-bg);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.filter-tag:hover {
    background: var(--gold-subtle);
    color: var(--gold);
    border-color: var(--gold);
}

.filter-tag.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.clear-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.clear-filters:hover {
    color: #B8941F;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quick-link:hover {
    color: var(--gold);
    background: var(--glass-bg);
}

.quick-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* Blog Posts Layout */
.latest-article {
    margin-bottom: 3rem;
}

.blog-post-large {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

[data-theme="light"] .blog-post-large {
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.blog-post-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--gold-subtle);
}

.blog-post-large.featured {
    border: 2px solid var(--gold);
}

.blog-post-large.featured::before {
    content: '★ Featured';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: #000;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.post-image-large {
    height: 300px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    position: relative;
    overflow: hidden;
}

.post-image-large svg {
    width: 64px;
    height: 64px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    opacity: 0.6;
}

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

.post-content-large {
    padding: 2.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.post-category {
    padding: 0.3rem 0.85rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.8rem;
}

.post-date,
.post-reading-time {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.post-date svg,
.post-reading-time svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.latest-badge {
    background: var(--deep-blue);
    color: #ffffff;
    padding: 0.3rem 0.85rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

[data-theme="light"] .latest-badge {
    background: #1C2C4C;
}

.post-title-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-title-large a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.post-title-large a:hover {
    color: var(--gold);
}

.post-excerpt-large {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}

/* Small Articles Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-small {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

[data-theme="light"] .blog-post-small {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.blog-post-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-color: var(--gold-subtle);
}

.blog-post-small.featured {
    border: 2px solid var(--gold);
}

.blog-post-small.featured::before {
    content: '★';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--gold);
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    z-index: 2;
}

.post-image-small {
    height: 160px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    position: relative;
    overflow: hidden;
}

.post-image-small svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    opacity: 0.6;
}

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

.post-content-small {
    padding: 1.5rem;
}

.post-meta-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.post-category-small {
    padding: 0.25rem 0.65rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.75rem;
}

.post-date-small {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
}

.post-date-small svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.post-title-small {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-title-small a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.post-title-small a:hover {
    color: var(--gold);
}

.post-excerpt-small {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.read-more-small {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more-small:hover {
    gap: 0.75rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.pagination a {
    background: var(--glass-bg);
    color: var(--text-primary);
}

[data-theme="light"] .pagination a {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pagination a:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.pagination .current {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.pagination .disabled {
    background: var(--glass-bg);
    color: var(--text-tertiary);
    cursor: not-allowed;
}

/* Active Filters Display */
.active-filters {
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

[data-theme="light"] .active-filters {
    background: #ffffff;
}

.active-filters h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.active-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.active-filter-tag {
    background: var(--gold);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.active-filter-tag .remove {
    cursor: pointer;
    font-weight: bold;
    opacity: 0.7;
    font-size: 1.1rem;
    line-height: 1;
}

.active-filter-tag .remove:hover {
    opacity: 1;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

[data-theme="light"] .no-results {
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.875rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

/* ============================================
   BLOG POST PAGE STYLES
   ============================================ */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1C2C4C;
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

[data-theme="dark"] .breadcrumb-link {
    color: var(--text-primary);
}

.breadcrumb-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--gold);
}

[data-theme="dark"] .breadcrumb-link:hover {
    background: var(--glass-bg);
}

.breadcrumb-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.breadcrumb-separator {
    margin: 0 0.25rem;
    color: #6b7280;
    font-weight: 400;
    font-size: 1rem;
}

[data-theme="dark"] .breadcrumb-separator {
    color: var(--text-tertiary);
}

.breadcrumb-current {
    color: #374151;
    font-weight: 600;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[data-theme="dark"] .breadcrumb-current {
    color: var(--text-secondary);
}

.breadcrumb-item.active {
    pointer-events: none;
}

.blog-post-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumb Navigation */
.page-breadcrumb {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 0.9rem;
}

[data-theme="light"] .page-breadcrumb {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-breadcrumb a:hover {
    opacity: 0.8;
}

.page-breadcrumb span {
    color: var(--text-secondary);
    margin: 0 0.5rem;
}

.page-breadcrumb .breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500;
}

/* Article Container */
.article-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

[data-theme="light"] .article-container {
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.article-header {
    padding: 2rem 2.5rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.article-category {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.85rem;
}

.article-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Image */
.article-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    overflow: hidden;
}

.article-image svg {
    width: 60px;
    height: 60px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    opacity: 0.5;
}

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

/* Article Content */
.article-content {
    padding: 2rem 2.5rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.article-content h1,
.article-content h2,
.article-content h3 {
    color: var(--text-primary);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.article-content h1 {
    font-size: 1.75rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.4rem;
}

.article-content h2 {
    font-size: 1.5rem;
    padding-top: 0.75rem;
    border-top: 2px solid var(--gold-subtle);
}

.article-content h3 {
    font-size: 1.25rem;
}

.article-content p {
    margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0;
    padding-left: 1.75rem;
}

.article-content li {
    margin-bottom: 0.35rem;
}

.article-content blockquote {
    background: var(--gold-subtle);
    border-left: 4px solid var(--gold);
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    color: var(--text-primary);
}

.article-content code {
    background: var(--glass-bg);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.article-content pre {
    background: #1a1a2e;
    color: #ffffff;
    padding: 1.25rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.25rem 0;
}

.article-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.article-content a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.article-content a:hover {
    text-decoration: underline;
}

/* Article Footer */
.article-footer {
    padding: 1.5rem 2.5rem 2rem;
    border-top: 1px solid var(--glass-border);
}

.article-tags {
    margin-bottom: 1.5rem;
}

.article-tags h4,
.article-share h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-tags h4 svg,
.article-share h4 svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--glass-bg);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.tag:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.facebook { background: #4267b2; }
.share-btn.email { background: var(--text-tertiary); }

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Comments Section */
.comments-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

[data-theme="light"] .comments-section {
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.comments-header {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
}

.comments-header h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comments-header h3 svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
}

.comments-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.comment-form {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
}

.comment-form h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.comment-success {
    background: rgba(52, 199, 89, 0.15);
    color: var(--success);
    border: 1px solid rgba(52, 199, 89, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.comment-error {
    background: rgba(255, 69, 58, 0.15);
    color: var(--danger);
    border: 1px solid rgba(255, 69, 58, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.comments-list {
    margin-top: 2rem;
}

.comment {
    background: var(--bg-secondary);
    padding: 1.25rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--gold);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.comment-author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.comment-author a {
    color: var(--gold);
    text-decoration: none;
}

.comment-date {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.comment-content {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.reply-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
    font-family: 'Outfit', sans-serif;
}

.comment-replies {
    margin-left: 1.5rem;
    margin-top: 0.75rem;
    border-left: 3px solid var(--gold-subtle);
    padding-left: 0.75rem;
}

.reply-form {
    display: none;
    background: var(--bg-primary);
    padding: 1.25rem;
    border-radius: 10px;
    margin-top: 0.75rem;
    border: 1px solid var(--gold-subtle);
}

.reply-form.active {
    display: block;
}

.reply-form h5 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

/* Related Posts */
.related-posts {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

[data-theme="light"] .related-posts {
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.related-posts h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.related-posts h3 svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.related-post {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-post:hover {
    transform: translateY(-3px);
    border-color: var(--gold-subtle);
}

.related-post-image {
    height: 110px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.related-post-image svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    opacity: 0.5;
}

.related-post-content {
    padding: 1rem;
}

.related-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    line-height: 1.35;
}

.related-post-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--gold);
}

.related-post-meta {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 4rem 0 3rem;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-hero p {
        font-size: 1.1rem;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .post-content-large {
        padding: 1.5rem;
    }

    .post-title-large {
        font-size: 1.35rem;
    }

    .blog-container {
        padding: 0 1rem;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .blog-post-container {
        padding: 1rem;
    }

    .article-header {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.6rem;
    }

    .article-content {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .article-footer {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .comment-replies {
        margin-left: 0.75rem;
    }

    .share-buttons {
        justify-content: center;
    }

    .comments-section,
    .related-posts {
        padding: 1.25rem;
    }

    .article-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 3rem 0 2rem;
    }

    .blog-main {
        padding: 2rem 0;
    }

    .sidebar-widget {
        padding: 1.25rem;
    }

    .post-content-large {
        padding: 1.25rem;
    }

    .post-content-small {
        padding: 1rem;
    }

    .article-title {
        font-size: 1.4rem;
    }

    .article-content h2 {
        font-size: 1.25rem;
    }

    .tag-list {
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LOGIN & SIGNUP PAGES - Glassmorphism Theme
   ============================================ */

/* Auth Pages - Main Container */
.auth-page-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem 1.5rem;
    min-height: calc(100vh - 200px);
}

/* Auth Breadcrumb Navigation */
.auth-breadcrumb-nav {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.auth-breadcrumb-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .auth-breadcrumb-container {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.auth-breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.auth-breadcrumb-item {
    display: flex;
    align-items: center;
}

.auth-breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.auth-breadcrumb-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-hover);
}

.auth-breadcrumb-separator {
    margin: 0 0.75rem;
    color: var(--text-tertiary);
    font-weight: 300;
    font-size: 1.1rem;
}

.auth-breadcrumb-current {
    color: var(--text-secondary);
    font-weight: 600;
}

.auth-breadcrumb-icon {
    font-size: 1rem;
}

/* Auth Container - Glassmorphism Card */
.auth-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .auth-container {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

/* Auth Content Wrapper */
.auth-content-wrapper {
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
}

/* Auth Page Logo/Header */
.auth-page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .auth-page-header h1 {
    background: linear-gradient(135deg, #1C2C4C 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-page-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Auth Form Styling */
.auth-form-group {
    margin-bottom: 1.5rem;
}

.auth-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.auth-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
}

[data-theme="light"] .auth-form-input {
    background: #f8f9fa;
    border-color: #e5e7eb;
}

.auth-form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: var(--bg-primary);
}

[data-theme="light"] .auth-form-input:focus {
    background: #ffffff;
}

.auth-form-input::placeholder {
    color: var(--text-tertiary);
}

/* Form Help Text */
.auth-form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* Form Row (Two Columns) */
.auth-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Auth Checkbox */
.auth-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.auth-form-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--gold);
    margin-top: 0.1rem;
    cursor: pointer;
    flex-shrink: 0;
}

.auth-form-checkbox label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.5;
}

.auth-form-checkbox label a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-form-checkbox label a:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

/* Auth Buttons */
.auth-btn-primary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1rem auto;
    display: block;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1.2;
    border: none;
    background: linear-gradient(135deg, var(--gold) 0%, #B8941F 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-family: 'Outfit', sans-serif;
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.auth-btn-secondary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1.2;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-family: 'Outfit', sans-serif;
}

.auth-btn-secondary:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

/* Form Divider */
.auth-form-divider {
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Form Switch (Already have account?) */
.auth-form-switch {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.auth-form-switch p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.auth-form-switch a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-form-switch a:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

/* Auth Alerts */
.auth-alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.auth-alert-success {
    background: rgba(52, 199, 89, 0.15);
    color: var(--success);
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.auth-alert-error {
    background: rgba(255, 69, 58, 0.15);
    color: var(--danger);
    border: 1px solid rgba(255, 69, 58, 0.3);
}

/* User Type Selector (Signup) */
.auth-user-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.auth-user-type-option {
    background: var(--bg-secondary);
    border: 2px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .auth-user-type-option {
    background: #f8f9fa;
    border-color: #e5e7eb;
}

.auth-user-type-option:hover {
    border-color: var(--gold-subtle);
    transform: translateY(-2px);
}

.auth-user-type-option.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.auth-user-type-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.auth-user-type-option.active::before {
    transform: scaleX(1);
}

.auth-user-type-option .icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.auth-user-type-option h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.auth-user-type-option p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Conditional Forms */
.auth-conditional-form {
    display: none;
}

.auth-conditional-form.active {
    display: block;
}

/* Waiting List Message Header */
.auth-waiting-message {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--gold-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.auth-waiting-message h2 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.auth-waiting-message p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Auth Support Footer */
.auth-support-footer {
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.auth-support-footer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.auth-support-footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-support-footer a:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

/* Success Message (Waiting List) */
.auth-success-message {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.15) 0%, rgba(52, 199, 89, 0.05) 100%);
    border: 1px solid rgba(52, 199, 89, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.auth-success-message h3 {
    color: var(--success);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.auth-success-message p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.auth-success-message strong {
    color: var(--text-primary);
}

/* Auth Page Responsive */
@media (max-width: 768px) {
    .auth-page-main {
        padding: 0 1rem 1.5rem 1rem;
    }
    
    .auth-breadcrumb-container {
        padding: 0.75rem 1rem;
    }
    
    .auth-breadcrumb {
        font-size: 0.85rem;
    }
    
    .auth-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .auth-content-wrapper {
        max-width: 90%;
    }
    
    .auth-page-header h1 {
        font-size: 1.75rem;
    }
    
    .auth-form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-user-type-selector {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .auth-user-type-option {
        padding: 1rem 0.75rem;
    }
    
    .auth-btn-primary,
    .auth-btn-secondary {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .auth-content-wrapper {
        max-width: 100%;
    }
    
    .auth-container {
        padding: 1.25rem;
    }
    
    .auth-page-header h1 {
        font-size: 1.5rem;
    }
    
    .auth-page-header p {
        font-size: 0.9rem;
    }
    
    .auth-form-input {
        padding: 0.75rem 0.875rem;
    }
}