/*
Theme Name: Diamond Pulse Team
Theme URI: https://diamondpulseteam.com
Author: Kreativoldal.hu
Description: Luxus, mélyzöld és arany dizájn lüktető energiával.
Version: 4.0.0
*/

/* ==========================================================================
   Variables - Luxury Deep Green & Gold
   ========================================================================== */
:root {
    /* Colors */
    --gold-primary: #c9a227;
    --gold-light: #e8d48b;
    --gold-dark: #8c701b;
    --green-deep: #02120e;
    --green-emerald: #05261e;
    --bg-dark: #000000;
    --text-white: #ffffff;
    --text-gold: #e8d48b;
    --text-muted: rgba(255, 255, 255, 0.7);
    --primary-white: #ffffff;
    --primary-dark: #1a1a1a;
    --gray-light: #f4f4f4;
    --gray-medium: #999;
    --gray-border: rgba(255, 255, 255, 0.15);
    --accent-gold: #c9a227;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #8c701b 0%, #c9a227 50%, #f9e6a5 100%);
    --gradient-bg: radial-gradient(circle at 50% 0%, #0a2e23 0%, #000000 80%);
    --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

    /* Shadows & Glows */
    --shadow-gold: 0 0 20px rgba(201, 162, 39, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --glow-text: 0 0 10px rgba(201, 162, 39, 0.5);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-card: 16px;
    --radius-btn: 50px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    background-image: var(--gradient-bg);
    background-attachment: fixed;
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 span,
h2 span,
.text-gradient {
    color: var(--gold-primary);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-light {
    color: #000;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.desktop-only {
    display: block;
}

/* ==========================================================================
   Animations - "Pulse" Energy
   ========================================================================== */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(201, 162, 39, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes ekg-sweep {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    10% {
        opacity: 1;
    }
    50% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
    70% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        clip-path: inset(0 0 0 0);
    }
}

.pulse-animation {
    animation: pulse-gold 2s infinite;
}

.fade-in-up {
    animation: fade-in-up 1s ease-out forwards;
}

/* Scroll animation classes */
.fade-in,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
    transform: translateY(20px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ==========================================================================
   Header - Luxury Glass
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 18, 14, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(2, 18, 14, 0.95);
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(201, 162, 39, 0.3));
    transition: transform 0.3s ease;
    display: block;
}

.site-logo:hover img {
    transform: scale(1.05);
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
    display: block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ==========================================================================
   Hamburger Menu Toggle
   ========================================================================== */
.menu-toggle {
    display: none;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
    position: relative;
    width: 38px;
    height: 38px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    border-color: var(--gold-primary);
    background: rgba(201, 162, 39, 0.15);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--gold-primary);
    margin: 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.menu-toggle.active {
    border-color: var(--gold-primary);
    background: rgba(201, 162, 39, 0.15);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ==========================================================================
   Luxury Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    line-height: normal;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #02120e;
    border: none;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.5);
    color: #000;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::after {
    left: 100%;
}

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

.btn-secondary:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.2);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 200' preserveAspectRatio='none'%3E%3Cpath d='M0 100 L150 100 L180 100 L200 20 L220 180 L240 60 L260 140 L280 100 L320 100 L350 100 L370 20 L390 180 L410 60 L430 140 L450 100 L500 100 L530 100 L550 20 L570 180 L590 60 L610 140 L630 100 L800 100' fill='none' stroke='rgba(201,162,39,0.25)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0;
    animation: ekg-sweep 4s ease-in-out infinite;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -2;
}

.hero-question {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 16px;
    font-style: italic;
}

.hero-tagline {
    color: var(--gold-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

/* Dark Section */
.section-dark {
    background: var(--bg-dark);
    background-image: var(--gradient-bg);
    color: var(--text-white);
}

#ingyenes-anyagok {
    background-image: radial-gradient(circle at 50% 100%, #0a2e23 0%, #000000 80%);
}

/* Light Section (About, Testimonials) */
.section-light {
    background-color: #f4f4f4;
    color: #1a1a1a;
    position: relative;
    z-index: 10;
}

.section-light h2,
.section-light h3,
.section-light h4,
.section-light p,
.section-light .stat-number,
.section-light .testimonial-text,
.section-light .author-info h4 {
    color: #1a1a1a;
}

.section-light .section-header p {
    color: #666;
}

/* Gray Section */
.section-gray {
    background-color: #f9f9f9;
    color: #1a1a1a;
    position: relative;
    z-index: 10;
}

.section-gray h2,
.section-gray h3,
.section-gray h4,
.section-gray p {
    color: #1a1a1a;
}

/* ==========================================================================
   Cards / Glassmorphism
   ========================================================================== */
.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    padding: 30px;
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(201, 162, 39, 0.05);
}

.registration-container.glass-card:hover {
    transform: none;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

/* ==========================================================================
   Stat Cards
   ========================================================================== */
.stat-card {
    border-radius: var(--radius-card);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--gold-primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stat Cards in Light Section */
.section-light .stat-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
    color: #1a1a1a;
}

.section-light .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.section-light .stat-card p {
    color: #666;
}

.section-light .stat-number {
    color: var(--gold-primary);
}

/* ==========================================================================
   Material Cards (Ingyenes Anyagok)
   ========================================================================== */
.material-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.material-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(201, 162, 39, 0.05);
}

.material-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.3));
}

.material-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.material-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.material-link {
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.material-link:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

/* ==========================================================================
   Testimonial Cards
   ========================================================================== */
.testimonial-card {
    border-radius: var(--radius-card);
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-rank {
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 500;
}

/* Testimonial Cards in Light Section */
.section-light .testimonial-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #1a1a1a;
}

.section-light .testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.section-light .testimonial-quote {
    color: var(--gold-primary);
    opacity: 1;
}

.section-light .author-rank {
    color: var(--gold-dark);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.section-cta {
    background: var(--gradient-gold);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: #000;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary-light {
    background: #000;
    color: var(--gold-primary);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary-light:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-3px);
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-section {
    padding: 80px 0;
    background-color: #f4f4f4;
    color: #1a1a1a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-info > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-item p a {
    color: #666;
}

.contact-item p a:hover {
    color: var(--gold-primary);
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* ==========================================================================
   Form Elements
   ========================================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: #fff;
    color: #1a1a1a;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
    outline: none;
}

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

.form-group input[type="checkbox"] {
    margin-right: 8px;
}

/* ==========================================================================
   Registration & Login Pages - Overflow Fix
   ========================================================================== */
.registration-page {
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   Registration Form
   ========================================================================== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.registration-form-wrapper label,
.registration-form-wrapper .form-group label,
.login-form-wrapper label,
.login-form-wrapper .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e8d48b;
    font-weight: 500;
}

.registration-form-wrapper label .required {
    color: #e74c3c;
}

.registration-form-wrapper input[type="text"],
.registration-form-wrapper input[type="email"],
.registration-form-wrapper input[type="password"],
.login-form-wrapper input[type="text"],
.login-form-wrapper input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.registration-form-wrapper input::placeholder,
.login-form-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.registration-form-wrapper input:focus,
.login-form-wrapper input:focus {
    border-color: #c9a227;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.2);
    outline: none;
}

.registration-form-wrapper .form-group,
.login-form-wrapper .form-group {
    margin-bottom: 20px;
    color: #fff;
}

/* Remember Me Checkbox */
.remember-me {
    display: flex;
    align-items: center;
}

.remember-me label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #e8d48b;
    font-size: 0.9rem;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #c9a227;
    cursor: pointer;
}

.field-error {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 6px;
    min-height: 0;
}

.input-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.3) !important;
}

.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
}

.strength-label {
    display: block;
    font-size: 0.8rem;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.form-info {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
}

.btn-full:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.reg-message {
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
}

.reg-success {
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

.reg-success svg {
    color: #c9a227;
    margin-bottom: 15px;
}

.reg-success h3 {
    color: #e8d48b;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.reg-error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.section-gray .faq-item {
    background: #ffffff;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.section-gray .faq-item:hover {
    box-shadow: var(--shadow-md);
}

.section-gray .faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.section-gray .faq-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Section title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h1,
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Footer Layout
   ========================================================================== */
.site-footer {
    background: #050505;
    border-top: 5px solid var(--gold-primary);
    padding: 80px 0 40px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    max-width: 300px;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-column h4 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold-primary);
}

.footer-cta-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--green-dark) !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(201, 162, 39, 0.6);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

/* Avatar Placeholder */
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #000;
    font-weight: bold;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ==========================================================================
   Blog Post Cards (index.php)
   ========================================================================== */
.post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }

    /* Hamburger visible */
    .menu-toggle {
        display: flex !important;
    }

    .desktop-only {
        display: none;
    }

    /* Mobile menu overlay */
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(2, 18, 14, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .main-navigation.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .main-navigation.active .nav-menu li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-navigation.active .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .main-navigation.active .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .main-navigation.active .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .main-navigation.active .nav-menu li:nth-child(4) { transition-delay: 0.4s; }

    .nav-menu a {
        font-size: 1.5rem;
        padding: 15px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Scale down EKG and glow on mobile */
    .hero::before {
        width: 100%;
        max-width: 400px;
        height: 100px;
    }

    .hero::after {
        width: 300px;
        height: 300px;
    }

    .section-header h2,
    .section-title h1,
    .section-title h2 {
        font-size: 2rem;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-split,
    .doterra-split {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .about-image-wrap {
        max-width: 250px;
        margin: 0 auto;
    }

    .dash-welcome-inner {
        flex-direction: column !important;
        text-align: center;
    }

    .dash-profile-layout {
        grid-template-columns: 1fr !important;
    }

    .testimonials-featured {
        max-width: 100%;
    }
}

/* ==========================================================================
   Hero Split Layout (image + text)
   ========================================================================== */
.hero-split {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 0 0 380px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        flex: 0 0 auto;
        max-width: 300px;
        order: -1;
    }
}

/* ==========================================================================
   About / Rólunk Section
   ========================================================================== */
.section-about {
    position: relative;
    background: var(--bg-dark);
    background-image: var(--gradient-bg);
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    overflow: hidden;
}

.section-about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 18, 14, 0.92) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.section-about .container {
    position: relative;
    z-index: 2;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    max-width: 70%;
}

.about-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: none;
}

.about-label,
.dash-about-label {
    display: inline-block;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    border: 1px solid rgba(201, 162, 39, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
}

.about-text-wrap h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text-wrap p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Materials Section (textured)
   ========================================================================== */
.section-materials {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.section-materials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(2, 18, 14, 0.93) 50%, rgba(0, 0, 0, 0.88) 100%);
    z-index: 1;
}

/* ==========================================================================
   Testimonials Section (beige textured)
   ========================================================================== */
.section-testimonials {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.section-testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(244, 244, 244, 0.92);
    z-index: 1;
}

.section-testimonials h2,
.section-testimonials h3,
.section-testimonials h4,
.section-testimonials p {
    color: #1a1a1a;
}

.section-testimonials .testimonial-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #1a1a1a;
}

.section-testimonials .testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.section-testimonials .testimonial-quote {
    color: var(--gold-primary);
    opacity: 1;
}

.section-testimonials .testimonial-text {
    color: #333;
}

.section-testimonials .author-rank {
    color: var(--gold-dark);
}

.testimonials-row-2 {
    margin-top: 30px;
}

.testimonials-featured {
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-featured {
    border-left: 4px solid var(--gold-primary) !important;
}

/* Author Avatar in Testimonials */
.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

/* ==========================================================================
   Mit kapsz Section (Benefits)
   ========================================================================== */
.section-benefits {
    background: linear-gradient(160deg, #02120e 0%, #05261e 50%, #02120e 100%);
    position: relative;
    overflow: hidden;
}

.section-benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.benefits-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(201, 162, 39, 0.5);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Link Preview Card */
.link-preview-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 20px;
    padding: 32px 36px;
    max-width: 820px;
    margin: 0 auto;
    text-decoration: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-preview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,162,39,0.06) 0%, transparent 60%);
    pointer-events: none;
    border-radius: inherit;
}

.link-preview-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 40px rgba(201, 162, 39, 0.2);
    transform: translateY(-3px);
}

.link-preview-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.link-preview-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: brightness(1.1);
}

.link-preview-domain {
    font-size: 0.75rem;
    color: var(--gold-primary);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.link-preview-body {
    flex: 1;
}

.link-preview-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.link-preview-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.link-preview-cta {
    flex-shrink: 0;
}

.link-preview-btn {
    display: inline-block;
    background: var(--gradient-gold);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 22px;
    border-radius: var(--radius-btn);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .link-preview-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .benefits-items {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Experience Section (10+ éves)
   ========================================================================== */
.section-experience {
    background: var(--green-emerald);
    padding: 60px 0;
}

.experience-banner {
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, rgba(201,162,39,0.02) 100%);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 24px;
    padding: 48px 56px;
    position: relative;
    overflow: hidden;
}

.experience-banner::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.experience-number-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-shrink: 0;
}

.experience-num {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.experience-label {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-light);
    font-style: italic;
}

.experience-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
    flex-shrink: 0;
}

.experience-text h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.experience-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .experience-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
        gap: 28px;
    }

    .experience-divider {
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    }

    .experience-num {
        font-size: 3.5rem;
    }
}

/* ==========================================================================
   doTERRA Product Section
   ========================================================================== */
.section-doterra {
    overflow: hidden;
}

.doterra-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.doterra-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.doterra-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.doterra-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .doterra-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .doterra-image {
        text-align: center;
    }
}

/* ==========================================================================
   Dashboard Styles - Spectacular Emerald & Gold
   ========================================================================== */
.dashboard-page {
    background: #000;
}

/* ---- Hero Section ---- */
.dash-hero {
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
    text-align: center;
}

.dash-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.dash-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        #05261e 0%,
        #031a14 40%,
        #000000 100%);
    z-index: 0;
}

.dash-hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201,162,39,0.06) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.dash-hero .container {
    position: relative;
    z-index: 2;
}

.dash-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Avatar */
.dash-hero-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow:
        0 0 0 4px rgba(0, 0, 0, 0.3),
        0 0 0 8px rgba(201, 162, 39, 0.2),
        0 0 40px rgba(201, 162, 39, 0.3);
    animation: dash-avatar-glow 3s ease-in-out infinite;
}

.dash-hero-avatar span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #02120e;
    letter-spacing: 2px;
}

@keyframes dash-avatar-glow {
    0%, 100% { box-shadow: 0 0 0 4px rgba(0,0,0,0.3), 0 0 0 8px rgba(201,162,39,0.2), 0 0 40px rgba(201,162,39,0.3); }
    50% { box-shadow: 0 0 0 4px rgba(0,0,0,0.3), 0 0 0 12px rgba(201,162,39,0.15), 0 0 60px rgba(201,162,39,0.4); }
}

.dash-hero-greeting {
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.dash-hero-name {
    font-size: 3.5rem;
    margin-bottom: 10px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.dash-hero-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.dash-hero-motivational {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
    font-style: italic;
}

/* ---- Icon Tabs (like screenshot) ---- */
.dash-icon-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: -40px auto 40px;
    position: relative;
    z-index: 10;
    max-width: 900px;
    flex-wrap: nowrap;
}

.dash-icon-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 30px 20px;
    min-width: 140px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.dash-icon-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.dash-icon-tab-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.dash-icon-tab-label {
    white-space: nowrap;
}

.dash-icon-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 162, 39, 0.3);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dash-icon-tab:hover .dash-icon-tab-icon {
    background: rgba(201, 162, 39, 0.1);
    border-color: rgba(201, 162, 39, 0.3);
    color: var(--gold-primary);
}

.dash-icon-tab.active {
    background: rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.4);
    color: var(--gold-primary);
    box-shadow:
        0 10px 40px rgba(201, 162, 39, 0.15),
        inset 0 0 30px rgba(201, 162, 39, 0.05);
}

.dash-icon-tab.active::before {
    background: var(--gradient-gold);
}

.dash-icon-tab.active .dash-icon-tab-icon {
    background: var(--gradient-gold);
    border-color: transparent;
    color: #02120e;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.dash-icon-tab.active .dash-icon-tab-icon svg {
    stroke: #02120e;
}

/* Logout tab variant */
.dash-icon-tab--logout .dash-icon-tab-icon {
    background: rgba(231, 76, 60, 0.08);
    border-color: rgba(231, 76, 60, 0.15);
}

.dash-icon-tab--logout:hover {
    border-color: rgba(231, 76, 60, 0.4);
    color: #e74c3c;
}

.dash-icon-tab--logout:hover .dash-icon-tab-icon {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.4);
    color: #e74c3c;
}

/* ---- Inspiration Banner ---- */
.dash-inspiration-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.dash-inspiration-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-gold);
    border-radius: 16px 0 0 16px;
}

.dash-inspiration-icon {
    flex-shrink: 0;
    color: var(--gold-primary);
    opacity: 0.8;
}

.dash-inspiration-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* ---- Tab Content ---- */
.dash-tab-content {
    display: none;
    padding-bottom: 60px;
    animation: dash-tab-fade-in 0.4s ease;
}

.dash-tab-content.active {
    display: block;
}

@keyframes dash-tab-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dash-section-head {
    margin-bottom: 40px;
}

.dash-section-head h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.dash-section-head p {
    color: var(--text-muted);
}

/* ---- Empty State ---- */
.dash-empty-state {
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

.dash-empty-icon {
    color: var(--gold-primary);
    margin-bottom: 25px;
    opacity: 0.5;
}

.dash-empty-state h3 {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.dash-empty-state p {
    color: var(--text-muted);
}

/* ---- Profile Layout ---- */
.dash-profile-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Profile Form Card */
.dash-profile-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.dash-profile-form h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.dash-profile-form h3 svg {
    color: var(--gold-primary);
}

.dash-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dash-form-group {
    margin-bottom: 20px;
}

.dash-form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.dash-form-group input[type="text"],
.dash-form-group input[type="email"],
.dash-form-group input[type="password"] {
    width: 100%;
    padding: 13px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dash-form-group input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
    outline: none;
}

.dash-form-group input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dash-form-group small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}

.dash-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 30px 0;
}

.dash-save-btn {
    margin-top: 10px;
    padding: 14px 35px;
    font-size: 0.9rem;
}

/* Alert Messages */
.dash-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.dash-alert-success {
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.25);
    color: #2ecc71;
}

.dash-alert-error {
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.25);
    color: #e74c3c;
}

/* Membership Card */
.dash-membership-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
}

.dash-member-avatar-wrap {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-member-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.3);
}

.dash-member-avatar span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #02120e;
    letter-spacing: 1px;
}

.dash-member-avatar-wrap h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.dash-member-email {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    word-break: break-all;
}

.dash-membership-info {
    margin-bottom: 20px;
    text-align: left;
}

.dash-membership-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-membership-row:last-child {
    border-bottom: none;
}

.dash-membership-row span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.dash-membership-row strong {
    color: #fff;
    font-size: 0.9rem;
}

.dash-status-active {
    color: #2ecc71 !important;
}

.dash-logout-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.dash-logout-sidebar:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
    box-shadow: none;
}

/* ---- Help Footer ---- */
.dash-help-footer {
    text-align: center;
    padding: 40px 20px 60px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    line-height: 1.7;
}

.dash-help-footer a {
    color: var(--gold-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dash-help-footer a:hover {
    color: var(--gold-light);
}

.dash-help-signoff {
    margin-top: 10px;
    font-weight: 600;
    color: var(--gold-primary);
    font-size: 1rem;
}

/* ---- Dashboard Responsive ---- */
@media (max-width: 768px) {
    .dash-hero {
        padding: 20px 0 90px;
    }

    .dash-hero-name {
        font-size: 2.2rem;
    }

    .dash-hero-avatar {
        width: 70px;
        height: 70px;
    }

    .dash-hero-avatar span {
        font-size: 1.4rem;
    }

    .dash-icon-tabs {
        gap: 10px;
        margin-top: -30px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10px;
    }

    .dash-icon-tab {
        padding: 18px 12px 15px;
        min-width: 0;
        flex: 1 1 auto;
        border-radius: 16px;
        white-space: nowrap;
    }

    .dash-icon-tab-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .dash-icon-tab-icon svg {
        width: 20px;
        height: 20px;
    }

    .dash-icon-tab-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .dash-inspiration-banner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }

    .dash-profile-layout {
        grid-template-columns: 1fr;
    }

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

    .dash-profile-form-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .dash-icon-tabs {
        gap: 6px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 5px;
    }

    .dash-icon-tab {
        padding: 14px 8px 12px;
        flex: 0 0 auto;
        min-width: 70px;
    }

    .dash-icon-tab-label {
        font-size: 0.6rem;
    }
}

/* ==========================================================================
   LearnDash Course Grid - Dashboard Override
   ========================================================================== */

/* Hide course meta (date & author) on single course pages */
.single-sfwd-courses .entry-meta,
.single-sfwd-courses .post-meta,
.single-sfwd-courses .ld-course-meta,
.single-sfwd-courses .learndash-wrapper .ld-course-status-action + .entry-meta,
body.single-sfwd-courses article .entry-meta {
    display: none !important;
}

/* LearnDash course list wrapper */
.dashboard-page .learndash-wrapper,
.dashboard-page .ld-course-list-items,
.dashboard-page [class*="ld-course-list"] {
    font-family: var(--font-body) !important;
}

/* Grid layout */
.dashboard-page .ld-course-list-items,
.dashboard-page .ld-item-list,
.dashboard-page .ld-course-list-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 25px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Individual course card */
.dashboard-page .ld-course-list-items > div,
.dashboard-page .ld-course-list-items .ld_course_grid,
.dashboard-page .ld-item-list .ld-item-list-item,
.dashboard-page .ld-course-list-content .ld-item-list-item {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(201, 162, 39, 0.12) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.dashboard-page .ld-course-list-items > div:hover,
.dashboard-page .ld-course-list-items .ld_course_grid:hover,
.dashboard-page .ld-item-list .ld-item-list-item:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(201, 162, 39, 0.35) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 0 15px rgba(201, 162, 39, 0.08) !important;
}

/* Course thumbnail */
.dashboard-page .ld-course-list-items .ld_course_grid .thumbnail,
.dashboard-page .ld-course-list-items .entry-image,
.dashboard-page .ld-item-list-item .ld-item-list-item-preview .ld-item-thumbnail {
    border-radius: 20px 20px 0 0 !important;
    overflow: hidden !important;
    position: relative !important;
}

.dashboard-page .ld-course-list-items .ld_course_grid .thumbnail img,
.dashboard-page .ld-item-list-item .ld-item-thumbnail img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.5s ease !important;
}

.dashboard-page .ld-course-list-items > div:hover img,
.dashboard-page .ld-item-list-item:hover .ld-item-thumbnail img {
    transform: scale(1.05) !important;
}

/* Course card body */
.dashboard-page .ld-course-list-items .ld_course_grid .caption,
.dashboard-page .ld-course-list-items .entry-content,
.dashboard-page .ld-item-list-item .ld-item-list-item-preview {
    padding: 25px !important;
}

/* Course title */
.dashboard-page .ld-course-list-items h2.ld-entry-title,
.dashboard-page .ld-course-list-items .entry-title,
.dashboard-page .ld-course-list-items h3.entry-title,
.dashboard-page .ld-item-list-item .ld-item-name {
    font-family: var(--font-heading) !important;
    font-size: 1.25rem !important;
    color: #fff !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
}

/* Course description */
.dashboard-page .ld-course-list-items .ld-entry-content,
.dashboard-page .ld-course-list-items .entry-content p,
.dashboard-page .ld-item-list-item .ld-item-details {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

/* Course status badge (Enrolled / Free) - hide "Beiratkozva" on dashboard tiles */
.dashboard-page .ld-course-list-items .ld-status,
.dashboard-page .ld-item-list-item .ld-status,
.dashboard-page .ld-course-list-items .ld-status-enrolled,
.dashboard-page .ld-course-list-items .ribbon,
.dashboard-page .ld-course-list-items .ld_course_grid .ribbon,
.dashboard-page .ld-course-list-items .ld_course_grid .ld-ribbon,
.dashboard-page .ld-course-list-items .ld_course_grid .ribbon-enrolled {
    display: none !important;
}

/* Course status & metadata - egységes fehér szövegek */
.dashboard-page .ld-course-list-items .ld-status,
.dashboard-page .ld-course-list-items .ld-course-status,
.dashboard-page .ld-course-list-items .ld-course-price,
.dashboard-page .ld-course-list-items .course-price,
.dashboard-page .ld-item-list-item .ld-status,
.dashboard-page .ld-item-list-item .ld-item-price {
    color: #fff !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
}

/* Státusz kiemelése arany színnel */
.dashboard-page .ld-course-list-items .ld-status-incomplete,
.dashboard-page .ld-course-list-items .ld-status-waiting,
.dashboard-page .ld-item-list-item .ld-status-incomplete {
    color: #c9a227 !important;
    font-weight: 600 !important;
}

/* Course buttons (Continue / Start) */
.dashboard-page .ld-course-list-items .btn,
.dashboard-page .ld-course-list-items .ld-button,
.dashboard-page .ld-course-list-items a.btn,
.dashboard-page .ld-item-list-item .ld-button,
.dashboard-page .learndash-wrapper .ld-button {
    display: inline-block !important;
    background: var(--gradient-gold) !important;
    color: #02120e !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.25) !important;
    text-decoration: none !important;
    margin-top: 10px !important;
}

.dashboard-page .ld-course-list-items .btn:hover,
.dashboard-page .ld-course-list-items .ld-button:hover,
.dashboard-page .ld-item-list-item .ld-button:hover,
.dashboard-page .learndash-wrapper .ld-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4) !important;
}

/* Course grid responsive */
@media (max-width: 768px) {
    .dashboard-page .ld-course-list-items,
    .dashboard-page .ld-item-list,
    .dashboard-page .ld-course-list-content {
        grid-template-columns: 1fr !important;
    }
}

/* Also override standalone (non-dashboard) LearnDash styles */
.ld-course-list-items {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
}

.ld-course-list-items .ld_course_grid {
    background: var(--gradient-glass) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.ld-course-list-items .ld_course_grid:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(201, 162, 39, 0.4) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}
