/* Root Variables */
:root {
    /* Primary Colors */
    --primary-electric: #00D4FF;
    --primary-power: #FF6B35;
    --primary-luxury: #4A00E0;
    --primary-eco: #00BF63;
    --primary-dark: #1A1A2E;
    
    /* Light/Dark Shades */
    --electric-light: #66E5FF;
    --electric-dark: #0099CC;
    --power-light: #FF9166;
    --power-dark: #CC5528;
    --luxury-light: #8E2DE2;
    --luxury-dark: #3700B3;
    --eco-light: #33CC88;
    --eco-dark: #00994D;
    --dark-light: #2D2D44;
    --dark-darker: #0F0F1C;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --text-dark: #212529;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-electric) 0%, var(--primary-luxury) 100%);
    --gradient-power: linear-gradient(135deg, var(--primary-power) 0%, var(--power-dark) 100%);
    --gradient-eco: linear-gradient(135deg, var(--primary-eco) 0%, var(--eco-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-darker) 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography - Conservative Sizes */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Header Styles */
header.navbar {
    background: var(--gradient-dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 12px !important;
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--primary-electric) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-size: 10px !important;
    color: var(--white) !important;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-electric) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotate(45deg);
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: rotate(45deg) translateY(0); }
    100% { transform: rotate(45deg) translateY(-100px); }
}

.hero-section h1 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-section h2 {
    color: var(--electric-light);
    font-size: 1.75rem;
}

.hero-section p {
    color: var(--white);
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    position: relative;
}

.about-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
}

.feature-box, .service-card, .price-card, .team-member, 
.review-card, .case-card, .process-step, .timeline-item,
.career-card, .info-box, .blog-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.feature-box:hover, .service-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Service Cards */
.service-card img, .case-card img, .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-power);
    margin-top: 1rem;
}

/* Price Plans */
.price-card {
    border: 2px solid transparent;
    position: relative;
}

.price-card.featured {
    border-color: var(--primary-electric);
    background: linear-gradient(to bottom, rgba(0,212,255,0.05) 0%, var(--white) 100%);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Team Section */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid var(--electric-light);
}

/* Reviews Slider */
.reviews-slider {
    padding: 2rem 0;
}

.review-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem;
    margin: 1rem;
}

.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-card h5 {
    color: var(--electric-light);
}

/* Process Steps */
.process-step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-power);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-electric);
    background: var(--white);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-control, .form-select {
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-electric);
    box-shadow: 0 0 0 0.2rem rgba(0,212,255,0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,212,255,0.4);
}

/* FAQ Accordion */
.accordion-button {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--white);
    padding: 1.5rem;
}

/* Gallery */
.gallery-section img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer-section {
    background: var(--gradient-dark);
    color: var(--white);
}

.footer-section h4, .footer-section h5 {
    color: var(--primary-electric);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-electric);
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 100px 0 20px;
    background: var(--light-gray);
}

.breadcrumb {
    background: transparent;
    margin: 0;
}

.breadcrumb-item img {
    width: 20px;
    height: 20px;
}

/* Additional Page Styles */
.tech-item, .auto-feature, .perf-item, .connect-item,
.sustain-item, .access-item, .lifestyle-item, .financial-item,
.tech-perk, .community-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.tech-item:hover, .auto-feature:hover, .perf-item:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    border-bottom: 3px solid var(--primary-electric);
}

/* Icons */
.fas, .fab {
    color: var(--primary-electric);
}

/* Space Page */
#space {
    min-height: calc(100vh - 160px);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-box, .service-card, .team-member {
    animation: fadeInUp 0.6s ease-out;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Contact Info */
.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--primary-electric);
}

/* Blog Section */
.read-more {
    color: var(--primary-electric);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-luxury);
}

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

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

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