/* ========================================
   SR Music Group - Style Sheet
   Version: 7.0.0
   Last Updated: 2025-01-23
======================================== */

/* ========================================
   CSS Variables
======================================== */
:root {
    /* Dashboard-matching colors */
    --color-primary: #0B4C8C;
    --color-primary-dark: #083a6d;
    --color-primary-light: rgba(11, 76, 140, 0.1);
    --color-secondary: #FFD700;
    --color-secondary-dark: #FFC700;
    
    --color-white: #FFFFFF;
    --color-black: #1a202c;
    --color-gray-dark: #374151;
    --color-gray-medium: #64748b;
    --color-gray-light: #f8f9fb;
    --color-border: #e2e8f0;
    
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-warning: #f59e0b;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 3.5rem;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(11, 76, 140, 0.1);
    --shadow-lg: 0 8px 24px rgba(11, 76, 140, 0.15);
}

/* ========================================
   Global Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: #1a202c;
    background-color: #f5f7fa;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   Utility Classes
======================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

.section {
    padding: var(--spacing-md) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--spacing-lg) 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #1a202c;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-md);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card Component */
.card {
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 10px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(11, 76, 140, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    border-color: #0B4C8C;
}

/* Button Component */
.btn {
    display: inline-block;
    padding: 0.625rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    color: var(--color-white);
    border-color: #0B4C8C;
    box-shadow: 0 2px 8px rgba(11, 76, 140, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #083a6d 0%, #062d54 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 76, 140, 0.3);
    border-color: #083a6d;
}

.btn-audio-distribution {
    background-color: #FFD700;
    color: var(--color-black);
    border-color: #FFD700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.btn-audio-distribution:hover {
    background-color: #FFC700;
    border-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-black);
}

.btn-audio-distribution i {
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-audio-distribution:hover i {
    transform: translateX(4px);
}

.hero-buttons {
    margin-top: 1rem;
}

.btn-secondary {
    background-color: #ffffff;
    color: #1a202c;
    border-color: #e2e8f0;
}

.btn-secondary:hover {
    background-color: #f8f9fb;
    color: #0B4C8C;
    border-color: #0B4C8C;
    box-shadow: 0 4px 12px rgba(11, 76, 140, 0.1);
}

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

@media (max-width: 767px) {
    .btn {
        width: 100%;
        padding: 0.75rem 1.75rem;
    }
}

/* ========================================
   Navigation
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: var(--transition);
    position: relative;
    overflow: visible;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    z-index: 1;
}

.navbar::after {
    display: none;
}

.nav-wrapper {
    position: relative;
    z-index: 2;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    height: 100%;
}

.logo-img {
    height: 55px;
    width: 55px;
    object-fit: cover;
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    color: white;
    white-space: nowrap;
}

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

@media (min-width: 768px) {
    .logo-img {
        height: 65px;
        width: 65px;
    }
    
    .logo-text {
        font-size: 1.625rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 48px;
        width: 48px;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
}

.nav-menu {
    display: none;
    gap: var(--spacing-md);
    align-items: center;
    list-style: none;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex !important;
        align-items: center;
        margin-left: var(--spacing-xl);
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: white;
}

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

.nav-link.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    margin-left: var(--spacing-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link.nav-btn::after {
    display: none;
}

.nav-link.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.demo-badge {
    display: inline-block;
    background-color: #FFD700;
    color: var(--color-black);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .nav-link.nav-btn {
        margin-left: 0;
        margin-top: var(--spacing-sm);
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .demo-badge {
        font-size: 0.5625rem;
        padding: 0.1rem 0.3rem;
    }
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10001 !important;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.mobile-toggle:active {
    transform: scale(0.95);
}

@media (max-width: 767px) {
    .mobile-toggle {
        display: flex;
    }
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none !important;
    }
    
    .nav-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

/* Ensure mobile toggle is always visible on small screens */
@media (max-width: 767px) {
    .mobile-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

.mobile-toggle.active .hamburger:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
        flex-direction: column;
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
        align-items: stretch;
        z-index: 10000 !important;
        display: flex !important;
        visibility: hidden;
        -webkit-overflow-scrolling: touch;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex !important;
        align-items: stretch;
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
        z-index: 10000 !important;
    }
    
    .nav-menu.active li {
        pointer-events: auto !important;
    }
    
    .nav-menu.active .nav-link {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .nav-link {
        padding: var(--spacing-sm) 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
        display: block !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
        min-height: 44px;
        display: flex !important;
        align-items: center;
        touch-action: manipulation;
        cursor: pointer;
        pointer-events: auto !important;
        position: relative;
        z-index: 10001 !important;
        text-decoration: none;
        width: 100%;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:active {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
    }
    
    .nav-menu li {
        pointer-events: auto !important;
        position: relative;
        z-index: 10001 !important;
    }
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 767px) {
        .mobile-toggle {
            cursor: pointer;
            -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
            z-index: 10001 !important;
        }
        
        .nav-menu {
            -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
            z-index: 10000 !important;
        }
        
        .nav-menu.active {
            -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
            z-index: 10000 !important;
        }
    }
}

/* ========================================
   Hero Section
======================================== */
.hero {
    padding-top: calc(var(--spacing-lg) + 65px);
    padding-bottom: var(--spacing-lg);
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 76, 140, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(11, 76, 140, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero {
        padding-top: calc(var(--spacing-xl) + 65px);
        padding-bottom: var(--spacing-xl);
        min-height: 80vh;
    }
    
    .hero::before {
        width: 500px;
        height: 500px;
        top: -200px;
        right: -200px;
    }
    
    .hero::after {
        width: 400px;
        height: 400px;
        bottom: -150px;
        left: -150px;
    }
}

/* Animated Background Elements */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-icon {
    position: absolute;
    color: #666666;
    font-size: 2rem;
    animation: float 20s infinite ease-in-out;
    opacity: 0.6;
    z-index: 2;
}

.animated-icon i {
    display: block;
}

/* Individual icon positions and animations */
.icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    font-size: 2rem;
}

.icon-3 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
    font-size: 2.2rem;
}

.icon-4 {
    top: 60%;
    right: 10%;
    animation-delay: 6s;
    font-size: 2.3rem;
}

.icon-5 {
    top: 30%;
    left: 50%;
    animation-delay: 1s;
    font-size: 1.8rem;
}

.icon-6 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
    font-size: 2rem;
}

.icon-7 {
    bottom: 30%;
    right: 25%;
    animation-delay: 5s;
    font-size: 2.1rem;
}

.icon-8 {
    top: 15%;
    left: 70%;
    animation-delay: 7s;
    font-size: 1.9rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(5deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) translateX(-15px) rotate(-5deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-40px) translateX(10px) rotate(3deg);
        opacity: 0.5;
    }
}

@media (min-width: 768px) {
    .animated-icon {
        font-size: 3rem;
        opacity: 0.3;
    }
    
    .icon-1 { font-size: 3.5rem; }
    .icon-2 { font-size: 3rem; }
    .icon-3 { font-size: 3.2rem; }
    .icon-4 { font-size: 3.3rem; }
    .icon-5 { font-size: 2.8rem; }
    .icon-6 { font-size: 3rem; }
    .icon-7 { font-size: 3.1rem; }
    .icon-8 { font-size: 2.9rem; }
}

/* Ensure content is above animated background */
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--spacing-md);
    align-items: center;
}

/* Mobile: Image on top */
.hero-text {
    order: 2;
}

.hero-image {
    order: 1;
}

/* Desktop: Image on right (original layout) */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--spacing-xl);
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #1a202c;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 90%;
    font-weight: 400;
}

.highlight-red {
    color: #ef4444;
    font-weight: 700;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
        max-width: 85%;
        margin-bottom: 2.5rem;
        line-height: 1.75;
    }
}

.hero-platforms {
    display: none;
}

.platform-join-btn {
    margin: 0;
    white-space: nowrap;
}

.platform-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    background-color: var(--color-white);
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.platform-icon:hover {
    background: #f8f9fb;
    border-color: #0B4C8C;
    box-shadow: 0 4px 12px rgba(11, 76, 140, 0.15);
    transform: translateY(-2px);
}

.platform-icon i {
    font-size: 1.25rem;
}

.platform-icon span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* YouTube - Red */
.platform-youtube {
    color: #FF0000;
}

.platform-youtube i,
.platform-youtube span {
    color: #FF0000;
}

.platform-youtube:hover {
    background-color: #FF0000;
    color: var(--color-white);
    border-color: #FF0000;
}

.platform-youtube:hover i,
.platform-youtube:hover span {
    color: var(--color-white);
}

/* Facebook - Blue */
.platform-facebook {
    color: #1877F2;
}

.platform-facebook i,
.platform-facebook span {
    color: #1877F2;
}

.platform-facebook:hover {
    background-color: #1877F2;
    color: var(--color-white);
    border-color: #1877F2;
}

.platform-facebook:hover i,
.platform-facebook:hover span {
    color: var(--color-white);
}

/* Instagram - Gradient Colors */
.platform-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-color: #E1306C;
}

.platform-instagram i,
.platform-instagram span {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--color-white);
    border-color: #E1306C;
}

.platform-instagram:hover i,
.platform-instagram:hover span {
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--color-white);
}

/* Join Now Button - Blue */
.platform-join-btn {
    background-color: #1877F2;
    border-color: #1877F2;
    color: var(--color-white);
}

.platform-join-btn:hover {
    background-color: #166FE5;
    border-color: #166FE5;
    color: var(--color-white);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.hero-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
}

.hero-image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-white) 100%);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
}

.hero-image-placeholder i {
    font-size: 4rem;
    color: var(--color-gray-medium);
    opacity: 0.6;
}

@media (min-width: 768px) {
    .hero-image-placeholder i {
        font-size: 5rem;
    }
}

/* ========================================
   Section Separator
======================================== */
.section-separator {
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
    margin: var(--spacing-md) 0;
}

@media (min-width: 768px) {
    .section-separator {
        margin: var(--spacing-lg) 0;
    }
}

/* ========================================
   Announcement Banner
======================================== */
.announcement-banner {
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    padding: var(--spacing-md) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.announcement-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    z-index: 1;
}

.announcement-banner::after {
    display: none;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .banner-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.banner-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .banner-title {
        font-size: 1.375rem;
        font-weight: 700;
    }
}

.banner-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    margin: 0;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .banner-subtitle {
        font-size: 1rem;
    }
}

.banner-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    justify-content: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .banner-logo-wrapper {
        justify-content: flex-start;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }
}

.banner-message {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .banner-message {
        margin-top: 0.75rem;
    }
}

.banner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .banner-logo {
        height: 50px;
    }
}

.banner-brand-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.banner-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .banner-brand-name {
        font-size: 1.75rem;
    }
}

.banner-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .banner-tagline {
        font-size: 0.875rem;
    }
}

.btn-banner {
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    color: #ffffff;
    border: 1px solid #0B4C8C;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(11, 76, 140, 0.2);
    padding: 0.625rem 1.75rem;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-banner:hover {
    background: linear-gradient(135deg, #083a6d 0%, #062d54 100%);
    border-color: #083a6d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 76, 140, 0.3);
}

.btn-banner i {
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-banner:hover i {
    transform: translateX(4px);
}

/* ========================================
   Boost Revenue Section
======================================== */
.boost-revenue {
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    padding: var(--spacing-lg) 0;
}

.boost-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: grid;
    gap: var(--spacing-md);
    align-items: center;
}

.boost-content::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.boost-content::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.boost-content > * {
    position: relative;
    z-index: 2;
}

.boost-content .section-title {
    text-align: left;
    color: white;
    margin-bottom: var(--spacing-md);
}

/* Mobile and Tablet: Image at bottom */
.boost-text {
    order: 1;
}

.boost-image {
    order: 2;
}

/* Desktop: Image on left, text on right */
@media (min-width: 768px) {
    .boost-content {
        grid-template-columns: 0.8fr 1.2fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-xl);
    }
    
    .boost-text {
        order: 2;
    }
    
    .boost-image {
        order: 1;
    }
}

.boost-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.boost-list li {
    padding: var(--spacing-sm) 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-gray-medium);
    line-height: 1.6;
}

.boost-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-black);
    font-weight: 700;
    font-size: 1.125rem;
}

.boost-text-content {
    margin: var(--spacing-md) 0;
}

.boost-text-content p {
    padding: var(--spacing-sm) 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.boost-text-content p:last-child {
    margin-bottom: 0;
}

.boost-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.boost-image-placeholder {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.boost-image-placeholder i {
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.8);
    opacity: 0.8;
}

@media (min-width: 768px) {
    .boost-img {
        max-width: 400px;
    }
    
    .boost-image-placeholder {
        max-width: 400px;
    }
    
    .boost-image-placeholder i {
        font-size: 3.5rem;
    }
}

/* ========================================
   Services Section
======================================== */
.services {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%),
                radial-gradient(ellipse at center, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
}

.service-card {
    text-align: center;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    color: white;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon i {
    font-size: 2rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: #1a202c;
}

.card-text {
    color: #64748b;
    line-height: 1.6;
}

.platform-card {
    text-align: left;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-sm);
}

.platform-header i {
    font-size: 2rem;
    color: white;
}

.content-id-banner {
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
}

.content-id-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.content-id-banner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.content-id-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.content-id-content i {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.content-id-content > div {
    flex: 1;
}

.content-id-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
    line-height: 1;
}

.content-id-content p {
    font-size: 0.875rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* ========================================
   Rights Management Section
======================================== */
.rights-content {
    display: grid;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .rights-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

.rights-description {
    font-size: 1.125rem;
    color: var(--color-gray-medium);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.rights-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.rights-list li {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.rights-list i {
    color: var(--color-black);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.rights-list span {
    color: var(--color-gray-medium);
}

.rights-list strong {
    color: var(--color-black);
}

.rights-image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-white) 100%);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rights-image-placeholder i {
    font-size: 6rem;
    color: var(--color-gray-medium);
}

/* ========================================
   Benefits Section
======================================== */
.benefits {
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    border-top: 1px solid #e2e8f0;
}

.benefit-card {
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    color: #1a202c;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(11, 76, 140, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: rgba(11, 76, 140, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.benefit-card > * {
    position: relative;
    z-index: 2;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    color: white;
    border-radius: 50%;
    border: 1px solid rgba(11, 76, 140, 0.2);
    box-shadow: 0 4px 12px rgba(11, 76, 140, 0.15);
}

.benefit-icon i {
    font-size: 1.75rem;
}

.benefit-card .card-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Mission Section
======================================== */
.mission {
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    border-top: 1px solid #e2e8f0;
}

.mission-content {
    display: grid;
    gap: var(--spacing-md);
    align-items: center;
}

@media (min-width: 768px) {
    .mission-content {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--spacing-lg);
    }
}

.mission-description {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.mission-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
}

.mission-image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-white) 100%);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-image-placeholder i {
    font-size: 5rem;
    color: var(--color-gray-medium);
    opacity: 0.6;
}

/* ========================================
   Creators Announcement Banner
======================================== */
.creators-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: var(--spacing-md) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.creators-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.creators-banner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.creators-banner .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .creators-banner .banner-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.creators-banner .banner-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .creators-banner .banner-title {
        font-size: 1.75rem;
    }
}

.creators-banner .banner-subtitle {
    font-size: 1rem;
    color: var(--color-white);
    opacity: 0.9;
    margin: 0;
}

@media (min-width: 768px) {
    .creators-banner .banner-subtitle {
        font-size: 1.125rem;
    }
}

.creators-banner .btn-banner {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.creators-banner .btn-banner:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
    color: white;
}

.creators-banner .btn-banner i {
    font-size: 0.875rem;
    transition: var(--transition);
}

.creators-banner .btn-banner:hover i {
    transform: translateX(4px);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: #252525;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 6px;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ========================================
   Team Section
======================================== */
.team-card {
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    color: #1a202c;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(11, 76, 140, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: rgba(11, 76, 140, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.team-card > * {
    position: relative;
    z-index: 2;
}

.team-image {
    margin-bottom: var(--spacing-sm);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.team-image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-white) 100%);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.team-image-placeholder i {
    font-size: 4rem;
    color: var(--color-gray-medium);
}

.team-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1a202c;
}

.team-name a {
    color: #1a202c;
    text-decoration: none;
    transition: var(--transition);
}

.team-name a:hover {
    color: #0B4C8C;
    text-decoration: underline;
}

.team-name a.javed-link {
    color: #1a202c;
}

.team-name a.javed-link:hover {
    color: #0B4C8C;
    text-decoration: underline;
}

.javed-blue {
    color: #0B4C8C;
    font-weight: 600;
}

.team-image a {
    display: block;
    transition: var(--transition);
}

.team-image a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.team-role {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.team-bio {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ========================================
   Contact Section
======================================== */
.contact {
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    border-top: 1px solid #e2e8f0;
}

.contact-content {
    display: grid;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

.contact-form-wrapper {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: var(--spacing-md);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: var(--spacing-lg);
    }
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
    color: #64748b;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #ffffff;
    color: #1a202c;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94a3b8;
}

.form-select option {
    background-color: #ffffff;
    color: #1a202c;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #0B4C8C;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(11, 76, 140, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a202c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
}

.form-select option {
    padding: 0.5rem;
}

.form-textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    color: #ffffff;
    border-radius: 6px;
}

.contact-icon i {
    font-size: 1.25rem;
}

.contact-info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: #1a202c;
}

.contact-info-item p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    color: #ffffff;
    padding: var(--spacing-lg) 0 var(--spacing-sm);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    z-index: 1;
}

.footer::after {
    display: none;
}

.footer-content {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-img {
    height: 50px;
    width: 50px;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-white);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .footer-logo-img {
        height: 60px;
        width: 60px;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin: var(--spacing-sm) 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.developer-credit {
    color: var(--color-white) !important;
    font-size: 0.875rem;
}

.developer-credit .fa-heart {
    color: #FFD700; /* Yellow color to match the link */
    margin: 0 0.25rem;
    font-size: 0.75rem;
}

.developer-credit a {
    color: #FFD700 !important; /* Yellow color */
    text-decoration: none;
    transition: var(--transition);
}

.developer-credit a:hover {
    color: white !important; /* White on hover */
    text-decoration: underline;
}

/* ========================================
   Animations
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transitions for all interactive elements */
button,
a,
.card,
.feature-item {
    transition: var(--transition);
}

/* ========================================
   Accessibility
======================================== */
*:focus-visible {
    outline: 2px solid var(--color-black);
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   Print Styles
======================================== */
@media print {
    .navbar,
    .mobile-toggle,
    .footer {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* ========================================
   Mobile Responsive Styles - Index Page
======================================== */

/* Base Mobile Styles */
@media (max-width: 767px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2rem 0 !important;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding-top: calc(65px + 1rem) !important;
        padding-bottom: 2rem !important;
        min-height: auto !important;
    }
    
    .hero-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-platforms {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: stretch !important;
    }
    
    .platform-icon {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8125rem !important;
    }
    
    .platform-join-btn {
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
        justify-content: center !important;
    }
    
    .hero-image {
        width: 100% !important;
        margin-top: 1rem !important;
    }
    
    /* Announcement Banner Mobile */
    .announcement-banner {
        padding: 1.5rem 0 !important;
    }
    
    .banner-content {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }
    
    .banner-logo-wrapper {
        justify-content: center !important;
        margin-bottom: 0.75rem !important;
    }
    
    .banner-logo {
        width: 48px !important;
        height: 48px !important;
    }
    
    .banner-title {
        font-size: 1.125rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .banner-subtitle {
        font-size: 0.8125rem !important;
    }
    
    .btn-banner {
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
        justify-content: center !important;
    }
    
    /* Boost Revenue Section Mobile */
    .boost-revenue-modern {
        padding: 2rem 0 !important;
    }
    
    .boost-revenue-modern > div > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .boost-revenue-modern h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .boost-revenue-modern > div > div > div:first-child > div {
        font-size: 0.75rem !important;
        padding: 0.375rem 0.875rem !important;
    }
    
    .boost-revenue-modern > div > div > div:first-child > div > div {
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .boost-revenue-modern > div > div > div:first-child > div > div > div:first-child {
        width: 32px !important;
        height: 32px !important;
    }
    
    .boost-revenue-modern > div > div > div:first-child > div > div > div:first-child span {
        font-size: 18px !important;
    }
    
    .boost-revenue-modern > div > div > div:first-child > div > div > div:last-child h4 {
        font-size: 0.9375rem !important;
        margin-bottom: 0.375rem !important;
    }
    
    .boost-revenue-modern > div > div > div:first-child > div > div > div:last-child p {
        font-size: 0.8125rem !important;
        line-height: 1.6 !important;
    }
    
    .boost-revenue-modern > div > div > div:first-child > div > div:last-child {
        padding: 1rem !important;
        margin-top: 0.75rem !important;
    }
    
    .boost-revenue-modern > div > div > div:first-child > div > div:last-child > div {
        flex-direction: column !important;
        gap: 0.75rem !important;
        text-align: center !important;
    }
    
    .boost-revenue-modern > div > div > div:first-child > div > div:last-child > div span {
        font-size: 24px !important;
    }
    
    .boost-revenue-modern > div > div > div:first-child > div > div:last-child > div p {
        font-size: 0.875rem !important;
    }
    
    .boost-revenue-modern > div > div > div:last-child {
        margin-top: 1rem !important;
    }
    
    .boost-revenue-modern > div > div > div:last-child > div {
        padding: 1rem !important;
    }
    
    .boost-revenue-modern > div > div > div:last-child > div:last-child {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.875rem !important;
        bottom: -15px !important;
    }
    
    .boost-revenue-modern > div > div > div:last-child > div:last-child span:first-child {
        font-size: 20px !important;
    }
    
    .boost-revenue-modern > div > div > div:last-child > div:last-child span:last-child {
        font-size: 0.875rem !important;
    }
    
    /* Services Section Mobile */
    .services-modern {
        padding: 2rem 0 !important;
    }
    
    .services-modern > div {
        padding: 0 1rem !important;
    }
    
    .services-modern > div > div:first-child {
        margin-bottom: 2rem !important;
    }
    
    .services-modern > div > div:first-child > div {
        font-size: 0.75rem !important;
        padding: 0.375rem 0.875rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .services-modern > div > div:first-child > div span {
        font-size: 16px !important;
    }
    
    .services-modern > div > div:first-child h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .services-modern > div > div:first-child p {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
    }
    
    .services-modern > div > div:nth-child(2) {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .services-modern > div > div:nth-child(2) > div {
        padding: 1.25rem !important;
    }
    
    .services-modern > div > div:nth-child(2) > div > div:first-child {
        margin-bottom: 1rem !important;
    }
    
    .services-modern > div > div:nth-child(2) > div > div:first-child > div:first-child {
        width: 48px !important;
        height: 48px !important;
    }
    
    .services-modern > div > div:nth-child(2) > div > div:first-child > div:first-child i {
        font-size: 24px !important;
    }
    
    .services-modern > div > div:nth-child(2) > div > div:first-child h3 {
        font-size: 1.125rem !important;
    }
    
    .services-modern > div > div:nth-child(2) > div > div:last-child {
        font-size: 0.8125rem !important;
        line-height: 1.6 !important;
    }
    
    .services-modern > div > div:last-child {
        padding: 1.5rem !important;
    }
    
    .services-modern > div > div:last-child > div {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }
    
    .services-modern > div > div:last-child > div > div:first-child,
    .services-modern > div > div:last-child > div > div:last-child {
        width: 60px !important;
        height: 60px !important;
    }
    
    .services-modern > div > div:last-child > div > div:first-child i,
    .services-modern > div > div:last-child > div > div:last-child span {
        font-size: 32px !important;
    }
    
    .services-modern > div > div:last-child > div > div:nth-child(2) h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .services-modern > div > div:last-child > div > div:nth-child(2) p {
        font-size: 0.875rem !important;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 0.625rem 1rem !important;
        font-size: 0.875rem !important;
        min-height: 44px !important;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-banner {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 1.5rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .section-subtitle {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
    }
    
    /* Cards Mobile */
    .card,
    .feature-item,
    .service-card,
    .benefit-card,
    .team-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        padding: 1.5rem !important;
    }
    
    .form-group {
        margin-bottom: 1rem !important;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.75rem !important;
        font-size: 16px !important;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem 0 !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .section {
        padding: 1.5rem 0 !important;
    }
    
    .hero-title {
        font-size: 1.25rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.8125rem !important;
    }
    
    .btn {
        padding: 0.625rem 0.875rem !important;
        font-size: 0.8125rem !important;
    }
    
    .section-title {
        font-size: 1.25rem !important;
    }
    
    .card,
    .feature-item {
        padding: 0.875rem !important;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    html {
        font-size: 12px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .section {
        padding: 1rem 0 !important;
    }
    
    .hero-title {
        font-size: 1.125rem !important;
    }
    
    .btn {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.75rem !important;
    }
}

/* Override Inline Styles for Mobile */
@media (max-width: 767px) {
    /* Force mobile-friendly styles on all inline-styled elements */
    [style*="font-size: 2.5rem"],
    [style*="font-size:2.5rem"] {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    [style*="font-size: 2rem"],
    [style*="font-size:2rem"] {
        font-size: 1.25rem !important;
    }
    
    [style*="font-size: 1.5rem"],
    [style*="font-size:1.5rem"] {
        font-size: 1.125rem !important;
    }
    
    [style*="font-size: 1.125rem"],
    [style*="font-size:1.125rem"] {
        font-size: 0.9375rem !important;
    }
    
    [style*="padding: 4rem"],
    [style*="padding:4rem"] {
        padding: 2rem 0 !important;
    }
    
    [style*="padding: 3rem"],
    [style*="padding:3rem"] {
        padding: 1.5rem !important;
    }
    
    [style*="padding: 2.5rem"],
    [style*="padding:2.5rem"] {
        padding: 1.25rem !important;
    }
    
    [style*="padding: 2rem"],
    [style*="padding:2rem"] {
        padding: 1rem !important;
    }
    
    [style*="margin-bottom: 3rem"],
    [style*="margin-bottom:3rem"] {
        margin-bottom: 1.5rem !important;
    }
    
    [style*="margin-bottom: 1.5rem"],
    [style*="margin-bottom:1.5rem"] {
        margin-bottom: 1rem !important;
    }
    
    [style*="gap: 4rem"],
    [style*="gap:4rem"],
    [style*="gap: 2rem"],
    [style*="gap:2rem"] {
        gap: 1.5rem !important;
    }
    
    [style*="grid-template-columns: repeat(2"],
    [style*="grid-template-columns:repeat(2"] {
        grid-template-columns: 1fr !important;
    }
    
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    [style*="width: 56px"],
    [style*="width:56px"],
    [style*="width: 80px"],
    [style*="width:80px"] {
        width: 48px !important;
    }
    
    [style*="height: 56px"],
    [style*="height:56px"],
    [style*="height: 80px"],
    [style*="height:80px"] {
        height: 48px !important;
    }
    
    [style*="font-size: 28px"],
    [style*="font-size:28px"],
    [style*="font-size: 40px"],
    [style*="font-size:40px"] {
        font-size: 24px !important;
    }
    
    [style*="font-size: 32px"],
    [style*="font-size:32px"] {
        font-size: 20px !important;
    }
    
    [style*="font-size: 20px"],
    [style*="font-size:20px"] {
        font-size: 16px !important;
    }
    
    [style*="font-size: 24px"],
    [style*="font-size:24px"] {
        font-size: 18px !important;
    }
    
    /* Make all flex containers stack on mobile */
    [style*="display: flex"][style*="flex-direction: row"],
    [style*="display:flex"][style*="flex-direction:row"] {
        flex-direction: column !important;
    }
    
    [style*="display: grid"][style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Compact spacing */
    [style*="gap: 2rem"],
    [style*="gap:2rem"] {
        gap: 1rem !important;
    }
    
    [style*="gap: 1.5rem"],
    [style*="gap:1.5rem"] {
        gap: 0.75rem !important;
    }
    
    /* Benefits Section Mobile */
    .benefits {
        padding: 2rem 0 !important;
    }
    
    .benefits .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .benefit-card {
        padding: 1.25rem !important;
    }
    
    .benefit-icon {
        width: 56px !important;
        height: 56px !important;
        font-size: 1.5rem !important;
    }
    
    /* Team Section Mobile */
    .team {
        padding: 2rem 0 !important;
    }
    
    .team .grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .team-card {
        padding: 1.25rem !important;
    }
    
    /* Mission Section Mobile */
    .mission {
        padding: 2rem 0 !important;
    }
    
    .mission-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 2rem 0 !important;
    }
    
    .contact-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .contact-form {
        width: 100% !important;
        padding: 1.25rem !important;
    }
    
    /* Creators Banner Mobile */
    .creators-banner {
        padding: 2rem 0 !important;
    }
    
    .creators-banner .banner-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    /* General Grid Mobile */
    .grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .grid-2 {
        grid-template-columns: 1fr !important;
    }
    
    .grid-3 {
        grid-template-columns: 1fr !important;
    }
    
    .grid-4 {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    [style*="font-size: 1.5rem"],
    [style*="font-size:1.5rem"] {
        font-size: 1.125rem !important;
    }
    
    [style*="padding: 1.5rem"],
    [style*="padding:1.5rem"] {
        padding: 1rem !important;
    }
    
    [style*="padding: 1.25rem"],
    [style*="padding:1.25rem"] {
        padding: 0.875rem !important;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 767px) {
    /* Prevent horizontal scroll */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Ensure all images are responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Prevent text overflow */
    h1, h2, h3, h4, h5, h6, p, span, a, div {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Make all full-width containers respect viewport */
    [style*="width: 100%"] {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Compact all sections */
    section {
        overflow-x: hidden !important;
    }
}

