/* CSS Variables */
:root {
    --primary-color: #2c5aa0;
    --primary-dark: #1e3a6f;
    --primary-light: #4a7cc3;
    --secondary-color: #d4af37;
    --secondary-dark: #b8941f;
    --secondary-light: #e6c757;
    --accent-color: #8b4513;
    --accent-dark: #6b340e;
    --accent-light: #a85a2c;
    --neutral-color: #6c757d;
    --neutral-dark: #495057;
    --neutral-light: #adb5bd;
    --success-color: #28a745;
    --success-dark: #1e7e34;
    --success-light: #48b461;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --white: #ffffff;
    --black: #000000;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
header.navbar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 12px !important;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white) !important;
}

.navbar-dark .navbar-nav .nav-link {
    font-size: 10px !important;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(44,90,160,0.9), rgba(139,69,19,0.8)), url('../LEA_images/hero-bg.webp') center/cover;
    color: var(--white);
    position: relative;
    padding-top: 80px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.1rem;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--bg-light);
    padding: 1rem 0;
    margin-top: 76px;
}

.breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

section h3 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

/* About Section */
.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Services Section */
.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-card h4, .service-card p, .service-card ul {
    padding: 0 1.5rem;
}

.service-card h4 {
    margin-top: 1.5rem;
    color: var(--primary-dark);
}

.service-card .price {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: auto;
}

.service-card ul {
    list-style: none;
    padding-bottom: 1rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.service-card ul li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* Features Section */
.feature-item {
    padding: 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--white), var(--bg-light));
    height: 100%;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-item i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Price Plan Section */
.price-card {
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.price-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.price-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.price-card.featured .price-amount {
    color: var(--secondary-color);
}

/* Team Section */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--bg-light);
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: var(--secondary-color);
}

.team-member h4 {
    color: var(--primary-dark);
    margin-top: 1rem;
}

.team-member p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-slider {
    padding: 2rem 0;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.review-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.review-card h5 {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Process Section */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-light);
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Timeline Section */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    position: relative;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-date {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Career Section */
.career-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.career-card:hover {
    border-left-color: var(--secondary-color);
    transform: translateX(10px);
}

/* Core Info Section */
.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.info-card i {
    color: var(--primary-color);
}

/* Contact Section */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    border: 2px solid var(--bg-light);
    border-radius: 5px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44,90,160,0.25);
}

.contact-form .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-info p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Blog Section */
.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

.blog-card h4 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary-dark);
}

.blog-card p {
    padding: 0 1rem;
    color: var(--text-secondary);
    flex-grow: 1;
}

.blog-card .btn {
    margin: 1rem;
}

/* FAQ Section */
.accordion-button {
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 1rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
}

/* Gallery Section */
.gallery-section img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-section a:hover img {
    transform: scale(1.05);
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--bg-dark), #1a1a1a);
    color: var(--white);
}

.footer-section h4, .footer-section h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section hr {
    opacity: 0.2;
    margin: 2rem 0;
}

/* Space Page */
#space {
    min-height: calc(100vh - 76px - 300px);
    padding-top: 76px;
}

/* Additional Page Styles */
.method-card, .guideline-card, .resource-card, .brand-card, .tech-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.method-card:hover, .guideline-card:hover, .resource-card:hover, 
.brand-card:hover, .tech-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.event-date {
    min-width: 80px;
    border-radius: 10px;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
} 