/* CSS DESIGN SYSTEM FOR HAPANAMY.LK */

:root {
    /* Color Palette - Light Mode (Premium Cream, Gold & Orange Base) */
    --bg-main: #FFFDF8;          /* Warm White/Cream */
    --bg-surface: #FFFFFF;
    --bg-surface-glass: rgba(255, 255, 255, 0.82);
    --border-color: #F5D76E;     /* Light Gold border */
    
    --brand-gold: #D4AF37;       /* Brand Gold */
    --brand-gold-light: #F5D76E;
    --brand-gold-soft: #FFF4CC;
    
    --brand-orange: #F57C00;     /* Orange */
    --brand-orange-light: #FFB74D;
    --brand-orange-soft: #FFF3E0;
    
    --brand-red: #EF5350;        /* Accent Light Red */
    --brand-red-soft: #FFCDD2;
    --brand-red-rose: #FCE4EC;
    
    --brand-yellow: #FFD54F;     /* Success & Highlight (Yellow) */
    --brand-yellow-light: #FFF9C4;
    
    --brand-green: #66BB6A;      /* Success Light Green */
    --brand-green-soft: #E8F5E9;
    
    --text-primary: #5D4037;     /* Heading Color (Dark Warm Brown) */
    --text-body: #6D4C41;        /* Body Text Color */
    --text-muted: #8D6E63;       /* Light Text Color */
    --text-on-orange: #FFFFFF;
    --text-on-gold: #FFFFFF;
    
    --card-shadow: 0 8px 32px rgba(93, 64, 55, 0.06);
    --card-shadow-hover: 0 16px 40px rgba(245, 124, 0, 0.12);
    
    --gold-gradient: linear-gradient(135deg, #D4AF37, #F57C00);
    --orange-gradient: linear-gradient(135deg, #F57C00, #EF5350);
    --navy-gradient: linear-gradient(135deg, #5D4037, #8D6E63);
    --green-gradient: linear-gradient(135deg, #66BB6A, #81C784);
    --footer-gradient: linear-gradient(135deg, #FFF8E8, #FFFDF8);
    
    --font-heading: 'Poppins', 'Noto Sans Sinhala', sans-serif;
    --font-body: 'Poppins', 'Noto Sans Sinhala', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Variables Override */
[data-theme="dark"] {
    --bg-main: #1F1512;          /* Premium dark warm brown background */
    --bg-surface: #2D211C;       /* Darker warm surface */
    --bg-surface-glass: rgba(45, 33, 28, 0.82);
    --border-color: rgba(212, 175, 55, 0.25);
    
    --brand-gold: #D4AF37;
    --brand-gold-light: #F5D76E;
    --brand-gold-soft: rgba(212, 175, 55, 0.15);
    
    --brand-orange: #F57C00;
    --brand-orange-light: #FFB74D;
    --brand-orange-soft: rgba(245, 124, 0, 0.15);
    
    --brand-red: #EF5350;
    --brand-red-soft: rgba(239, 83, 80, 0.15);
    
    --brand-yellow: #FFD54F;
    --brand-yellow-light: rgba(255, 213, 79, 0.15);
    
    --brand-green: #66BB6A;
    --brand-green-soft: rgba(102, 187, 106, 0.15);
    
    --text-primary: #FFFDF8;     /* Light Warm Cream headings */
    --text-body: #E6D7CD;        /* Soft cream body text */
    --text-muted: #BCAAA4;       /* Muted helper text */
    
    --card-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    --card-shadow-hover: 0 20px 45px rgba(245, 124, 0, 0.28);
    
    --navy-gradient: linear-gradient(135deg, #2D211C, #4E342E);
    --footer-gradient: linear-gradient(135deg, #1F1512, #2D211C);
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Top Bar Styling */
.top-bar {
    background-color: var(--text-primary);
    color: var(--bg-main);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.bar-separator {
    color: rgba(255, 259, 240, 0.4);
}

/* Header & Glassmorphic Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    transition: var(--transition-smooth);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    border: 2px solid var(--brand-gold);
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
}

.logo-text span {
    color: var(--brand-orange);
}

.nav-menu {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.8;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--brand-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-orange);
    transition: var(--transition-smooth);
}

.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

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

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.theme-toggle:hover {
    background-color: rgba(244, 123, 32, 0.1);
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

[data-theme="dark"] .sun-icon {
    display: block;
}

[data-theme="dark"] .moon-icon {
    display: none;
}

[data-theme="light"] .sun-icon {
    display: none;
}

[data-theme="light"] .moon-icon {
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gold-gradient);
    color: white;
    box-shadow: 0 15px 40px rgba(245, 124, 0, 0.35);
    border: none;
}

.btn-primary:hover {
    background: var(--gold-gradient);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 18px 45px rgba(245, 124, 0, 0.45);
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--brand-gold);
    border: 2px solid var(--brand-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.btn-secondary:hover {
    background: var(--brand-gold);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.btn-success {
    background: var(--brand-green);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.2);
}

.btn-success:hover {
    background: #43A047;
    transform: translateY(-2px);
}

.btn-primary-glass {
    background: rgba(244, 123, 32, 0.1);
    color: var(--brand-orange);
    border: 1px solid rgba(244, 123, 32, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
}

.btn-primary-glass:hover {
    background: var(--brand-orange);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFDF8, #FFF3E0, #FFF8E8);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--brand-orange);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--brand-gold);
    bottom: -50px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--brand-green-light);
    top: 30%;
    left: 40%;
    opacity: 0.08;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(90deg, var(--brand-orange) 0%, var(--brand-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244,123,32,0.15) 0%, transparent 70%);
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
    border-radius: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

/* Hero Floating Badges */
.hero-floating-badge {
    position: absolute;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.fb-icon {
    font-size: 24px;
}

.hero-floating-badge h4 {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.hero-floating-badge p {
    font-size: 11px;
    color: var(--text-muted);
}

.badge-1 {
    top: 10%;
    left: -25%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: -25%;
    animation-delay: 2s;
}

.badge-3 {
    bottom: -8%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Hero Stats Banner */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin-top: 80px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 5;
    text-align: center;
}

.stat-card h3 {
    font-size: 32px;
    color: var(--brand-orange);
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.stat-card-divider {
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
    margin: 0 auto;
}

/* Sections Styling */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.sub-title {
    font-size: 14px;
    color: var(--brand-orange);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.section-main-title {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--brand-gold);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 16px;
}

/* Courses Explorer Section */
.courses-section {
    padding: 80px 0;
}

.course-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-surface);
    color: var(--text-primary);
    font-size: 15px;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.search-box input:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 4px 20px rgba(244, 123, 32, 0.15);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 30px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-body);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.cat-icon {
    width: 18px;
    height: 18px;
    color: var(--brand-gold);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--brand-orange-soft);
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.1);
}

.filter-btn:hover .cat-icon, .filter-btn.active .cat-icon {
    color: var(--brand-orange);
    transform: rotate(360deg);
}

/* Courses Grid & Cards */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.course-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--brand-gold);
}

.card-image-box {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.course-card:hover .card-img {
    transform: scale(1.05);
}

.badge-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #102A43; /* Deep Navy always for solid tag */
    color: #FFF9F0;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.badge-discount {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--brand-red);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}

.card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: var(--brand-yellow);
    font-size: 14px;
}

.rating-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.card-title {
    font-size: 19px;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-intro {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 15px;
}

.price-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.card-affiliate-badge {
    background-color: rgba(185, 231, 105, 0.15);
    border: 1px solid rgba(185, 231, 105, 0.3);
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[data-theme="dark"] .card-affiliate-badge {
    background-color: rgba(185, 231, 105, 0.08);
}

.badge-label {
    font-size: 11px;
    color: var(--text-primary);
    font-weight: 600;
}

.badge-value {
    font-size: 14px;
    font-weight: 800;
    color: #2E7D32; /* Deep green in light mode */
}

[data-theme="dark"] .badge-value {
    color: var(--brand-green); /* Light Green in dark mode */
}

.card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(16, 42, 67, 0.02);
}

.card-meta-info {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.btn-card-action {
    background: none;
    border: none;
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
}

.btn-card-action:hover {
    color: #e06612;
    transform: translateX(4px);
}

/* Modals styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 42, 67, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: var(--bg-surface);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 16px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal-box {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    background-color: var(--brand-orange);
}

.modal-header-banner {
    position: relative;
    height: 220px;
}

.modal-header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(16, 42, 67, 0.95));
    padding: 30px 24px 20px 24px;
    color: white;
}

.modal-badge {
    background-color: var(--brand-orange);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.modal-body-content {
    padding: 30px 24px;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 30px;
}

.modal-main-detail h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.modal-main-detail p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.syllabus-list {
    list-style: none;
    margin-top: 15px;
}

.syllabus-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.syllabus-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: 800;
}

.modal-price-card {
    background-color: rgba(16, 42, 67, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

[data-theme="dark"] .modal-price-card {
    background-color: rgba(255, 255, 255, 0.02);
}

.sidebar-price-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.sidebar-price-original {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.sidebar-price-current {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.sidebar-discount {
    background-color: var(--brand-orange);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.sidebar-affiliate-box {
    background-color: rgba(185, 231, 105, 0.15);
    border: 1px solid rgba(185, 231, 105, 0.3);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-aff-label {
    font-size: 10px;
    color: var(--text-primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}

.sidebar-aff-val {
    font-size: 16px;
    font-weight: 800;
    color: #2E7D32;
}

[data-theme="dark"] .sidebar-aff-val {
    color: var(--brand-green);
}

.sidebar-buy-btn {
    display: block;
    width: 100%;
    background-color: var(--brand-orange);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(244, 123, 32, 0.2);
}

.sidebar-buy-btn:hover {
    background-color: #e06612;
}

/* Affiliate Section */
.affiliate-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--brand-orange-soft);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.affiliate-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(185,231,105,0.08) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    pointer-events: none;
}

.affiliate-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.affiliate-info-box h2 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 15px 0 20px 0;
}

.affiliate-sin-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.affiliate-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aff-step {
    display: flex;
    gap: 20px;
}

.step-num {
    background-color: var(--brand-orange);
    color: white;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.step-text h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.step-text p {
    font-size: 13.5px;
    color: var(--text-muted);
}

.affiliate-features-box {
    position: relative;
}

.feature-card-glow {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border-left: 5px solid var(--brand-gold);
}

.feature-card-glow h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
}

.feat-icon {
    color: var(--brand-green);
    margin-top: 2px;
}

/* Earnings Calculator Section */
.calculator-section {
    padding: 80px 0;
    background-color: var(--brand-orange-soft);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.calculator-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    margin-top: 20px;
}

.calc-slider-group {
    margin-bottom: 30px;
}

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

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.slider-label {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-primary);
}

.slider-count {
    background-color: var(--brand-orange);
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

/* Styled Range Input */
.calc-range-input {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    outline: none;
    margin-bottom: 6px;
}

.calc-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-orange);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease;
}

.calc-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-footer-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.results-container {
    display: flex;
    align-items: stretch;
}

.results-card {
    background: var(--navy-gradient);
    border-radius: 12px;
    padding: 30px;
    color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.results-card-title {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    text-align: center;
}

.earnings-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--brand-green);
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 10px rgba(185, 231, 105, 0.2);
}

.results-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 20px 0;
}

.annual-row, .sales-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    margin-bottom: 12px;
}

.annual-row strong {
    font-size: 18px;
    color: var(--brand-gold);
}

.sales-row span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

.goal-indicator-box {
    margin-top: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 8px;
}

.goal-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.goal-header span:last-child {
    color: var(--brand-gold);
}

.goal-progress-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.goal-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-green-light), var(--brand-gold));
    transition: width 0.3s ease;
}

.goal-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

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

.testimonial-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(245, 124, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 24px;
    position: relative;
}

.testimonial-content .quote {
    font-size: 14.5px;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.6;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 16px;
}

.author-info h4 {
    font-size: 14px;
    color: var(--text-primary);
}

.author-info p {
    font-size: 11px;
    color: var(--text-muted);
}

/* Contact & Registration Section */
.contact-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

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

.contact-info h2 {
    font-size: 40px;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-info h2 span {
    color: var(--brand-orange);
    font-size: 28px;
    display: block;
    font-weight: 600;
    margin-top: 5px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method-item {
    display: flex;
    gap: 20px;
}

.c-icon {
    font-size: 28px;
}

.contact-method-item h4 {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-method-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-form-box {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.form-title {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-surface);
    color: var(--text-primary);
    font-size: 14.5px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group select {
    appearance: none;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--brand-orange);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-group textarea ~ label {
    top: 24px;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 10px;
    font-size: 11px;
    background-color: var(--bg-surface);
    padding: 0 6px;
    color: var(--brand-orange);
    font-weight: 700;
}

/* Footer Section */
.footer-main {
    background: var(--footer-gradient);
    color: var(--text-body);
    padding: 80px 0 0 0;
    border-top: 1px solid var(--border-color);
}

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

.footer-col-about p {
    color: var(--text-muted);
    font-size: 13.5px;
}

.social-icon {
    background-color: rgba(255, 249, 240, 0.05);
    color: #FFF9F0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.social-icon:hover {
    background-color: var(--brand-orange);
}

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 13.5px;
}

.footer-col ul li a:hover {
    color: var(--brand-orange);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 16px;
    border: none;
    background-color: var(--bg-surface);
    color: var(--text-body);
    font-size: 13.5px;
    outline: none;
}

.newsletter-form button {
    background-color: var(--brand-orange);
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background-color: #e06612;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
}

.footer-bottom-links a:hover {
    color: var(--brand-orange);
}

/* Toast System */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: #102A43; /* Navy base */
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: 600;
    border-left: 5px solid var(--brand-green-light); /* Green success indicator */
    transform: translateY(100px);
    opacity: 0;
    animation: toast-fade-in 0.3s forwards, toast-fade-out 0.3s 3.7s forwards;
}

@keyframes toast-fade-in {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes toast-fade-out {
    to {
        transform: translateY(-20px);
        opacity: 0;
    }
}

/* Mobile responsive menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 24px;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card-divider {
        display: none;
    }
    
    .affiliate-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calculator-box {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-surface);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .header-actions .cta-btn {
        display: none;
    }
    
    .hero-floating-badge {
        display: none;
    }
    
    .modal-body-content {
        grid-template-columns: 1fr;
    }
    
    .footer-main-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}


/* Shopping Cart Drawer Custom Styles */
.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 12px;
}
.cart-item-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.cart-item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-orange);
}
.btn-remove-cart {
    background: none;
    border: none;
    color: var(--ph-red, #D82D3E);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}


/* Mobile table scrolling fix */
.admin-table-box {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.admin-table {
    min-width: 600px; /* Forces scroll bar on mobile viewports instead of squishing columns */
}


/* AI Mastery Program Details Section CSS Styling */
.ai-mastery-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}
.ai-mastery-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-orange);
    box-shadow: 0 10px 25px rgba(244,123,32,0.1);
}
.ai-card-header {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}
.ai-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ai-card-list li {
    font-size: 12.5px;
    color: var(--text-muted);
    position: relative;
    padding-left: 15px;
    line-height: 1.5;
}
.ai-card-list li::before {
    content: "•";
    color: var(--brand-orange);
    position: absolute;
    left: 0;
    font-weight: 800;
}
.career-chip {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition-smooth);
}
.career-chip:hover {
    background-color: rgba(244,123,32,0.05);
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

/* Premium Section styling overrides */
.premium-section {
    background-color: #FFF8E8 !important;
}
[data-theme="dark"] .premium-section {
    background-color: #2A1E1A !important;
}

#headerCtaBtn {
    background: var(--orange-gradient) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(245, 124, 0, 0.25) !important;
}
#headerCtaBtn:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 12px 25px rgba(245, 124, 0, 0.35) !important;
}



/* ==================== HERO SLIDER CUSTOM AESTHETICS ==================== */
.hero-bg-paddy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: saturate(1.6) brightness(1.1) contrast(1.05); /* Increased saturation to 1.6 and brightness to 1.1 */
    opacity: 1.0; /* Maximized opacity to 1.0 (100% visible) */
    z-index: 1;
    transform: scale(1.1);
    animation: kenburns 22s infinite ease-in-out;
    transition: background-image 0.8s ease-in-out;
    background-image: url('assets/glass_digital_campus.jpg');
}

@keyframes kenburns {
    0% { transform: scale(1) blur(20px); }
    50% { transform: scale(1.1) blur(20px); }
    100% { transform: scale(1) blur(20px); }
}

/* Floating Animation */
@keyframes floatUp {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
.float-anim {
    animation: floatUp 5s ease-in-out infinite;
}

/* Rotating Animation */
@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.rotate-anim {
    animation: rotateSlow 20s infinite linear;
}

/* Laptop and Phone CSS frames */
.mock-laptop {
    position: relative;
    width: 320px;
    height: 190px;
    background: #111;
    border-radius: 12px 12px 0 0;
    border: 6px solid #333;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
}
.mock-laptop-base {
    width: 360px;
    height: 12px;
    background: #555;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.mock-phone {
    position: absolute;
    width: 90px;
    height: 160px;
    background: #111;
    border: 4px solid #333;
    border-radius: 12px;
    bottom: -10px;
    right: -25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    z-index: 20;
    overflow: hidden;
}

/* Cylinder commission glow */
.glow-cylinder {
    position: relative;
    width: 160px;
    height: 220px;
    background: linear-gradient(180deg, rgba(212,175,55,0.4), rgba(245,124,0,0.1));
    border: 2px solid rgba(212,175,55,0.6);
    border-radius: 80px / 40px;
    box-shadow: 0 20px 50px rgba(245,124,0,0.25), inset 0 0 20px rgba(212,175,55,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}
.glow-cylinder::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 40px;
    background: rgba(212,175,55,0.6);
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.8);
}

/* Dynamic Stats styling */
.hero-stats-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Golden Sparkle particles */
@keyframes sparkle {
    0% { opacity: 0; transform: translateY(0) scale(0.8); }
    50% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-40px) scale(1.2); }
}
.sparkle-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD54F;
    border-radius: 50%;
    box-shadow: 0 0 10px #FFD54F;
    animation: sparkle 3s infinite ease-in-out;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.4), rgba(255, 243, 224, 0.2), rgba(255, 248, 232, 0.4));
    z-index: 2;
    pointer-events: none;
}


/* Introduction Video Section Styles */
.intro-video-section {
    padding: 80px 0;
    position: relative;
    background-color: var(--bg-main);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.video-container-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(244, 123, 32, 0.3), rgba(255, 185, 0, 0.1), rgba(244, 123, 32, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.video-container-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px -10px rgba(244, 123, 32, 0.25);
}

.video-frame-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    background: radial-gradient(circle, rgba(244, 123, 32, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(20px);
}

.video-iframe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background-color: #000;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Premium Footer Social Icons */
.footer-main .social-icons {
    margin-top: 20px;
    display: flex;
    gap: 16px;
}

.footer-main .social-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-main .social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.footer-main .social-icon:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.05);
}

.footer-main .social-icon:hover svg {
    transform: scale(1.1);
}

/* Brand specific hover transitions */
.footer-main .social-icon.facebook:hover {
    background-color: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
}

.footer-main .social-icon.youtube:hover {
    background-color: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
}

.footer-main .social-icon.tiktok:hover {
    background-color: #010101;
    border-color: #010101;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.footer-main .social-icon.whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

