/* Bootstrap 5 CDN Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* Root Color Variables */
:root {
    --primary-navy: #1a2b4c;
    --primary-gold: #d4af37;
    --primary-forest: #2d5016;
    --primary-burgundy: #722f37;
    --primary-steel: #4a5568;
    
    /* Light shades */
    --light-navy: #3a4b6c;
    --light-gold: #e4bf47;
    --light-forest: #4d7026;
    --light-burgundy: #924f57;
    --light-steel: #6a7588;
    
    /* Dark shades */
    --dark-navy: #0a1b2c;
    --dark-gold: #b49f27;
    --dark-forest: #1d4006;
    --dark-burgundy: #521f27;
    --dark-steel: #2a3548;
    
    /* Additional colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
}

/* Base Typography */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
}

/* Conservative font sizes */
.navbar-brand {
    font-size: 12px !important;

    font-weight: 600;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* 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 */
.navbar {
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
    box-shadow: 0 2px 10px rgba(26, 43, 76, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 12px !important;
    color: var(--primary-gold) !important;
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-size: 10px !important;
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-steel) 50%, var(--primary-forest) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    z-index: 2;
}

/* Decorative shapes */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 80%);
    z-index: 2;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: var(--light-gray);
}

.feature-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-steel) 100%);
    color: var(--white);
}

.services-section .section-title,
.services-section .section-subtitle,
.services-section .section-description {
    color: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-burgundy));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

/* Features Section */
.features-section {
    background: var(--light-gray);
}

/* Price Plan Section */
.priceplan-section {
    background: var(--white);
}

.price-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.price-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
    color: var(--white);
}

.price-card.featured .price-title,
.price-card.featured .price-amount {
    color: var(--white);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.price-features {
    text-align: left;
    margin-bottom: 2rem;
}

/* Team Section */
.team-section {
    background: var(--light-gray);
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-gold);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--medium-gray);
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    background: var(--white);
}

.review-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.review-author {
    font-weight: 600;
    color: var(--primary-navy);
}

/* Case Studies Section */
.casestudy-section {
    background: var(--light-gray);
}

.casestudy-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.casestudy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
    background: var(--white);
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    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 Section */
.timeline-section {
    background: var(--light-gray);
}

.timeline-item {
    border-left: 3px solid var(--primary-gold);
    padding-left: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 13px;
    height: 13px;
    background: var(--primary-gold);
    border-radius: 50%;
}

/* Career Section */
.career-section {
    background: var(--white);
}

.career-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.career-card:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Core Info Section */
.coreinfo-section {
    background: var(--light-gray);
}

.coreinfo-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.coreinfo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-steel));
    color: var(--white);
}

.contact-section .section-title,
.contact-section .section-subtitle,
.contact-section .section-description {
    color: var(--white);
}

.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    color: var(--dark-gray);
}

.form-control {
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Blog Section */
.blog-section {
    background: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.blog-link:hover {
    color: var(--dark-gold);
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background: var(--white);
    border-radius: 10px !important;
    border: none;
    color: var(--primary-navy);
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-gold);
    color: var(--white);
}

.accordion-body {
    background: var(--white);
    border-radius: 0 0 10px 10px;
    padding: 1.5rem;
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-navy), var(--primary-navy));
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid var(--primary-steel);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
}

.breadcrumb-item img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

/* Space Page */
#space {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-gold) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-gold) !important;
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-steel)) !important;
}

.bg-gradient-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold)) !important;
}

.text-primary-gold {
    color: var(--primary-gold) !important;
}

.text-primary-navy {
    color: var(--primary-navy) !important;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        min-height: 80vh;
    }
} 