/* Design Tokens */
:root {
    --primary-red: #ff3b5c;
    --primary-pink: #ff5a77;
    --primary-gradient: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-pink) 100%);
    --accent-teal: #00bcd4;
    --accent-teal-hover: #00acc1;
    --dark-navy: #1f2937;
    --text-main: #374151;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-navy);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-teal);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.5);
}

.btn-secondary {
    background-color: var(--primary-pink);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    display: block;
}

.text-link {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

/* Utilities */
.section-subtitle {
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
    font-family: var(--font-heading);
}

/* Navbar */
.navbar {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.5rem;
    line-height: 1;
}

.logo-bold {
    font-weight: 800;
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-btn-cabinet {
    background-color: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 8px 20px !important;
    margin-left: 10px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-btn-cabinet:hover {
    background-color: white;
    color: var(--primary-pink) !important;
    opacity: 1;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 250px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: var(--text-main);
    padding: 10px 20px;
    display: block;
    transition: background-color 0.2s;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--accent-teal);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--primary-gradient);
    min-height: 80vh;
    padding: 120px 20px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -10%;
    width: 120%;
    height: 100px;
    background-color: var(--bg-white);
    transform: rotate(-2deg);
    z-index: 1;
}

.hero-content {
    max-width: 500px;
    color: white;
    position: relative;
    z-index: 2;
    margin-right: -50px;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    max-width: 500px;
    position: relative;
    z-index: 2;
}

/* Premium Modular Hero Image Container */
.hero-premium-image {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
    aspect-ratio: 4 / 5; /* Mobile portrait focus */
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

@media (min-width: 992px) {
    .hero-premium-image {
        aspect-ratio: 1 / 1; /* Squarish on desktop */
        max-width: 650px;
    }
}

.hero-premium-image img,
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s ease;
}

.hero-premium-image:hover,
.hero-premium-image:hover img,
.hero-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

/* Features */
.features {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.section-description {
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

/* Courses */
.courses {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.courses-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.courses-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.courses-text h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.courses-text > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.checklist {
    margin-bottom: 30px;
}

.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-main);
    font-weight: 500;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-text {
    font-weight: 600;
    margin-bottom: 20px;
}

.course-card-featured {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background-color: var(--primary-pink);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.course-card-featured img {
    border-radius: var(--border-radius-md);
    margin-bottom: 25px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.course-card-featured h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.course-card-featured p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    padding: 100px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.carousel-container {
    position: relative;
    padding: 0 40px;
    margin-bottom: 30px;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    padding: 20px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-sm);
}

blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.8;
}

cite {
    font-weight: 700;
    font-style: normal;
    color: var(--dark-navy);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--accent-teal);
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
}

.carousel-btn:hover {
    color: var(--primary-pink);
}

.prev { left: 0; }
.next { right: 0; }

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e5e7eb;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.current-indicator {
    background-color: var(--accent-teal);
}

/* Mentor Section */
.mentor {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.mentor-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.mentor-content {
    flex: 1;
    text-align: left;
}

.mentor-content .section-subtitle {
    text-align: left;
}

.mentor-content h2 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.mentor-content h3 {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.mentor-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.mentor-image {
    flex: 1;
    position: relative;
}

.mentor-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.mentor-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-pink);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.1;
}

/* Support Features */
.support-features {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.support-features h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.support-card {
    background-color: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent-teal);
}

.support-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.support-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.guarantee-card {
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    color: white;
    text-align: left;
}

.guarantee-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.guarantee-card p {
    font-size: 1.05rem;
    opacity: 0.9;
}

.guarantee-card.pink {
    background-color: var(--text-light); /* Original matches this layout but we use dark gray for distinction or original colors */
    background: linear-gradient(135deg, var(--bg-white) 0%, #ffe4e8 100%);
    color: var(--dark-navy);
}

.guarantee-card.pink h3 {
    color: var(--primary-pink);
}

.guarantee-card.pink p {
    color: var(--text-main);
}

.guarantee-card.navy {
    background-color: var(--dark-navy);
    background: linear-gradient(135deg, var(--dark-navy) 0%, #111827 100%);
}

.final-cta {
    background: var(--primary-gradient);
    padding: 80px 40px;
    border-radius: var(--border-radius-lg);
    color: white;
}

.final-cta h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-inline: auto;
}

/* Premium Footer */
.footer-premium {
    background-color: #0b1120; /* Deep luxurious dark blue/black */
    color: #e2e8f0;
    padding: 80px 20px 30px;
    font-family: var(--font-body);
    border-top: 1px solid #1e293b;
}

.footer-premium-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-premium-brand .footer-logo {
    display: inline-block;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-brand-desc {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 350px;
}

.footer-socials-premium {
    display: flex;
    gap: 15px;
}

.footer-socials-premium a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials-premium a:hover {
    background-color: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-pink);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

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

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: block;
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--primary-pink);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.footer-contact-info a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-info a:hover {
    color: var(--primary-pink);
}

.footer-contact-info .working-hours {
    color: #64748b;
    margin-top: 20px;
    font-size: 0.85rem;
}

.footer-premium-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-container {
        grid-template-columns: 1fr;
    }
    
    .mentor-container {
        flex-direction: column;
        text-align: center;
    }
    
    .mentor-content .section-subtitle {
        text-align: center;
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile menu toggle via JS could handle display block */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-red);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        color: white;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .features-grid, .support-grid, .guarantee-grid {
        grid-template-columns: 1fr;
    }

    /* Premium Footer Responsive */
    .footer-premium-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand-desc {
        margin: 0 auto 30px;
    }
    
    .footer-socials-premium {
        justify-content: center;
    }
    
    .footer-premium-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* --- Page Specific Themes & Layouts --- */

/* Theme: Ritual (Medical, Clean, Teal/Blue) */
.theme-ritual {
    --primary-red: #0284c7; /* Sky blue */
    --primary-pink: #38bdf8; /* Lighter blue */
    --primary-gradient: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-pink) 100%);
    --accent-teal: #0ea5e9;
    --accent-teal-hover: #0284c7;
}

.theme-ritual .hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--dark-navy);
}

.theme-ritual .hero h1, .theme-ritual .hero p {
    color: var(--dark-navy);
}

.theme-ritual .hero .btn-primary {
    color: white;
}

.theme-ritual .feature-card {
    border: 1px solid #e0f2fe;
    background-color: #f8fafc;
    box-shadow: none;
}

.theme-ritual .feature-card:hover {
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.1);
}

/* Theme: Training (Warm, Engaging, Orange/Yellow) */
.theme-training {
    --primary-red: #ea580c; /* Orange */
    --primary-pink: #fb923c; /* Light Orange */
    --primary-gradient: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-pink) 100%);
    --accent-teal: #f97316;
    --accent-teal-hover: #ea580c;
}

.theme-training .hero {
    flex-direction: row-reverse;
}

.theme-training .hero-content {
    margin-right: 0;
    margin-left: 50px;
}

@media (max-width: 768px) {
    .theme-training .hero {
        flex-direction: column;
    }
    .theme-training .hero-content {
        margin-left: 0;
    }
}

.theme-training .feature-card {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: none;
}

/* --- Vertical Timeline for Training Page --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    width: 4px;
    background: var(--primary-pink);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
    text-align: left;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 15px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-red);
    border-radius: 50%;
    z-index: 1;
}
.timeline-content {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-red);
}
.timeline-content h4 {
    color: var(--accent-teal);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Restyled Results List for Training */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.result-item {
    display: flex;
    align-items: center;
    background: #fff7ed;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.result-icon {
    font-size: 2rem;
    margin-right: 20px;
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-red);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.result-text {
    font-weight: 500;
    color: var(--dark-navy);
}

/* Theme: Providnyk (E-Book, Knowledge, Purple/Violet) */
.theme-providnyk {
    --primary-red: #7c3aed; /* Violet */
    --primary-pink: #c084fc; /* Light Purple */
    --primary-gradient: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-pink) 100%);
    --accent-teal: #8b5cf6;
    --accent-teal-hover: #7c3aed;
}

.theme-providnyk .hero {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    color: var(--dark-navy);
}

.theme-providnyk .hero h1, .theme-providnyk .hero p {
    color: var(--dark-navy);
}

.theme-providnyk .hero .btn-primary {
    color: white;
}

.theme-providnyk .feature-card {
    border: 1px solid #ede9fe;
    background-color: #fafafe;
}
.theme-providnyk .feature-card:hover {
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1);
}

/* Theme: Premium (Self-Grooming, Waitlist, Dark/Gold) */
.theme-premium {
    --primary-red: #111827; /* Very Dark Gray */
    --primary-pink: #1f2937; /* Darker Gray */
    --primary-gradient: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-pink) 100%);
    --premium-gold: #d4af37; /* Metallic Gold */
    --premium-gold-light: #fef08a;
}

.theme-premium .hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.theme-premium .hero h1, .theme-premium .hero p {
    color: white;
}

.theme-premium .section-subtitle {
    color: var(--premium-gold);
}

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

/* Native Premium Form Styles */
.native-form {
    padding: 40px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.native-form .form-group {
    margin-bottom: 25px;
}

.native-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.native-form input[type="text"],
.native-form input[type="tel"],
.native-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

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

.native-form .radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.native-form .radio-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.native-form .radio-group input[type="radio"] {
    accent-color: var(--premium-gold);
    width: 18px;
    height: 18px;
}

/* Custom Training Final Section Layout */
.theme-training .final-section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}
.theme-training .guarantees-vertical {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.theme-training .final-section-split .final-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 40px;
    margin: 0;
    height: 100%;
}
.theme-training .final-section-split .final-cta p {
    margin-inline: 0; /* Remove auto margin to align left */
}
.theme-training .final-section-split .guarantee-card {
    padding: 30px 40px;
    margin: 0;
    flex: 1;
}

@media (max-width: 992px) {
    .theme-training .final-section-split {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   PREMIUM MODULAR CMS COMPONENT STYLES (Phase 15)
   ========================================================================= */

body.premium-theme {
    background-color: #fbfbfd; /* Apple-like off-white */
    color: #1d1d1f;
}

/* Premium Navigation */
.navbar-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container-premium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-premium {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.nav-links-premium {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links-premium a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links-premium a:hover {
    color: var(--primary-pink);
}

.has-dropdown { position: relative; }
.dropdown-premium {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.03);
}
.has-dropdown:hover .dropdown-premium {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-premium a {
    display: block; padding: 10px 20px; color: #475569;
}
.dropdown-premium a:hover { background: #f8fafc; color: var(--primary-pink); }
.dropdown-divider { border-bottom: 1px solid #f1f5f9; margin: 5px 0; }
.all-courses-link { font-weight: 600 !important; color: #0ea5e9 !important; }

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

.btn-nav-login {
    text-decoration: none; font-weight: 500; color: #475569; font-size: 0.95rem;
}
.btn-nav-login:hover { color: #0f172a; }

.btn-nav-primary {
    background: #0f172a;
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.btn-nav-primary:hover {
    background: var(--primary-pink);
    box-shadow: 0 4px 15px rgba(236,72,153,0.3);
}

/* Base Component Containers */
.container-premium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}
.section-heading-premium {
    margin-bottom: 50px;
    max-width: 600px;
}
.section-heading-premium.center {
    margin: 0 auto 50px;
    text-align: center;
}
.subtitle-badge {
    display: inline-block;
    background: #fdf2f8; /* Soft pink */
    color: #db2777; /* Deeper pink */
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.section-heading-premium h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
}

/* 1. Hero Block */
.hero-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: #f8fafc;
    overflow: hidden;
}
.hero-premium-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 10% 80px 15%;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 25px;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
}
.hero-premium-image {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-premium-image img {
    width: 100%; height: 100%; object-fit: cover;
}
.btn-premium {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(236,72,153,0.25);
    width: max-content;
}
.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(236,72,153,0.35);
}

/* 2. Features Grid */
.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.feature-card-premium {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.02);
}
.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.feature-icon {
    font-size: 2.5rem; margin-bottom: 20px;
}
.feature-card-premium h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 15px;
}
.feature-card-premium p {
    color: #64748b; line-height: 1.6;
}

/* 3. Courses Block */
.bg-light-soft { background-color: #f8fafc; }
.courses-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.course-card-premium {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.course-card-premium:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.course-img-wrapper {
    position: relative;
    height: 220px;
}
.course-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
}
.course-price {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}
.course-content-premium {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.course-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 10px;
}
.course-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}
.btn-outline-premium {
    display: block;
    text-align: center;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 8px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.btn-outline-premium:hover {
    background: #0f172a; color: white; border-color: #0f172a;
}
.btn-text-premium {
    color: #0ea5e9; text-decoration: none; transition: color 0.2s;
}
.btn-text-premium:hover { color: #0284c7; }


/* 4. Mentor Profile */
.mentor-premium {
    background: white; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9;
}
.mentor-layout-premium {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.mentor-image-premium {
    border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.mentor-image-premium img {
    width: 100%; height: auto; display: block;
}
.mentor-info-premium h2 {
    font-family: 'Playfair Display', serif; font-size: 2.8rem; color: #0f172a; margin: 10px 0;
}
.mentor-position {
    color: #0ea5e9; font-weight: 500; font-size: 1.1rem; margin-bottom: 25px;
}
.mentor-bio p {
    color: #475569; font-size: 1.05rem; line-height: 1.8; margin-bottom: 15px;
}

/* 5. Reviews Grid */
.reviews-grid-premium {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.review-card-premium {
    background: white; padding: 40px; border-radius: 16px; border: 1px solid #f1f5f9; box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.review-stars {
    color: #f59e0b; margin-bottom: 20px; font-size: 1.2rem;
}
.review-text {
    font-style: italic; color: #475569; line-height: 1.6; margin-bottom: 30px;
}
.review-author {
    display: flex; align-items: center; gap: 15px;
}
.review-author img {
    width: 45px; height: 45px; border-radius: 50%;
}
.review-author strong {
    display: block; color: #0f172a; font-size: 0.95rem;
}
.review-author span {
    font-size: 0.8rem; color: #94a3b8;
}

/* CMS Responsive */
@media (max-width: 992px) {
    .hero-premium, .mentor-layout-premium { grid-template-columns: 1fr; }
    .hero-premium-content { padding: 60px 20px; align-items: center; text-align: center; }
    .hero-subtitle { max-width: 100%; }
    .features-grid-premium, .courses-grid-premium, .reviews-grid-premium { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .features-grid-premium, .courses-grid-premium, .reviews-grid-premium { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .section-heading-premium h2 { font-size: 2rem; }
}

