/* ==========================================================================
   PromoStream Shoppings - Core Premium Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus%20Jakarta%20Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color System */
    --bg-dark: #080711;
    --bg-card: rgba(22, 19, 47, 0.65);
    --bg-card-hover: rgba(33, 29, 68, 0.85);
    --bg-nav: rgba(8, 7, 17, 0.75);
    
    --primary: #8a2be2;
    --primary-glow: rgba(138, 43, 226, 0.4);
    --secondary: #ff2a7a;
    --secondary-glow: rgba(255, 42, 122, 0.4);
    --accent: #00f0ff;
    --accent-glow: rgba(0, 240, 255, 0.3);
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #6b7280;
    
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, var(--accent) 100%);
    --grad-text: linear-gradient(90deg, #ff2a7a, #a855f7, #00f0ff);
    --grad-dark: linear-gradient(180deg, #121026 0%, #080711 100%);
    
    /* Shadows & Borders */
    --border-glass: 1px solid rgba(255, 255, 255, 0.075);
    --border-glow: 1px solid rgba(138, 43, 226, 0.25);
    --shadow-main: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 25px rgba(138, 43, 226, 0.25);
    
    /* Layout */
    --nav-height: 80px;
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, #1c1543 0%, var(--bg-dark) 60%);
    background-attachment: fixed;
}

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

button, input, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   Typography & Headers
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.text-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Reusable UI Components
   ========================================================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: 20px;
    box-shadow: var(--shadow-main);
    transition: var(--transition);
}

.glass-panel:hover {
    background: var(--bg-card-hover);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: var(--shadow-glow);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 42, 122, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 50%, var(--secondary) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-live {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-live .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--error);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.badge-upcoming {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

/* Keyframe Animations */
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 10px var(--error); }
    100% { transform: scale(0.9); opacity: 0.5; }
}

@keyframes spin-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--border-glass);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(8, 7, 17, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
}

.logo svg {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 2rem);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    pointer-events: none;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(138, 43, 226, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: var(--border-glow);
    color: #c084fc;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--white);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Media Area */
.hero-media-wrapper {
    position: relative;
    z-index: 3;
}

.hero-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: var(--border-glass);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.hero-media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-media:hover img {
    transform: scale(1.03);
}

.hero-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 7, 17, 0.9) 0%, rgba(8, 7, 17, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.overlay-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.viewer-count {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.overlay-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stream-host-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stream-host-name {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.floating-glass {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-main);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.floating-glass.secondary-float {
    bottom: auto;
    top: -20px;
    left: auto;
    right: -20px;
    animation: float 4s ease-in-out infinite 2s;
}

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

/* ==========================================================================
   Live Schedule Section
   ========================================================================== */
.schedule-section {
    padding: 8rem 0;
    position: relative;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.schedule-header .section-info {
    text-align: left;
}

.schedule-header .section-subtitle {
    margin-left: 0;
    margin-bottom: 0;
}

/* Countdown Clock */
.countdown-box {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem 1.5rem;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.countdown-timer {
    display: flex;
    gap: 0.6rem;
}

.time-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    background: rgba(0, 240, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    min-width: 42px;
    text-align: center;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.time-unit {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Schedule List Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
}

.schedule-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.schedule-card-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.schedule-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-badge-container {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.schedule-card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.schedule-time {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.schedule-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.schedule-card-hosts {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.host-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.host-names {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.host-names strong {
    color: var(--white);
}

.schedule-card-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-tag {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ==========================================================================
   Deals & Promos Section
   ========================================================================== */
.deals-section {
    padding: 8rem 0;
    background: relative;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: var(--border-glass);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.deal-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 1.5rem;
}

.deal-discount {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--grad-primary);
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(255, 42, 122, 0.2);
}

.deal-icon {
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.1);
    border: var(--border-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.deal-icon svg {
    width: 30px;
    height: 30px;
}

.deal-brand {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.deal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.deal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Code Copier Interaction */
.coupon-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.coupon-box:hover {
    border-color: var(--accent);
    background: rgba(0, 240, 255, 0.02);
}

.coupon-code {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.copy-btn {
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0.2rem;
    border-radius: 4px;
}

.copy-btn:hover {
    transform: scale(1.15);
    background: rgba(0, 240, 255, 0.1);
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works-section {
    padding: 8rem 0;
    background: radial-gradient(circle at 50% 100%, #15103a 0%, var(--bg-dark) 80%);
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    margin-top: 2rem;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3) 20%, rgba(0, 240, 255, 0.3) 80%, transparent);
    z-index: 1;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-card);
    border: var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    box-shadow: var(--shadow-main);
    transition: var(--transition);
    position: relative;
}

.step-card:hover .step-number-circle {
    background: var(--grad-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ==========================================================================
   Contact Section & Custom Form Inputs
   ========================================================================== */
.contact-section {
    padding: 8rem 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: start;
}

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

.contact-info-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-info-desc {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.info-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-item-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-text-box h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.info-text-box p {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

/* Modern Form Element styles */
.contact-form-wrapper {
    padding: 3rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.95rem 1.2rem;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    background: rgba(138, 43, 226, 0.03);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.15);
}

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

.btn-form {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Form Submit Loading states */
.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn.submitting .btn-loader {
    display: inline-block;
}
.btn.submitting .btn-text {
    display: none;
}

/* ==========================================================================
   Footer Section & Newsletters
   ========================================================================== */
.footer {
    background: #05040a;
    border-top: var(--border-glass);
    padding-top: 6rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 0.6fr 0.6fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-circle:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.8rem;
    position: relative;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-newsletter-col h4 {
    margin-bottom: 1rem;
}

.newsletter-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    position: relative;
    width: 100%;
}

.newsletter-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    border-radius: 50px;
    padding: 0.9rem 6.5rem 0.9rem 1.5rem;
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition);
}

.newsletter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.1);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 1.5rem;
    border-radius: 50px;
    background: var(--grad-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    box-shadow: 0 4px 15px rgba(255, 42, 122, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.8rem;
}

.footer-legal-links a {
    color: var(--text-dark);
}

.footer-legal-links a:hover {
    color: var(--text-muted);
}

/* ==========================================================================
   Modals & Popups (Interactive Toast Notifications)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 4, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.modal-content {
    width: 90%;
    max-width: 480px;
    padding: 3rem 2rem;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-icon-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.modal-icon-error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.modal-icon svg {
    width: 36px;
    height: 36px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-close-btn {
    width: 100%;
}

/* Clipboard Toast notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(18, 16, 38, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--accent);
    display: flex;
}

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

.toast-msg {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

/* ==========================================================================
   Secondary Legal Template Styling
   ========================================================================== */
.legal-body {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 6rem;
    min-height: 100vh;
}

.legal-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem;
}

.legal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.legal-date {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-content {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-muted);
}

.legal-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--white);
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
    font-size: 0.98rem;
    list-style-type: disc;
}

.legal-content ol li {
    list-style-type: decimal;
}

.legal-content strong {
    color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-media-wrapper {
        max-width: 550px;
        margin: 0 auto;
    }
    .hero-media img {
        height: 380px;
    }
    .floating-glass {
        display: none; /* Hide extreme floaters on mobile to prevent layout issues */
    }
    .steps-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .steps-container::before {
        display: none; /* Hide connecting horizontal lines on mobile */
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .schedule-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .countdown-box {
        width: 100%;
        padding: 0.6rem 1rem;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: #0c0a1f;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition);
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .legal-card {
        padding: 2rem;
    }
    .legal-header h1 {
        font-size: 2.2rem;
    }
}
