/* ========== MODERN FLOK DESIGN ========== */


:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --accent-dark: #0284c7;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text-dark: #0f172a;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-body);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.site-header.scrolled {
    background: #fff;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 0;
}

.navbar > .container {
    display: flex;
    align-items: stretch;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 18px 0;
    margin-right: auto;
}

.navbar-brand img {
    max-height: 45px;
    transition: var(--transition);
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    opacity: 0.7;
    -webkit-text-fill-color: var(--text-muted);
}

/* Navbar with separators - like the reference image */
.navbar-nav {
    display: flex;
    align-items: stretch;
    margin: 0;
}



.navbar-nav .nav-item:last-child {
    border-right: 1px solid rgb(159 165 183);
}

.navbar-nav .nav-link {
    color: #000000;
    font-weight: 400;
    font-size: 18px;
    padding: 10px 20px !important;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    transition: var(--transition);
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--accent);
    background: rgba(0, 0, 0, 0.02);
}

.navbar-nav .dropdown-toggle::after {
    display: none;
}

/* Dropdown Arrow Icon */
.navbar-nav .fa-angle-down,
.lang-btn .fa-angle-down {
    font-size: 11px;
    margin-left: 6px;
    opacity: 0.5;
    transition: transform 0.2s ease;
}

.dropdown.show .fa-angle-down {
    transform: rotate(180deg);
}

.navbar-toggler {
    border: none;
    padding: 10px;
    color: var(--primary);
    font-size: 24px;
}


/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    margin-top: 10px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    animation: fadeInUp 0.2s ease;
}

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

.dropdown-item {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #000;
    padding-left: 28px;
}

/* Language Dropdown with Flags - Matching Navbar Style */
.lang-dropdown {
    position: relative;
    display: flex;
    align-items: stretch;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 22px 25px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: var(--transition);
    text-decoration: none;
}

.lang-btn:hover {
    background: rgba(0, 0, 0, 0.02);
    color: #333;
}

.lang-btn::after {
    display: none;
}

.lang-btn img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.lang-menu {
    min-width: 100px;
    padding: 10px 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    margin-top: 10px !important;
}

.lang-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
}


.lang-menu .dropdown-item img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.lang-menu .dropdown-item:hover {
    background: #f8f9fa;
    color: #000;
}

.lang-menu .dropdown-item.active {
    background: #f0f0f0;
    font-weight: 500;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    margin-top: 65px;
    background: var(--primary);
    overflow: hidden;
}

.hero-carousel {
    width: 100%;
}

.hero-carousel .slide-item {
    width: 100%;
    display: block;
    background: #fff;
    margin-top: 15px;
    padding: 5px;
}

.hero-carousel .slide-item img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 400px;
    max-height: 650px;
    object-fit: cover;
    border-radius: 33px;
}

.hero-carousel .slide-placeholder {
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent-dark) 100%);
    color: #fff;
}

.hero-carousel .slide-placeholder h2 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 5px;
}

/* Owl Dots */
.hero-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-carousel .owl-dot span {
    display: none;
}

.hero-carousel .owl-dot:hover {
    background: rgba(255,255,255,0.7);
    transform: scale(1.2);
}

.hero-carousel .owl-dot.active {
    background: var(--accent);
    width: 35px;
    border-radius: 20px;
}

/* Owl Nav */
.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff !important;
    font-size: 20px !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.hero-carousel .owl-nav button.owl-prev:hover,
.hero-carousel .owl-nav button.owl-next:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    transform: scale(1.1);
}

/* ========== SECTION TITLE ========== */
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 10px;
}

/* ========== COMPANY PROFILE ========== */
.company-profile {
    background: #fff;
    padding: 80px 0;
}

.company-profile .section-title {
    margin-bottom: 40px;
}

.company-profile .section-title h2 {
    font-size: 48px;
    font-weight: 400;
    color: #2c5aa0;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
}

.profile-content {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
}

.profile-content p {
    margin-bottom: 0;
}

/* Profile Logos / Certificates */
.profile-logos {
    padding-top: 50px;
    margin-top: 50px;
}

.profile-logos::before {
    display: none;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    background: #fff;
    border: 1px solid #ddd;
    height: 130px;
    transition: all 0.3s ease;
}

.logo-item img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-item:hover {
    border-color: #2c5aa0;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========== SERVICES SHOWCASE SLIDER ========== */
.services-showcase {
    background: #f5f5f5;
    position: relative;
}

.services-showcase .services-carousel {
    position: relative;
}

.service-slide {
    background: #f5f5f5;
}

.service-slide-inner {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.service-text {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 80px 60px 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h2 {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.service-list {
    margin-bottom: 40px;
}

.service-list p {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.6;
}

.btn-detail {
    display: inline-block;
    padding: 15px 40px;
    background: #2c3e7c;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: lowercase;
    border-radius: 0;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-detail:hover {
    background: #1a2a5e;
    color: #fff;
}

.service-slide .service-image {
    flex: 0 0 60%;
    max-width: 60%;
    position: relative;
    overflow: hidden;
}

.service-slide .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

/* Services Carousel Navigation */
.services-showcase .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0;
    z-index: 10;
}

.services-showcase .owl-prev,
.services-showcase .owl-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    color: #333 !important;
    pointer-events: auto;
    transition: all 0.3s ease;
    border: none;
    margin: 0;
}

.services-showcase .owl-prev {
    position: absolute;
    left: 30px;
}

.services-showcase .owl-next {
    position: absolute;
    right: 30px;
}

.services-showcase .owl-prev:hover,
.services-showcase .owl-next:hover {
    background: #fff !important;
    color: #2c3e7c !important;
}

.services-showcase .owl-dots {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .service-slide-inner {
        flex-direction: column;
        min-height: auto;
    }
    
    .service-text {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 50px 30px;
        order: 2;
    }
    
    .service-slide .service-image {
        flex: 0 0 100%;
        max-width: 100%;
        order: 1;
    }
    
    .service-slide .service-image img {
        min-height: 300px;
        max-height: 400px;
    }
    
    .service-text h2 {
        font-size: 28px;
    }
    
    .services-showcase .owl-prev {
        left: 10px;
    }
    
    .services-showcase .owl-next {
        right: 10px;
    }
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========== POLICY CARDS ========== */
.policies {
    background: var(--bg-light);
    position: relative;
}

.policy-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.policy-card:hover::before {
    transform: scaleX(1);
}

.policy-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

.policy-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed var(--accent);
    opacity: 0.3;
}

.policy-icon i {
    font-size: 36px;
    color: var(--white);
}

.policy-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.policy-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.policy-card-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.policy-card-link:hover .policy-card {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.15);
}

.policy-card-link:hover .policy-icon {
    transform: scale(1.1);
}

/* ========== HR SECTION ========== */
.hr-section {
    background: #f8f9fa;
}

.hr-wrapper {
    display: flex;
    min-height: 500px;
}

.hr-image-side {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.hr-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.hr-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hr-placeholder i {
    font-size: 120px;
    color: rgba(255,255,255,0.2);
}

.hr-content-side {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #fff;
}

.hr-content-inner {
    max-width: 450px;
}

.hr-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: #fff;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.hr-content-inner h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hr-content-inner p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hr-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a365d;
    color: #fff;
    padding: 16px 35px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hr-btn:hover {
    background: #2c5282;
    color: #fff;
    gap: 18px;
}

.hr-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hr-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .hr-wrapper {
        flex-direction: column;
    }
    
    .hr-image-side,
    .hr-content-side {
        flex: 0 0 100%;
    }
    
    .hr-image-side img,
    .hr-placeholder {
        min-height: 350px;
    }
    
    .hr-content-side {
        padding: 50px 30px;
    }
    
    .hr-content-inner h2 {
        font-size: 28px;
    }
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

/* ========== PAGE HEADER ========== */
.page-header-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 0 60px;
    margin-top: 65px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(14, 165, 233, 0.2));
}

.page-header-section h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.page-header-section .breadcrumb {
    justify-content: center;
    margin: 0;
    background: none;
}

.page-header-section .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.page-header-section .breadcrumb-item a:hover {
    color: var(--white);
}

.page-header-section .breadcrumb-item.active {
    color: var(--accent-light);
}

.page-header-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* Page Content */
.page-content-section {
    background: var(--white);
}

.page-content {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-body);
}

.page-content h2, .page-content h3, .page-content h4 {
    color: var(--text-dark);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul, .page-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 25px 0;
    box-shadow: var(--shadow-lg);
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    background: #f8f9fa;
}

.contact-info-box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-intro {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.contact-info-list {
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fff;
    font-size: 18px;
}

.contact-text h6 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-text p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.contact-text a {
    color: #666;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #2c5282;
}

.contact-social h6 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-social .social-icons {
    display: flex;
    gap: 12px;
}

.contact-social .social-icons a {
    width: 42px;
    height: 42px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-social .social-icons a:hover {
    background: #1a365d;
    color: #fff;
}

/* Contact Form */
.contact-form-box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #2c5282;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: #fff;
    padding: 16px 35px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.3);
}

.btn-submit i {
    font-size: 14px;
}

/* Alert */
.contact-form-box .alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-box .alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form-box .alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.map-section {
    background: #1a1a1a;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

@media (max-width: 991px) {
    .contact-info-box,
    .contact-form-box {
        padding: 35px 25px;
    }
    
    .contact-info-box h3,
    .contact-form-box h3 {
        font-size: 24px;
    }
}

/* Error Page */
.error-section {
    padding: 150px 0;
    margin-top: 65px;
}

.error-content h1 {
    font-size: 150px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== FOOTER ========== */
.site-footer {
    background: #151820;
    color: rgba(255,255,255,0.5);
}

.footer-main {
    padding: 60px 0 40px;
    border-radius: 30px 30px 0 0;
    background: #151820;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

/* Footer Logo */
.footer-logo-area {
    margin-bottom: 60px;
}

.footer-logo {
    max-height: 50px;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-text .brand-main {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.footer-brand-text .brand-sub {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h6 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Footer Social Row */
.footer-social-row {
    display: flex;
    justify-content: flex-end;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social a {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    min-height: 44px;
    border: 2px solid rgba(255,255,255,0.4) !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 18px !important;
    transition: all 0.3s ease;
    background: transparent;
    text-decoration: none;
}

.footer-social a:hover {
    background: #fff !important;
    color: #1c2026 !important;
    border-color: #fff !important;
    transform: scale(1.1);
}

.footer-social a i {
    line-height: 1;
}

/* Footer Bottom */
.footer-bottom {
    background: #151820;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 250px;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 20px;
}

.footer-bottom .container {
    position: relative;
    z-index: 1;
}

.footer-copyright-content {
    text-align: center;
}

.footer-copyright-content .copyright-text {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

.footer-copyright-content .developer-text {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

.footer-copyright-content .developer-text a {
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.footer-copyright-content .developer-text a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .footer-social-row {
        justify-content: center;
    }
    
    .footer-watermark {
        font-size: 80px;
        letter-spacing: 10px;
    }
    
    .footer-bottom {
        padding: 50px 0;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero-slider {
        margin-top: 65px;
    }
    
    .hero-carousel .slide-item img {
        min-height: 300px;
        max-height: 450px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .navbar-collapse {
        background: #fff;
        padding: 0;
        margin-top: 0;
        border-radius: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-top: 1px solid rgb(159 165 183);
    }
    
    .navbar-nav .nav-item {
        border-left: none;
        border-bottom: 1px solid rgb(159 165 183);
    }
    
    .navbar-nav .nav-item:last-child {
        border-right: none;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 20px !important;
    }
    
    .lang-dropdown {
        border-left: none;
        border-top: 1px solid rgb(159 165 183);
        justify-content: center;
    }
    
    .lang-btn {
        padding: 15px 20px;
    }
    
    .page-header-section {
        padding: 100px 0 50px;
        margin-top: 65px;
    }
    
    .page-header-section h1 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-carousel .slide-item img {
        min-height: 250px;
        max-height: 350px;
    }
    
    .hero-carousel .owl-nav {
        display: none;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .policy-card {
        padding: 35px 25px;
    }
    
    .hr-cta {
        text-align: center;
    }
    
    .hr-content h3 {
        font-size: 28px;
    }
    
    .hr-cta .btn {
        margin-top: 25px;
    }
    
    .profile-content {
        font-size: 16px;
    }
}

/* ========== BREADCRUMB ========== */
.contact-breadcrumb {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #3182ce 100%);
    padding: 80px 0 30px;
    margin-top: 80px;
}

.contact-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-breadcrumb .breadcrumb-item {
    color: rgba(255,255,255,0.7);
}

.contact-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    padding: 0 12px;
}

.contact-breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.contact-page-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ========== CONTACT PAGE - LOCATION ========== */
.coordinates {
    font-family: 'Courier New', monospace;
    font-size: 15px;
    color: #1a73e8;
    background: #f0f7ff;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
    user-select: all;
    cursor: pointer;
}

.navigation-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.navigation-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 115, 232, 0.4);
}

.navigation-link i {
    font-size: 16px;
}

.navigation-hint {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-top: 8px;
    font-style: italic;
    padding: 10px;
    background: #f9f9f9;
    border-left: 3px solid #1a73e8;
    border-radius: 0 6px 6px 0;
}

/* ========== INNER PAGE STYLES ========== */
.inner-page-header {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    margin-top: 80px;
}

.inner-page-header .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
}

.inner-page-header .breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.inner-page-header .breadcrumb-item a:hover {
    color: #1a365d;
}

.inner-page-header .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #999;
}

.inner-page-header .breadcrumb-item.active {
    color: #333;
}

.inner-page-content {
    padding: 50px 0 80px;
}

/* Sidebar */
.page-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-header {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    padding: 20px 25px;
    border-radius: 12px 12px 0 0;
}

.sidebar-header h4 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-menu {
    background: #fff;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    border-top: none;
}

.sidebar-link {
    display: block;
    padding: 15px 20px;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    font-size: 15px;
}

.sidebar-link:last-child {
    border-bottom: none;
}

.sidebar-link:hover {
    background: #f8f9fa;
    color: #1a365d;
    padding-left: 25px;
}

.sidebar-link.active {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: #fff;
    font-weight: 600;
    padding-left: 25px;
}

.sidebar-link.active i {
    margin-right: 8px;
    font-size: 12px;
}

/* Main Content */
.page-main-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #1a365d;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #3182ce;
}

.page-body {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.page-body h2, .page-body h3, .page-body h4 {
    color: #1a365d;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-body h2 {
    font-size: 24px;
}

.page-body h3 {
    font-size: 20px;
}

.page-body p {
    margin-bottom: 20px;
}

.page-body ul, .page-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-body li {
    margin-bottom: 8px;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.page-body blockquote {
    background: #f8f9fa;
    border-left: 4px solid #1a365d;
    padding: 20px 25px;
    margin: 25px 0;
    font-style: italic;
    color: #555;
}

/* Responsive */
@media (max-width: 991px) {
    .page-sidebar {
        margin-bottom: 30px;
        position: static;
    }
    
    .page-main-content {
        padding: 30px;
    }
    
    .page-title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .inner-page-content {
        padding: 30px 0 50px;
    }
    
    .page-main-content {
        padding: 25px;
    }
    
    .page-title {
        font-size: 22px;
    }
    
    .page-body {
        font-size: 15px;
    }
}

/* ========== PAGE GALLERY TEMPLATE ========== */
.page-gallery {
    margin-top: 10px;
}

.gallery-item {
    display: block;
    text-decoration: none;
}

.gallery-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.gallery-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.1);
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-overlay i {
    font-size: 28px;
    color: #fff;
}

.gallery-card-caption {
    padding: 12px 15px;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #eee;
}

.gallery-card-caption p {
    margin: 0;
    color: #444;
    font-size: 13px;
    font-weight: 500;
}

/* ========== PAGE VIDEO TEMPLATE ========== */
.page-video {
    margin-top: 10px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========== NEWS CARDS ========== */
.page-news {
    padding: 20px 0;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.4);
}

.news-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date i {
    color: var(--primary-color, #2563eb);
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color, #2563eb);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link:hover {
    gap: 12px;
    color: #1d4ed8;
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* ========== NEWS DETAIL PAGE ========== */
.news-detail-section {
    background: #f8fafc;
}

.news-detail-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.news-detail-image {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-meta {
    padding: 30px 40px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid #f1f5f9;
}

.news-detail-meta .news-date {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.news-detail-meta .news-featured {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-detail-excerpt {
    padding: 25px 40px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-left: 4px solid var(--primary-color, #2563eb);
    margin: 0 40px 25px;
    border-radius: 8px;
}

.news-detail-excerpt p {
    font-size: 16px;
    color: #1e40af;
    font-style: italic;
    margin: 0;
    line-height: 1.7;
}

.news-detail-content {
    padding: 0 40px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.news-detail-content p {
    margin-bottom: 1.2em;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.news-detail-content iframe {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.news-detail-footer {
    padding: 30px 40px;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.news-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-share span {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

/* News Responsive */
@media (max-width: 768px) {
    .news-detail-meta,
    .news-detail-content,
    .news-detail-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .news-detail-excerpt {
        margin-left: 20px;
        margin-right: 20px;
        padding: 20px;
    }
    
    .news-detail-footer {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== RELATED NEWS SECTION ========== */
.related-news-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.related-news-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.related-news-section .title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    margin: 0 auto;
    border-radius: 2px;
}

/* ========== CUSTOM ACCORDION ========== */
.page-accordion .page-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.custom-accordion {
    border: none;
}

.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    background: #fff;
}

.custom-accordion .accordion-header {
    margin: 0;
}

.custom-accordion .accordion-button {
    padding: 20px 25px;
    font-size: 17px;
    font-weight: 600;
    color: #1e3a5f;
    background: #fff;
    border: none;
    box-shadow: none;
    gap: 15px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: #fff;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e3a5f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.custom-accordion .accordion-button:not(.collapsed) .accordion-icon {
    background: rgba(255,255,255,0.2);
}

.custom-accordion .accordion-body {
    padding: 25px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.custom-accordion .accordion-image {
    max-width: 100%;
}

.custom-accordion .accordion-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.custom-accordion .accordion-content {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
}

.custom-accordion .accordion-content p {
    margin-bottom: 1em;
}

.custom-accordion .accordion-content ul,
.custom-accordion .accordion-content ol {
    margin-bottom: 1em;
    padding-left: 20px;
}

.custom-accordion .accordion-content li {
    margin-bottom: 0.5em;
}

/* Accordion Gallery */
.accordion-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.accordion-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.accordion-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

@media (max-width: 768px) {
    .custom-accordion .accordion-button {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .custom-accordion .accordion-body {
        padding: 20px;
    }
}

/* ========== JOB APPLICATION FORM ========== */
.job-application-form {
    background: #fff;
}

.job-application-form .form-section {
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.job-application-form .section-title {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d5a87 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 20px;
    margin: 0;
    text-transform: uppercase;
}

.job-application-form .form-row {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #e8e8e8;
    padding: 0;
}

.job-application-form .form-row:last-child {
    border-bottom: none;
}

.job-application-form .form-row label {
    width: 220px;
    min-width: 220px;
    padding: 12px 20px;
    margin: 0;
    background: #f8f9fa;
    border-right: 1px solid #e8e8e8;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
}

.job-application-form .form-row .form-control {
    flex: 1;
    border: none;
    border-radius: 0;
    padding: 12px 15px;
    font-size: 13px;
    background: #fff;
    box-shadow: none;
}

.job-application-form .form-row .form-control:focus {
    background: #fafbfc;
    box-shadow: none;
    outline: none;
}

.job-application-form .form-row select.form-control {
    appearance: auto;
    cursor: pointer;
}

.job-application-form .form-row textarea.form-control {
    resize: vertical;
    min-height: 60px;
}

.job-application-form .form-submit {
    margin-top: 25px;
    text-align: left;
}

.job-application-form .btn-submit {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d5a87 100%);
    border: none;
    padding: 12px 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.job-application-form .btn-submit:hover {
    background: linear-gradient(135deg, #2d5a87 0%, #3d7ab7 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 58, 92, 0.3);
}

@media (max-width: 768px) {
    .job-application-form .form-row {
        flex-direction: column;
    }
    
    .job-application-form .form-row label {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding: 10px 15px;
    }
    
    .job-application-form .form-row .form-control {
        width: 100%;
        padding: 10px 15px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.policy-card:hover .policy-icon {
    animation: float 2s ease-in-out infinite;
}
