/* PT. Trans Crewing Management - Custom Styles */

/* Color Variables */
:root {
    --navy-blue: #1e3a5f;
    --gold: #d4af37;
    --light-blue: #4a90b8;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.z-index-2 {
    z-index: 2;
}

/* Color Utility Classes */
.text-navy {
    color: var(--navy-blue) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-light-blue {
    color: var(--light-blue) !important;
}

.bg-navy {
    background-color: var(--navy-blue) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.btn-navy {
    background-color: var(--navy-blue);
    border-color: var(--navy-blue);
    color: white;
}

.btn-navy:hover {
    background-color: #2c5aa0;
    border-color: #2c5aa0;
    color: white;
}

.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: white;
}

.btn-gold:hover {
    background-color: #b8941f;
    border-color: #b8941f;
    color: white;
}

.btn-outline-navy {
    border-color: var(--navy-blue);
    color: var(--navy-blue);
}

.btn-outline-navy:hover {
    background-color: var(--navy-blue);
    border-color: var(--navy-blue);
    color: white;
}

.border-light-blue {
    border-color: var(--light-blue) !important;
}

/* Navigation Styles */
.navbar {
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(30,58,95,0.06);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar .navbar-nav .nav-link {
    color: var(--navy-blue) !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar .navbar-brand, .navbar .brand-text {
    color: var(--navy-blue) !important;
}

.navbar .navbar-toggler {
    border-color: var(--navy-blue);
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30,58,95,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.dropdown-item:hover {
    background-color: var(--light-blue);
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 95, 0.5), rgba(74, 144, 184, 0.3));
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 95, 0.8), rgba(74, 144, 184, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    color: white;
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Detailed Service Cards */
.service-card-detailed {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
}

.service-image-detailed {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image-detailed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay-detailed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 95, 0.9), rgba(74, 144, 184, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-detailed:hover .service-overlay-detailed {
    opacity: 1;
}

.service-icon-large {
    font-size: 4rem;
    color: white;
}

.service-content-detailed {
    padding: 2rem;
}

.position-list ul {
    list-style: none;
    padding: 0;
}

.position-list li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

/* Position Category Cards */
.position-category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.position-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.position-item:last-child {
    border-bottom: none;
}

.position-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Specialized Position Cards */
.specialized-position-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.specialized-position-card:hover {
    transform: translateY(-5px);
}

.position-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Value Cards */
.value-card {
    padding: 2rem;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.value-detailed-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.value-icon-large {
    font-size: 3rem;
    color: var(--gold);
    margin-right: 1.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.client-testimonial-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.stars i {
    font-size: 1.2rem;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Vision Mission Cards */
.vision-mission-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.mission-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Commitment Cards */
.commitment-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
}

.commitment-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--gold);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.commitment-content {
    margin-top: 1rem;
}

/* Gallery Styles */
.gallery-filter {
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--navy-blue);
    color: var(--navy-blue);
    padding: 0.5rem 1.5rem;
    margin: 0.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--navy-blue);
    color: white;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 95, 0.9), rgba(74, 144, 184, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.gallery-content {
    text-align: center;
    padding: 2rem;
}

.gallery-item {
    transition: all 0.3s ease;
}

/* Achievement Cards */
.achievement-card {
    padding: 2rem;
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* News Cards */
.featured-news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-news-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-news-content {
    padding: 2rem;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-category {
    background: var(--light-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-category.company {
    background: var(--gold);
}

.news-date {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.company-news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

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

.company-news-content {
    padding: 1.5rem;
}

/* Career Styles */
.career-benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.career-benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.job-category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.job-category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.job-category-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.job-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.job-item:last-child {
    border-bottom: none;
}

.job-status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-status.available {
    background: var(--success);
    color: white;
}

.job-status.urgent {
    background: var(--danger);
    color: white;
}

.job-requirements {
    margin-top: 0.5rem;
}

.process-step {
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.requirement-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.requirement-list {
    list-style: none;
    padding: 0;
}

.requirement-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.application-form-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.qualification-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.qualification-list {
    list-style: none;
    padding: 0;
}

.qualification-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

/* Contact Styles */
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.emergency-contact {
    text-align: center;
}

.social-media-section,
.newsletter-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.social-links a {
    margin: 0.25rem;
}

.newsletter-form .input-group {
    margin-bottom: 0.5rem;
}

/* Client Styles */
.client-category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.client-category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.client-types {
    margin-top: 1.5rem;
}

.client-tag {
    display: inline-block;
    background: var(--light-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 0.25rem;
}

.geographic-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.geographic-card:hover {
    transform: translateY(-5px);
}

.geo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-choose-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-5px);
}

.choose-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.partnership-benefit {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* Institution Cards */
.institution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.institution-card:hover {
    transform: translateY(-5px);
}

.institution-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.institution-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.institution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.institution-content {
    padding: 2rem;
}

.programs-offered {
    margin-top: 1.5rem;
}

.program-list {
    list-style: none;
    padding: 0;
}

.program-list li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.program-list li:before {
    content: "🎓";
    position: absolute;
    left: 0;
}

.training-centers {
    margin-top: 1.5rem;
}

.additional-partner-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.partner-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.partner-programs {
    margin-top: 1.5rem;
}

.program-tag {
    display: inline-block;
    background: var(--light-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 0.25rem;
}

.training-program-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.training-program-card:hover {
    transform: translateY(-5px);
}

.program-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.training-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.training-features li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.training-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.certification-standard-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.standard-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Specialized Cards */
.specialization-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.spec-list {
    list-style: none;
    padding: 0;
}

.spec-list li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.spec-list li:before {
    content: "⚙️";
    position: absolute;
    left: 0;
}

.service-excellence-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.excellence-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.excellence-list {
    list-style: none;
    padding: 0;
}

.excellence-list li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.excellence-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.vessel-type-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.vessel-type-card:hover {
    transform: translateY(-5px);
}

.vessel-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.utility-position-highlight {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.utility-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.utility-skills {
    margin-top: 2rem;
}

.skill-tag {
    display: inline-block;
    background: var(--light-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin: 0.25rem;
}

.resource-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 184, 0.25);
}

.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.form-select:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 184, 0.25);
}

.form-check-input:checked {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
}

.is-invalid {
    border-color: var(--danger) !important;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Language Toggle */
#lang-toggle {
    background: #fff;
    color: var(--navy-blue);
    border: 1.5px solid var(--navy-blue);
    transition: all 0.3s;
}

#lang-toggle:hover, #lang-toggle:focus {
    background: var(--navy-blue);
    color: #fff;
    border-color: var(--navy-blue);
}

/* Footer Styles */
footer {
    margin-top: auto;
}

footer .social-links a {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: var(--gold) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .service-card,
    .news-card,
    .career-benefit-card {
        margin-bottom: 2rem;
    }
    
    .gallery-card {
        height: 250px;
    }
    
    .contact-form-card,
    .application-form-card {
        padding: 2rem;
    }
    
    .value-detailed-card {
        flex-direction: column;
        text-align: center;
    }
    
    .value-icon-large {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .institution-header {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .service-content,
    .news-card-content {
        padding: 1.5rem;
    }
    
    .gallery-card {
        height: 200px;
    }
    
    .contact-info-card,
    .career-benefit-card {
        margin-bottom: 1.5rem;
    }
    
    .filter-btn {
        display: block;
        width: 100%;
        margin: 0.25rem 0;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-section,
    footer {
        display: none !important;
    }
    
    .container {
        max-width: 100% !important;
    }
    
    .section-title {
        color: #000 !important;
    }
    
    .btn {
        display: none !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--light-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-overlay,
    .gallery-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.2);
    }
}
