:root {
    /* Axiom Collective v1.1.0 - Academic Premium Color Scheme */
    --primary-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    --secondary-gradient: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    --accent-gradient: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Colors */
    --accent-blue: #3b82f6;
    --accent-green: #059669;
    --accent-gold: #d97706;
    --navy-dark: #1e3a8a;
    --navy-light: #3b82f6;
    --forest-dark: #064e3b;
    --forest-light: #059669;
    --bg-light: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    
    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.25);
    --blur-md: blur(20px);
    --blur-lg: blur(30px);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(30, 58, 138, 0.08);
    --shadow-md: 0 8px 24px rgba(30, 58, 138, 0.12);
    --shadow-lg: 0 16px 40px rgba(30, 58, 138, 0.16);
    --shadow-xl: 0 24px 60px rgba(30, 58, 138, 0.2);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* Add color utilities */
.text-primary {
    color: var(--accent-blue) !important;
}

.text-warning {
    color: var(--accent-amber) !important;
}

/* Section utilities */
.section-padding {
    padding: 100px 0;
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

/* ==================== NAVBAR ==================== */
.navbar-glass {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 1.2rem 0;
    transition: var(--transition);
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 48px;
    transition: var(--transition);
}

.nav-link {
    font-weight: 500;
    margin: 0 0.8rem;
    padding: 0.5rem 0 !important;
    color: var(--text-primary) !important;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-blue) !important;
}

/* Dropdown */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--blur-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 0.8rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: 12px;
    padding: 0.7rem 1.2rem;
    transition: var(--transition);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--accent-blue);
    transform: translateX(5px);
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: 0.15em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

/* Login Button */
.login-btn {
    padding: 0.6rem 1.5rem !important;
    margin: 0 0.5rem !important;
    border-radius: 50px;
    background: rgba(59, 130, 246, 0.08) !important;
    color: var(--accent-blue) !important;
    font-weight: 600;
    transition: var(--transition);
}

.login-btn::after {
    display: none !important;
}

.login-btn:hover {
    background: rgba(59, 130, 246, 0.15) !important;
    transform: translateY(-2px);
}

/* Action Button */
.action-btn {
    background: var(--primary-gradient) !important;
    border-radius: 50px !important;
    padding: 0.7rem 2rem !important;
    margin-left: 0.5rem !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    font-weight: 600;
    transition: var(--transition);
}

.action-btn::after {
    display: none !important;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
    color: white !important;
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15, 15, 30, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==================== HERO SPLIT ==================== */
.hero-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

/* For index.html (original working version) */
.hero-left {
    background: var(--dark-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-left.hero-image-bg {
    background: none;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-left.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.75) 100%);
    z-index: 1;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-right {
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

/* Content wrapper inside hero-left (for index.html) */
.hero-left .hero-content {
    max-width: 600px;
    color: white;
    position: relative;
    z-index: 2;
}

/* For new pages (our-story, pricing, etc.) */
.hero-grid {
    display: contents;
}

.hero-grid .hero-content {
    background: var(--dark-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content-inner {
    max-width: 600px;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-grid .hero-stats {
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.hero-stats-inner {
    max-width: 500px;
    width: 100%;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    max-width: 500px;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

.badge-glass,
.hero-left .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.hero-content-inner h1,
.hero-left .hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    margin-bottom: 1.5rem;
}

.hero-content-inner .lead,
.hero-left .hero-content .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.stat-glass,
.stat-card-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--blur-md);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-glass:hover,
.stat-card-glass:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ==================== BUTTONS ==================== */
.btn-glass-primary {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: var(--transition);
    font-size: 1rem;
}

.btn-glass-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-glass-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--accent-blue);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(59, 130, 246, 0.2);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-glass-secondary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--accent-blue);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* ==================== SERVICES FLOAT ==================== */
.services-float {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--blur-md);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.glass-card-sm {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--blur-md);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.glass-card:hover,
.glass-card-sm:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.icon-glass {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent-blue);
    box-shadow: var(--shadow-sm);
}

.service-hover:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.95);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.link-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.link-gradient:hover {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
    display: inline-block;
}

/* ==================== IMPACT SECTION ==================== */
.impact-section {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    padding: 100px 0;
}

.impact-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: var(--blur-md);
    border-radius: var(--border-radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
}

.impact-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-weight: 500;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-modern {
    background: linear-gradient(135deg, #f0f4f8 0%, #fafbfc 100%);
    padding: 100px 0;
}

.testimonial-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--blur-md);
    border-radius: var(--border-radius);
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==================== PROCESS SIMPLE ==================== */
.process-simple {
    padding: 100px 0;
}

.process-step-modern {
    text-align: center;
    padding: 2rem;
}

.process-number {
    font-size: 5rem;
    font-weight: 700;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.process-step-modern h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.process-step-modern p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ==================== PLATFORM FEATURE ==================== */
.platform-feature {
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
    padding: 100px 0;
}

.platform-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.mockup-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--blur-md);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-xl);
}

.mockup-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.mockup-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 16px;
    margin-bottom: 1rem;
}

.mockup-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mockup-title {
    font-weight: 600;
    color: var(--text-primary);
}

.mockup-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==================== CTA BOLD ==================== */
.cta-bold {
    padding: 100px 0;
}

.cta-glass-large {
    background: var(--dark-gradient);
    color: white;
    padding: 6rem 4rem;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.cta-glass-large::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    filter: blur(60px);
}

.cta-glass-large h2,
.cta-glass-large p {
    color: white;
    position: relative;
    z-index: 2;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: white;
    color: var(--text-primary);
    transform: translateY(-3px);
}

.btn-light {
    background: white;
    border: none;
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==================== TEXT GRADIENT ==================== */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-left, .hero-right {
        min-height: 60vh;
    }
    
    .services-float {
        margin-top: 0;
    }
    
    .cta-glass-large {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .stat-number, .impact-number {
        font-size: 2.5rem;
    }
    
    .process-number {
        font-size: 3rem;
    }
}

/* ===================================
   ADDITIONAL UTILITIES
   =================================== */

/* Form Controls - Glass Style */
.form-control-glass,
.form-select.form-control-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all var(--transition);
}

.form-control-glass:focus,
.form-select.form-control-glass:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* Stats Grid for About Page */
.stats-grid-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Process Number Small */
.process-number-sm {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

/* Icon Glass Variations */
.icon-glass-lg {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-blue);
}

.icon-glass-sm {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-blue);
}

/* Badge Glass Small */
.badge-glass-sm {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-blue);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Social Links Glass Large */
.social-link-glass-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--accent-blue);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-link-glass-lg:hover {
    background: var(--secondary-gradient);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Social Links Glass */
.social-links-glass {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.social-link-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--accent-blue);
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-link-glass:hover {
    background: var(--secondary-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   FOOTER SECTION
   =================================== */

.footer-section {
    background: var(--dark-gradient);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-section h3,
.footer-section h5 {
    color: white;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px 0 0 8px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--purple);
    color: white;
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
}
