:root {
    --primary-blue: #0E4A8A;
    --dark-blue: #083B73;
    --light-green: #A8C8B8;
    --accent-green: #8FB7A5;
    --bg-light: #F5F7F7;
    --text-dark: #1F2A33;
    --white: #FFFFFF;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
}

/* Typography & Utilities */
.text-primary-custom { color: var(--primary-blue) !important; }
.text-dark-blue { color: var(--dark-blue) !important; }
.text-accent { color: var(--accent-green) !important; }
.bg-primary-custom { background-color: var(--primary-blue) !important; }
.bg-dark-custom { background-color: var(--text-dark) !important; }
.bg-light-green { background-color: var(--light-green) !important; }

/* Navbar */
.site-navbar {
    background-color: rgba(14, 74, 138, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.site-navbar .nav-link:hover, 
.site-navbar .nav-link.active {
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.1);
}
.lang-switch-btn {
    border-color: rgba(255, 255, 255, 0.3) !important;
}
.lang-switch-btn:hover {
    background-color: var(--white) !important;
    color: var(--primary-blue) !important;
}

.site-navbar .navbar-brand {
    padding: 0;
}

/* Logo Styling */
.site-logo {
    height: 85px;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
}
@media (max-width: 991px) {
    .site-logo {
        height: 60px;
    }
}
.site-logo:hover {
    transform: scale(1.02);
}

/* Footer */
.footer-links a, .social-links a {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.hover-white:hover {
    color: var(--white) !important;
    transform: translateX(3px);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-primary-custom:hover {
    background-color: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-accent {
    border: 2px solid var(--accent-green);
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-accent:hover {
    background-color: var(--accent-green);
    color: white;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 80vh;
    min-height: 500px;
    background-color: var(--dark-blue);
}

.carousel-item {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(8, 59, 115, 0.9) 0%, rgba(14, 74, 138, 0.7) 100%);
    z-index: 1;
}

.carousel-caption-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-1 .carousel-item::before { background: linear-gradient(135deg, rgba(8, 59, 115, 0.85) 0%, rgba(14, 74, 138, 0.8) 100%); }
.slide-2 .carousel-item::before { background: linear-gradient(135deg, rgba(14, 74, 138, 0.85) 0%, rgba(168, 200, 184, 0.5) 100%); }
.slide-3 .carousel-item::before { background: linear-gradient(135deg, rgba(8, 59, 115, 0.9) 0%, rgba(143, 183, 165, 0.6) 100%); }

.hero-animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.carousel-indicators [data-bs-target] {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}
.carousel-indicators .active {
    width: 60px;
    background-color: var(--white);
}

/* Cards */
.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 74, 138, 0.1);
}
.feature-icon {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(168, 200, 184, 0.25) 0%, rgba(143, 183, 165, 0.1) 100%);
    border-radius: 20px;
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.05) rotate(5deg);
}

/* Section Titles */
.section-title {
    color: var(--dark-blue);
    font-weight: 700;
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-green);
    border-radius: 2px;
}
.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Partner Logos Placeholder Style */
.partner-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    max-height: 80px;
    width: auto;
    margin: 0 auto;
}
.partner-logo-container:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Page Headers */
.page-header {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 40px;
}
