/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #edbf46;
    --primary-light: #f4d16e;
    --white: #ffffff;
    --dark: #1e2028;
    --dark-light: #2a2d35;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
	--success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;
    --border: #e9ecef;
    --sidebar-width: 260px;
    --header-height: 80px;
    --border-radius: 12px;
	--text-secondary: #666;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);	
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HYBRID LAYOUT ===== */
.hybrid-container {
    display: flex;
    min-height: 100vh;
}

/* ===== SIDEBAR - GLOSSY FIXED ===== */
.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(145deg, rgba(30, 32, 40, 0.98) 0%, rgba(42, 45, 53, 0.95) 100%);
    backdrop-filter: blur(15px);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(237, 191, 70, 0.15);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2), inset -1px 0 0 rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.logo {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #edbf46, #f4d16e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--dark);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(237, 191, 70, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.logo:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 10px 10px 0 0;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text span {
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(237, 191, 70, 0.3);
}

.sidebar-nav {
    padding: 25px 0;
    flex-grow: 1;
}

.nav-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 25px 15px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-list {
    list-style: none;
}

.nav-item {
    margin-bottom: 2px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    color: rgba(168, 169, 180, 0.9);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: var(--white);
    background: linear-gradient(90deg, rgba(42, 45, 53, 0.7) 0%, rgba(30, 32, 40, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-left-color: var(--primary);
}

.nav-link.active {
    color: var(--white);
    background: linear-gradient(90deg, rgba(42, 45, 53, 0.8) 0%, rgba(30, 32, 40, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-left-color: var(--primary);
}

.nav-link:hover:after, .nav-link.active:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(237, 191, 70, 0.3), rgba(237, 191, 70, 0.6), rgba(237, 191, 70, 0.3));
}

.nav-icon {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.sidebar-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(108, 117, 125, 0.8);
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== RIGHT CONTENT PANEL ===== */
.content-panel {
    flex: 1;
    margin-left: var(--sidebar-width);
    background: linear-gradient(145deg, #f8f9fa, #f1f3f5);
    transition: margin-left 0.3s ease;
}

/* ===== STICKY HEADER ===== */
.content-header {
    height: var(--header-height);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(237, 191, 70, 0.15);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-title h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-title p {
    color: var(--gray);
    font-size: 14px;
    margin-top: 4px;
}

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

.header-btn {
    background: linear-gradient(145deg, #edbf46 0%, #f0c95a 30%, #edbf46 70%, #e6b433 100%);
    color: var(--dark);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(237, 191, 70, 0.4);
    box-shadow: 0 4px 15px rgba(237, 191, 70, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.header-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 191, 70, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* ===== SCROLLING CONTENT SECTIONS ===== */
.content-sections {
    padding: 40px;
}

/* ===== SECTION BASE STYLING ===== */
.content-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(237, 191, 70, 0.1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.content-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(237, 191, 70, 0.2), rgba(237, 191, 70, 0.4), rgba(237, 191, 70, 0.2), transparent);
}

.section-header {
    margin-bottom: 35px;
    position: relative;
}

.section-header:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(237, 191, 70, 0.1), rgba(237, 191, 70, 0.2), rgba(237, 191, 70, 0.1), transparent);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(237, 191, 70, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.section-icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px 12px 0 0;
}

.section-subtitle {
    color: var(--gray);
    font-size: 16px;
    max-width: 800px;
}

/* ===== OVERVIEW SECTION ===== */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(237, 191, 70, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray);
    font-size: 14px;
}

/* ===== HERO HEADLINE OPTIMIZATION ===== */
.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: 25px 0 20px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark) 35%, var(--primary) 65%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.hero-headline:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 900px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ===== HERO BUTTONS ===== */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    min-width: 180px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-align: center;
}

.hero-btn i {
    font-size: 28px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.hero-btn .btn-text {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
    transition: var(--transition);
}

.hero-btn .btn-subtext {
    font-size: 13px;
    opacity: 0.8;
    transition: var(--transition);
}

/* Primary Button */
.hero-btn.primary {
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(237, 191, 70, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(237, 191, 70, 0.4);
    background: linear-gradient(145deg, var(--primary-light), var(--primary));
}

.hero-btn.primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Secondary Button */
.hero-btn.secondary {
    background: linear-gradient(145deg, var(--dark), var(--dark-light));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(30, 32, 40, 0.2);
}

.hero-btn.secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 32, 40, 0.3);
    background: linear-gradient(145deg, var(--dark-light), var(--dark));
}

.hero-btn.secondary i {
    color: var(--primary);
}

/* Outline Button */
.hero-btn.outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid rgba(237, 191, 70, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn.outline:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(237, 191, 70, 0.15);
}

.hero-btn.outline i {
    color: var(--primary);
}

/* Button Badge */
.hero-btn .btn-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 71, 87, 0.3);
}

/* ===== FEATURE CARDS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(237, 191, 70, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 0 20px rgba(237, 191, 70, 0.1);
    border-color: rgba(237, 191, 70, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--primary-light), var(--primary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(237, 191, 70, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.feature-icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 15px 15px 0 0;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-desc {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== SCREENSHOTS GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(237, 191, 70, 0.1);
    border: 1px solid rgba(237, 191, 70, 0.3);
    border-radius: var(--border-radius);
    padding: 12px 20px;
    margin: 20px auto 30px;
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
}

.gallery-tip i {
    color: var(--primary);
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 32, 40, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
}

.thumbnail-overlay i {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary);
}

.thumbnail-overlay .view-full {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.gallery-item:hover .thumbnail-overlay {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
/* ===== LIGHTBOX WITH ARROWS & SCROLLABLE IMAGES ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(0, 0, 0, 0.96) !important;
    z-index: 999999 !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    background: var(--dark);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
    animation: lightboxFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    display: flex;
    flex-direction: column;
}

@keyframes lightboxFadeIn {
    from { 
        opacity: 0; 
        transform: scale(0.95) translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

/* Scrollable image container */
.image-scroll-container {
    flex: 1;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
    background: #1a1a1a;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    scroll-behavior: smooth;
}

#lightboxImage {
    display: block;
    max-width: 100%;
    max-height: none;
    width: auto;
    height: auto;
    margin: 0;
    background: #1a1a1a;
    object-fit: contain;
    padding: 10px;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    display: none;
    align-items: center;
    gap: 8px;
    z-index: 100;
    animation: bounceHint 2s infinite;
}

@keyframes bounceHint {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.image-scroll-container:hover .scroll-hint {
    display: flex;
}

/* Style scrollbar */
.image-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.image-scroll-container::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.image-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.image-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #d4a824;
}

/* Navigation arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 1000000;
}

.lightbox-prev,
.lightbox-next {
    background: var(--primary);
    color: var(--dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
    transform: scale(1.1);
}

.lightbox-prev {
    margin-left: -25px;
}

.lightbox-next {
    margin-right: -25px;
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000001;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
    user-select: none;
}

.lightbox-close:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.1);
}

/* Caption */
.lightbox-caption {
    padding: 20px;
    background: var(--dark-light);
    color: white;
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    flex-shrink: 0;
}

.lightbox-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* Counter */
.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1000001;
}

/* Prevent body scroll */
body.lightbox-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

.lightbox-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

/* ===== FEATURE LIST ===== */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-list .feature-item {
    display: block;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    padding: 20px;
    color: var(--dark);
    border: 1px solid rgba(237, 191, 70, 0.1);
    transition: var(--transition);
    cursor: default;
}

.feature-list .feature-item:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(237, 191, 70, 0.1);
}

.feature-list .feature-item h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.feature-list .feature-item p {
    color: var(--gray);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* ===== SUBSECTION HEADINGS ===== */
.subsection-heading {
    display: flex;
    align-items: center;
    margin: 30px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(237, 191, 70, 0.2);
    position: relative;
    color: var(--dark);
}

.subsection-heading:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.subsection-number {
    width: 28px;
    height: 28px;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    margin-right: 12px;
}

.subsection-text {
    font-size: 20px;
    font-weight: 600;
}

/* ===== DEMO LINKS ===== */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.demo-grid-2column {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Fixed 2 columns */
    gap: 20px;
    margin-top: 30px;
}

/* Optional: Add responsive behavior */
@media (max-width: 768px) {
    .demo-grid-2column {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
}
.demo-link {
    display: block;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    padding: 20px;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid rgba(237, 191, 70, 0.1);
    transition: var(--transition);
}

.demo-link:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(237, 191, 70, 0.1);
}
.demo-note {
    margin-top: 12px;
    padding: 10px;
    background: rgba(241, 196, 15, 0.1);
    border-radius: 6px;
    font-size: 13px;
    color: #d35400;
    line-height: 1.5;
    border-left: 3px solid #f1c40f;
}

/* ===== WHAT'S NEW SECTION STYLES ===== */

/* Version Badge */
.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(237, 191, 70, 0.3);
}

.version-tag {
    font-size: 20px;
    letter-spacing: 1px;
}

.version-label {
    background: rgba(255, 255, 255, 0.3);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Highlight Cards Grid */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.highlight-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, var(--primary), var(--primary-light)) 1;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(237, 191, 70, 0.05), rgba(244, 209, 110, 0.1));
    z-index: -1;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(237, 191, 70, 0.3);
}

.highlight-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.highlight-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Improvements List */
.improvements-container {
    background: linear-gradient(145deg, rgba(30, 32, 40, 0.03) 0%, rgba(42, 45, 53, 0.05) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(237, 191, 70, 0.1);
}

.improvement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(237, 191, 70, 0.1);
}

.improvement-item:last-child {
    border-bottom: none;
}

.improvement-check {
    width: 22px;
    height: 22px;
    background: linear-gradient(145deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.improvement-text {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.5;
}

.improvement-text strong {
    color: var(--primary);
}

/* ===== WHO IT'S FOR SECTION ===== */
.perfect-for {
    background: linear-gradient(145deg, rgba(237, 191, 70, 0.03) 0%, rgba(244, 209, 110, 0.06) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-top: 20px;
    border: 1px solid rgba(237, 191, 70, 0.1);
}

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

.perfect-for-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(237, 191, 70, 0.1);
}

.perfect-for-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.perfect-for-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(237, 191, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.perfect-for-icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px 20px 0 0;
}

.perfect-for-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.perfect-for-desc {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.perfect-for-stats {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.perfect-for-stats span {
    background: rgba(237, 191, 70, 0.1);
    padding: 4px 10px;
    border-radius: 15px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(247, 247, 247, 0.95) 0%, rgba(231, 231, 231, 0.9) 100%);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(237, 191, 70, 0.5);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 60px;
    color: rgba(237, 191, 70, 0.5);
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* ===== FAQ ===== */
.faq-container {
    margin-top: 30px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(237, 191, 70, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(237, 191, 70, 0.05);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--gray);
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* ===== TOGGLE FEATURES STYLES ===== */
.toggle-button-container {
    text-align: center;
    margin: 20px 0 40px;
}

.toggle-btn {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(237, 191, 70, 0.3);
    border-radius: 50px;
    padding: 12px 30px;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.toggle-btn:hover {
    background: linear-gradient(145deg, rgba(237, 191, 70, 0.1) 0%, rgba(244, 209, 110, 0.2) 100%);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 191, 70, 0.15);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

/* ===== FOOTER ===== */
.content-footer {
    background: linear-gradient(145deg, rgba(30, 32, 40, 0.98) 0%, rgba(30, 32, 40, 0.95) 100%);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(237, 191, 70, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-logo span {
    color: var(--primary);
}

.footer-links h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links a {
    color: rgba(168, 169, 180, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(168, 169, 180, 0.7);
    font-size: 14px;
}

/* ===== DARK BACKGROUND ===== */
.dark-bg {
    background: linear-gradient(145deg, var(--dark), var(--dark-light));
    color: var(--white);
    border: 1px solid rgba(237, 191, 70, 0.2);
}

.dark-bg h1, 
.dark-bg h2, 
.dark-bg h3, 
.dark-bg h4 {
    color: var(--white);
}

.dark-bg p {
    color: rgba(255, 255, 255, 0.9);
}

.dark-bg .btn {
    background: var(--primary);
    color: var(--dark);
}


/* ===== HEADER MENU TOGGLE BUTTON ===== */
.header-menu-toggle {
    display: none; /* Hidden by default */
    background: transparent;
    border: none;
    color: var(--dark);
    font-size: 24px;
    cursor: pointer;
    margin-left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
}

.header-menu-toggle:hover {
    background: rgba(237, 191, 70, 0.1);
    color: var(--primary);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-headline {
        font-size: 2.8rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .gallery-grid,
    .feature-list,
    .demo-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 1001;
    }
    
    .content-panel {
        margin-left: 0;
    }
    
    .content-header {
        padding: 0 20px;
        justify-content: flex-start;
    }
    
    .header-title {
        flex-grow: 1;
    }
    
    .header-actions {
        display: none;
    }
    
    .header-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        display: none; /* Hide buy button on mobile */
    }
    
    .content-sections {
        padding: 20px;
    }
    
    .content-section {
        padding: 25px;
        min-height: auto;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-headline:after {
        width: 70px;
        bottom: -8px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .perfect-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .perfect-for-item {
        padding: 25px 15px;
    }
    
    .features-grid,
    .perfect-for-grid {
        grid-template-columns: 1fr !important;
    }
    
    .perfect-for-item,
    .feature-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .perfect-for-grid {
        grid-template-columns: 1fr;
    }
    
    .version-badge {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* ===== BADGE STYLES ===== */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    position: relative;
    top: -1px;
}

/* Recommended Badge */
.badge-recommended {
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    color: var(--dark);
    box-shadow: 0 2px 5px rgba(237, 191, 70, 0.3);
}

/* Popular Badge */
.badge-popular {
    background: linear-gradient(145deg, #27ae60, #2ecc71);
    color: white;
    box-shadow: 0 2px 5px rgba(39, 174, 96, 0.3);
}

/* New Badge */
.badge-new {
    background: linear-gradient(145deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
}

/* Pro Badge */
.badge-pro {
    background: linear-gradient(145deg, #9b59b6, #8e44ad);
    color: white;
    box-shadow: 0 2px 5px rgba(155, 89, 182, 0.3);
}

/* Lite Badge */
.badge-lite {
    background: linear-gradient(145deg, #95a5a6, #7f8c8d);
    color: white;
    box-shadow: 0 2px 5px rgba(149, 165, 166, 0.3);
}

/* Discount Badge */
.badge-discount {
    background: linear-gradient(145deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
}

/* Pulse Animation for Discount */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Badge in Navigation */
.nav-link .badge {
    font-size: 10px;
    padding: 3px 8px;
    margin-left: 6px;
}

/* Badge in Buttons */
.btn .badge {
    margin-left: 6px;
    margin-right: -4px;
}

/* Badge in Headers */
h1 .badge,
h2 .badge,
h3 .badge {
    font-size: 12px;
    padding: 5px 12px;
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .badge {
        font-size: 10px;
        padding: 3px 8px;
        margin-left: 6px;
    }
    
    .nav-link .badge {
        display: none; /* Hide badges in mobile nav for cleaner look */
    }
}