/* Custom Styles for Aslan Labs - Holographic Design */

:root {
    --primary-color: #a855f7;
    --secondary-color: #ec4899;
    --accent-color: #06b6d4;
    --dark-color: #0a0e27;
    --light-color: #ffffff;
    --border-radius: 0.5rem;
}

/* Light Mode Theme */
html[data-theme="light"] {
    --primary-color: #ff6b35;
    --secondary-color: #f97316;
    --accent-color: #3b82f6;
    --dark-color: #f5f5f5;
    --light-color: #1f2937;
    --bg-color: #ffffff;
    --text-color: #1f2937;
    --border-color: #e5e7eb;
    --card-bg: rgba(255, 255, 255, 0.95);
}

html[data-theme="dark"] {
    --bg-color: #0a0e27;
    --text-color: #ffffff;
    --border-color: rgba(255, 107, 53, 0.3);
    --card-bg: rgba(10, 14, 39, 0.8);
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    background-color: #000000 !important;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}

.navbar-brand span {
    background: linear-gradient(135deg, #ff6b35, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-logo {
    height: 40px;
    width: auto;
    margin-right: 12px;
    filter: brightness(1) contrast(1.1);
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    filter: brightness(1.1) contrast(1.2) drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
    transform: scale(1.05);
}

.navbar-text {
    background: linear-gradient(135deg, #ff6b35, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ff6b35 !important;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

/* Hero Section */
.hero-section {
    background: #0a0e27;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: glow-shift 10s ease-in-out infinite;
}

@keyframes glow-shift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.hero-section .lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #a855f7;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
}

/* Page Header */
.page-header {
    background: #0a0e27;
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b35, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #ffffff;
}

/* Feature Cards */
.feature-card {
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 10px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2), inset 0 0 20px rgba(168, 85, 247, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5), inset 0 0 20px rgba(168, 85, 247, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    display: inline-block;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

.feature-card h5 {
    color: #ffffff;
}

.feature-card p {
    color: #ffffff;
}

/* CTA Section */
.cta-section {
    background: #0a0e27;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2,
.cta-section p {
    color: #ffffff;
}

/* App Card Row */
.app-card-row {
    margin-bottom: 60px;
}

.app-card-row img {
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.app-card-row:hover img {
    transform: scale(1.02);
    border-color: rgba(255, 107, 53, 0.8);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
}

.app-card-row h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-card-row .lead {
    font-size: 1.1rem;
    color: #ffffff;
}

.app-card-row p {
    color: #ffffff;
}

.app-card-row ul li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #ffffff;
}

/* Pricing Cards */
.pricing-card {
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.pricing-card.featured {
    border-color: #a855f7;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5), inset 0 0 20px rgba(168, 85, 247, 0.1);
}

.pricing-card.featured:hover {
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.7), inset 0 0 20px rgba(168, 85, 247, 0.15);
}

.pricing-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.pricing-card h3 {
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card p,
.pricing-card li {
    color: #ffffff;
}

/* Contact Info Cards */
.contact-info-card {
    padding: 20px;
    background: rgba(10, 14, 39, 0.8);
    border-radius: 8px;
    border-left: 4px solid #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-left: 4px solid #a855f7;
}

.contact-info-card h5 {
    color: #ffffff;
    font-weight: 600;
}

.contact-info-card p {
    color: #ffffff;
}

/* Footer */
footer {
    margin-top: auto;
    background-color: #000000;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
}

footer h5 {
    color: #ffffff;
}

footer p {
    color: #ffffff;
}

footer a {
    color: #a855f7;
}

footer a:hover {
    color: #ec4899;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}

/* Form Styles */
.form-control,
.form-select {
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 6px;
    padding: 0.75rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus,
.form-select:focus {
    border-color: #a855f7;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

/* Accordion */
.accordion-button {
    font-weight: 600;
    color: #ffffff;
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    box-shadow: inset 0 0 10px rgba(168, 85, 247, 0.2);
}

.accordion-button:focus {
    border-color: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

/* Social Links */
.social-links a,
.social-links-extended a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .app-card-row {
        margin-bottom: 40px;
    }

    .app-card-row h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .btn {
        width: 100% !important;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .d-md-2 {
        order: 0 !important;
    }

    .order-md-1 {
        order: 0 !important;
    }

    .order-md-2 {
        order: 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 300px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    footer .row > * {
        margin-bottom: 2rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* Holographic Text Effect */
.holographic-text {
    background: linear-gradient(135deg, #a855f7, #ec4899, #06b6d4, #a855f7);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Section styling */
section:not(.page-header):not(.hero-section):not(.cta-section) {
    background-color: #0a0e27;
    color: #ffffff;
}

/* Card and Element Backgrounds */
.card {
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #ffffff;
}

.list-group-item {
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #ffffff;
}

/* Text Colors */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

p {
    color: #ffffff;
}

/* Links */
a {
    color: #a855f7;
}

a:hover {
    color: #ec4899;
}

/* Focus Section */
.focus-section {
    background-color: #0a0e27;
}

.focus-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.focus-item:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.focus-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    margin-bottom: 15px;
}

.focus-item h5 {
    color: #ffffff;
    font-weight: 600;
}

/* Belief Items */
.belief-item {
    padding: 20px;
    border-left: 4px solid #ff6b35;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 5px;
    text-align: left;
}

.belief-item h5 {
    color: #ff6b35;
    font-weight: 600;
    margin: 0;
}

/* Team Cards */
.team-card {
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 10px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    transform: translateY(-5px);
}

.team-initials {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.team-card .card-title {
    color: #ffffff;
    font-weight: 600;
}

.team-card .card-text {
    color: #ffffff;
}

/* App Cards */
.app-card {
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 10px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    transition: all 0.3s ease;
    text-align: left;
}

.app-card:hover {
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
    transform: translateY(-5px);
}

.app-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
}

.app-card h2 {
    color: #ffffff;
    font-weight: 700;
}

.app-card p {
    color: #ffffff;
}

.badge-coming-soon {
    background-color: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.5);
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Philosophy Items */
.philosophy-item {
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 10px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    transition: all 0.3s ease;
    text-align: left;
}

.philosophy-item:hover {
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    transform: translateY(-5px);
}

.philosophy-item h5 {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
}

.philosophy-item p {
    color: #ffffff;
    margin: 0;
}

/* Contact Email Card */
.contact-email-card {
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 10px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-email-card:hover {
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
    transform: translateY(-5px);
}

.email-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.contact-email-card p {
    text-align: center;
}

.contact-email-card h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.email-link {
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.email-link:hover {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

/* Utilities */
.text-primary {
    color: #ff6b35 !important;
}

.btn-primary {
    background-color: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #ff8c42;
    border-color: #ff8c42;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

.btn-light {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.btn-light:hover {
    background-color: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
}

.shadow {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3) !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0e27;
}

::-webkit-scrollbar-thumb {
    background: #a855f7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ec4899;
}

/* ======================= LIGHT MODE STYLES ======================= */

html[data-theme="light"] .navbar {
    background-color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.1);
    border-bottom: 1px solid #e5e7eb;
}

html[data-theme="light"] .navbar-nav .nav-link {
    color: #1f2937 !important;
}

html[data-theme="light"] .navbar-nav .nav-link:hover,
html[data-theme="light"] .navbar-nav .nav-link.active {
    color: #ff6b35 !important;
    text-shadow: none;
}

html[data-theme="light"] .navbar-logo {
    filter: brightness(1.1) contrast(1.15);
}

html[data-theme="light"] .navbar-logo:hover {
    filter: brightness(1.2) contrast(1.25) drop-shadow(0 0 8px rgba(255, 107, 53, 0.7));
}

html[data-theme="light"] .hero-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

html[data-theme="light"] .hero-section::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

html[data-theme="light"] .hero-section h1 {
    background: linear-gradient(135deg, #ff6b35, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

html[data-theme="light"] .hero-section .lead {
    color: #374151;
}

html[data-theme="light"] .page-header::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
}

html[data-theme="light"] .page-header h1 {
    background: linear-gradient(135deg, #ff6b35, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[data-theme="light"] .page-header p {
    color: #374151;
}

html[data-theme="light"] .feature-card {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .feature-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
}

html[data-theme="light"] .feature-icon {
    color: #ff6b35;
    text-shadow: none;
}

html[data-theme="light"] .feature-card h5 {
    color: #1f2937;
}

html[data-theme="light"] .feature-card p {
    color: #374151;
}

html[data-theme="light"] .focus-item {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .focus-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
}

html[data-theme="light"] .focus-icon {
    color: #ff6b35;
    text-shadow: none;
}

html[data-theme="light"] .focus-item h5 {
    color: #1f2937;
}

html[data-theme="light"] .belief-item {
    border-left-color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
}

html[data-theme="light"] .belief-item h5 {
    color: #ff6b35;
}

html[data-theme="light"] .belief-item p {
    color: #374151;
}

html[data-theme="light"] .team-card {
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

html[data-theme="light"] .team-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
}

html[data-theme="light"] .team-card .card-title,
html[data-theme="light"] .team-card .card-text {
    color: #1f2937;
}

html[data-theme="light"] .app-card {
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

html[data-theme="light"] .app-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
}

html[data-theme="light"] .app-card h2 {
    background: linear-gradient(135deg, #ff6b35, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

html[data-theme="light"] .app-card p {
    color: #374151;
}

html[data-theme="light"] .badge-coming-soon {
    background-color: rgba(255, 107, 53, 0.15);
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

html[data-theme="light"] .philosophy-item {
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

html[data-theme="light"] .philosophy-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
}

html[data-theme="light"] .philosophy-item h5 {
    color: #ff6b35;
}

html[data-theme="light"] .philosophy-item p {
    color: #374151;
}

html[data-theme="light"] .contact-email-card {
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

html[data-theme="light"] .contact-email-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
}

html[data-theme="light"] .contact-email-card h3 {
    color: #1f2937;
}

html[data-theme="light"] .contact-email-card p {
    color: #374151;
}

html[data-theme="light"] .email-link {
    color: #ff6b35;
}

html[data-theme="light"] .email-link:hover {
    color: #f97316;
    text-shadow: none;
}

html[data-theme="light"] .btn-primary {
    background-color: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
}

html[data-theme="light"] .btn-primary:hover {
    background-color: #f97316;
    border-color: #f97316;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

html[data-theme="light"] .btn-light {
    background-color: #1f2937;
    border-color: #1f2937;
    color: #ffffff;
}

html[data-theme="light"] .btn-light:hover {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

html[data-theme="light"] .btn-outline-light {
    border-color: #1f2937;
    color: #1f2937;
}

html[data-theme="light"] .btn-outline-light:hover {
    background-color: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
}

html[data-theme="light"] .form-control,
html[data-theme="light"] .form-select {
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #1f2937;
}

html[data-theme="light"] .form-control::placeholder {
    color: #9ca3af;
}

html[data-theme="light"] .form-control:focus,
html[data-theme="light"] .form-select:focus {
    border-color: #ff6b35;
    color: #1f2937;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

html[data-theme="light"] .card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #1f2937;
}

html[data-theme="light"] .list-group-item {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #1f2937;
}

html[data-theme="light"] h1, 
html[data-theme="light"] h2, 
html[data-theme="light"] h3, 
html[data-theme="light"] h4, 
html[data-theme="light"] h5, 
html[data-theme="light"] h6 {
    color: #1f2937;
}

html[data-theme="light"] p {
    color: #374151;
}

html[data-theme="light"] a {
    color: #ff6b35;
}

html[data-theme="light"] a:hover {
    color: #f97316;
}

html[data-theme="light"] .text-primary {
    color: #ff6b35 !important;
}

html[data-theme="light"] footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
}

html[data-theme="light"] footer h5,
html[data-theme="light"] footer p {
    color: #1f2937;
}

html[data-theme="light"] footer a {
    color: #ff6b35;
}

html[data-theme="light"] footer a:hover {
    color: #f97316;
    text-shadow: none;
}

html[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border: 1px solid #e5e7eb;
}

html[data-theme="light"] .cta-section::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
}

html[data-theme="light"] ::-webkit-scrollbar-track {
    background: #f5f5f5;
}

html[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: #ff6b35;
}

html[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
    background: #f97316;
}

/* Theme Toggle Button */
#themeToggle {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem !important;
    transition: all 0.3s ease;
}

#themeToggle:hover {
    transform: scale(1.1);
}

html[data-theme="light"] #themeToggle {
    border-color: #1f2937;
    color: #1f2937;
}

html[data-theme="light"] #themeToggle:hover {
    background-color: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    color: #ff6b35;
}
