/* Root Variables */
:root {
    --primary-color: #1e40af; /* Deep Blue */
    --secondary-color: #dc2626; /* Vibrant Red */
    --accent-color: #facc15; /* Golden Yellow */
    --dark-color: #1f2937; /* Charcoal */
    --light-color: #f3f4f6; /* Light Gray */
    
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --secondary-light: #ef4444;
    --secondary-dark: #991b1b;
    --accent-light: #fde047;
    --accent-dark: #eab308;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, #374151 100%);
}

/* Base 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(--dark-color);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Header Styles */
.header {
    background: var(--gradient-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-brand {
    font-size: 12px !important;
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #fff !important;
}

.navbar-dark .navbar-nav .nav-link {
    font-size: 10px !important;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(30,64,175,0.9) 0%, rgba(59,130,246,0.9) 100%), 
                url('../LEA_images/hero-bg.webp') center/cover;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250,204,21,0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.hero-section h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.hero-section p {
    color: rgba(255,255,255,0.95);
}

/* Section Styles */
section {
    position: relative;
}

.about-section, .features-section, .casestudy-section, 
.timeline-section, .coreinfo-section, .blog-section {
    background: #fff;
}

.services-section, .priceplan-section, .reviews-section, 
.process-section, .career-section, .faq-section {
    background: var(--light-color);
}

/* Card Styles */
.feature-card, .service-card, .price-card, .team-card, 
.review-card, .case-card, .career-item, .info-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover, .service-card:hover, .price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card img {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card i, .info-card i {
    color: var(--primary-color);
}

/* Price Card Featured */
.price-card.featured {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.05);
}

.price-card.featured h4, .price-card.featured p {
    color: #fff;
}

/* Team Cards */
.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--light-color);
}

/* Reviews Slider */
.reviews-slider {
    padding: 2rem 0;
}

.review-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stars i {
    color: var(--accent-color);
}

/* Process Items */
.process-item {
    position: relative;
    padding: 2rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: #fff;
    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;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: relative;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-control, .form-select {
    border: 2px solid var(--light-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30,64,175,0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30,64,175,0.3);
}

/* Gallery */
.gallery-section img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* FAQ */
.accordion-button {
    background: var(--light-color);
    font-weight: 600;
    color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: #fff;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
}

.footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color) !important;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 1rem 0;
    background: var(--light-color);
    margin-top: 76px;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
}

/* Additional Page Styles */
.process-card, .fleet-card, .benefit-item, .area-item,
.booking-card, .advantage-card, .package-card, .tip-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.process-card:hover, .fleet-card:hover, .booking-card:hover,
.advantage-card:hover, .package-card:hover, .tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card, .service-card, .price-card {
        animation: fadeInUp 0.6s ease-out;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Colors */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }

/* Background Colors */
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }

/* Utility Classes */
.shadow-soft { box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.rounded-lg { border-radius: 15px; }

/* Swiper Custom Styles */
.swiper-pagination-bullet {
    background: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

/* Blog Grid */
#blog_grid .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
} 