/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
}

.btn-outline {
    background: transparent;
    color: #1e3c72;
    border: 2px solid #1e3c72;
}

.btn-outline:hover {
    background: #1e3c72;
    color: white;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1e3c72;
}

.logo-img {
    height: 70px;
    width: auto;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3c72;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e3c72;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 1rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #1e3c72;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: #1e3c72;
}

.contact-item a {
    color: #333 !important;
    text-decoration: none;
    font-weight: 500;
}

/* Ensure header contact items are always black for visibility */
.header .contact-item a {
    color: #333 !important;
}

/* Make footer contact items lighter */
.footer .contact-item a {
    color: #888 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1e3c72;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    transition: left 0.3s ease, background 0.3s ease;
    z-index: 999;
    padding: 2rem;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav-menu li {
    margin-bottom: 1rem;
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem 0;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease, background 0.3s ease;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    padding-top: 180px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/truck.jpg') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 60, 114, 0.8);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-top: 130px;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.service-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-link {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #2a5298;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

/* Main Activities Section */
.main-activities-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #1e3c72;
}

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

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.activity-icon i {
    font-size: 2rem;
    color: white;
}

.activity-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.activity-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-points {
    margin-bottom: 2rem;
}

.mission-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mission-item i {
    color: #28a745;
    font-size: 1.2rem;
}

.about-image {
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Company Details Section */
.company-details-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.company-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #1e3c72;
}

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

.detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.detail-icon i {
    font-size: 1.8rem;
    color: white;
}

.detail-card h3 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.detail-content p {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.detail-content strong {
    color: #1e3c72;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f0f0f0;
}

.stat-label {
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #3498db;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-description {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #3498db;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

/* Admin Link Styling */
.admin-link {
    color: #ff6b6b !important;
    font-weight: 500;
    border-left: 3px solid #ff6b6b;
    padding-left: 10px;
    margin-left: -10px;
    transition: all 0.3s ease;
}

.admin-link:hover {
    color: #ff5252 !important;
    border-left-color: #ff5252;
    background: rgba(255, 107, 107, 0.1);
    padding-left: 15px;
}

.admin-link i {
    margin-right: 5px;
    font-size: 0.9em;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info .contact-item {
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.contact-info .contact-item i {
    color: #3498db;
    margin-right: 0.5rem;
}

.contact-info .contact-item a {
    color: #bdc3c7;
    text-decoration: none;
}

.european-rep {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
}

.european-rep h5 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

.european-rep p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.european-rep a {
    color: #3498db;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #3498db;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1e3c72;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #2a5298;
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detailed Page */
.services-detailed {
    padding: 5rem 0;
}

.service-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.service-section:last-child {
    border-bottom: none;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-text h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

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

.service-features h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.service-features i {
    color: #28a745;
    font-size: 1.1rem;
}

.service-image {
    text-align: center;
}

.service-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Service Grids */
.ports-grid,
.airports-grid,
.routes-grid,
.border-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.port-item,
.airport-item,
.route-item,
.border-post-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #1e3c72;
}

.port-item h4,
.airport-item h4,
.route-item h4,
.border-post-item h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.port-item p,
.airport-item p,
.route-item p,
.border-post-item p {
    color: #666;
    margin: 0;
}

/* Additional Services */
.additional-services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.additional-service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1e3c72;
    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;
}

.process-step h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

/* Services CTA */
.services-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.services-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.services-cta p {
    color: #e0e0e0;
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.contact-form-section p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3c72;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    margin-top: 1rem;
}

.alert i {
    font-size: 1.1rem;
}

/* Contact Info */
.contact-info-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #1e3c72;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #1e3c72;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.european-representative {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1e3c72;
}

.european-representative h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.rep-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.rep-info a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
}

/* Locations Section */
.locations-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.location-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.location-icon i {
    font-size: 2rem;
    color: white;
}

.location-card h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.location-type {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.location-address {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.location-contact p {
    margin-bottom: 0.5rem;
    color: #666;
}

.location-contact i {
    color: #1e3c72;
    margin-right: 0.5rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: white;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 10px;
    border: 2px dashed #1e3c72;
}

.map-placeholder i {
    font-size: 4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #1e3c72;
    font-size: 1.1rem;
}

.faq-question i {
    color: #1e3c72;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Tracking Page Styles */
.tracking-form-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Results Header and Scroll Indicator */
.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.scroll-indicator {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.3);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    animation: arrowDown 1.5s infinite;
}

.scroll-indicator span {
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes arrowDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.tracking-form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.tracking-form-container h2 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.tracking-form-container p {
    color: #666;
    margin-bottom: 2rem;
}

.tracking-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.tracking-input-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.tracking-input-group input[type="text"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.tracking-input-group input[type="text"]:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.tracking-input-group input[type="text"]::placeholder {
    color: #999;
}

.tracking-input-group button {
    padding: 15px 30px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tracking-results {
    padding: 4rem 0;
    background: white;
}

.tracking-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tracking-header h2 {
    color: #1e3c72;
    margin: 0;
}

.tracking-number {
    color: #666;
    font-size: 1.1rem;
}

.tracking-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tracking-info-item h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tracking-info-item p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.status-badge i {
    font-size: 1rem;
}

/* Status Colors */
.status-en_preparation { 
    background: linear-gradient(135deg, #e6a700, #cc9500); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-en_transit { 
    background: linear-gradient(135deg, #138496, #0f6674); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-en_transit_aerien { 
    background: linear-gradient(135deg, #e55a00, #cc4a00); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-en_transit_maritime { 
    background: linear-gradient(135deg, #0056b3, #004085); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-en_transit_terrestre { 
    background: linear-gradient(135deg, #8b4513, #6b3410); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-arrive_port { 
    background: linear-gradient(135deg, #1e7e34, #155724); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-arrive_a_destination { 
    background: linear-gradient(135deg, #28a745, #1e7e34); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-en_cours_de_dedouanement { 
    background: linear-gradient(135deg, #dc3545, #c82333); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-dedouanement { 
    background: linear-gradient(135deg, #dc3545, #c82333); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-en_livraison { 
    background: linear-gradient(135deg, #495057, #343a40); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-livre { 
    background: linear-gradient(135deg, #155724, #0f5132); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-retarde { 
    background: linear-gradient(135deg, #fd7e14, #e55a00); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-probleme_detecte { 
    background: linear-gradient(135deg, #dc3545, #c82333); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.status-default {
    background: linear-gradient(135deg, #6c757d, #495057); 
    color: #fff; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tracking-timeline {
    margin-top: 3rem;
}

.tracking-timeline h3 {
    color: #1e3c72;
    margin-bottom: 2rem;
    text-align: center;
}

/* Tracking Features */
.tracking-features {
    padding: 5rem 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
}

/* Tracking Instructions */
.tracking-instructions {
    padding: 5rem 0;
    background: white;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.instruction-step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.instruction-step .step-number {
    width: 50px;
    height: 50px;
    background: #1e3c72;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.instruction-step h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.instruction-step p {
    color: #666;
}

/* About Page Styles */
.company-story {
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.story-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.story-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-description:last-child {
    margin-bottom: 0;
}



.story-image {
    text-align: center;
}

.story-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-icon i {
    font-size: 2.5rem;
    color: white;
}

.mission-card h2,
.vision-card h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-points {
    margin-bottom: 2rem;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mission-point i {
    color: #28a745;
    font-size: 1.2rem;
}

.vision-goals {
    display: grid;
    gap: 1.5rem;
}

.goal-item h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.goal-item p {
    color: #666;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-img {
    width: 65%;
    height: 65%;
}

/* Solutions & Targets Section */
.solutions-targets {
    padding: 5rem 0;
    background: #f8f9fa;
}

.solutions-targets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.solutions-card, .targets-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.solutions-card:hover, .targets-card:hover {
    transform: translateY(-5px);
}

.solutions-card .card-icon, .targets-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.solutions-card .card-icon i, .targets-card .card-icon i {
    font-size: 2.5rem;
    color: white;
}

.solutions-card h2, .targets-card h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.solutions-intro, .target-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: left;
}

.solutions-model, .target-subtitle {
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    text-align: left;
}

.solutions-pillars, .target-groups {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pillar-item, .target-group {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #1e3c72;
    text-align: left;
}

.pillar-item h4, .target-group h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.pillar-item p, .target-group p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.target-conclusion {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solutions-targets-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solutions-card, .targets-card {
        padding: 2rem;
    }
}

/* European Partner Styles */
.european-partner {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
    margin-top: 1.5rem;
}

.european-partner h3 {
    color: #2a5298;
    margin-bottom: 1rem;
}

.partner-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.partner-info a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 500;
}

.partner-info a:hover {
    text-decoration: underline;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.member-position {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.member-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Certifications Section */
.certifications-section {
    padding: 5rem 0;
    background: white;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.certification-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
}

.certification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.certification-icon i {
    font-size: 2rem;
    color: white;
}

.certification-item h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.certification-item p {
    color: #666;
}

/* Network Section */
.network-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.network-map {
    text-align: center;
}

.network-map .map-placeholder {
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    border: 2px dashed #1e3c72;
}

.network-map .map-placeholder i {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.network-map .map-placeholder h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.network-map .map-placeholder p {
    color: #666;
}

.network-locations {
    display: grid;
    gap: 2rem;
}

.location-group h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    border-bottom: 2px solid #1e3c72;
    padding-bottom: 0.5rem;
}

.location-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.location-group li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.location-group li:last-child {
    border-bottom: none;
}

.location-group strong {
    color: #1e3c72;
}

/* About CTA */
.about-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.about-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.about-cta p {
    color: #e0e0e0;
    margin-bottom: 2rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* IT Services Note in Footer */
.it-services-note {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

.it-services-note strong {
    color: #2a5298;
}

/* Enhanced Team Section Styles */
.team-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    flex: 0 0 300px;
    max-width: 300px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    position: relative;
    overflow: hidden;
}

.member-img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.member-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
}

.member-placeholder i {
    font-size: 3rem;
    color: white;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-position {
    color: #2a5298;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #e3f2fd;
    color: #1e3c72;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background: white;
}

.partners-static-container {
    margin-top: 3rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-item {
    flex: 0 0 auto;
}

.partner-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    height: 180px;
    justify-content: center;
}

.partner-link:hover {
    border-color: #1e3c72;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.15);
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.partner-link:hover .partner-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.partner-icon i {
    font-size: 2rem;
    color: white;
}

.partner-info {
    text-align: center;
}

.partner-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.partner-info p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Different styles for each partner */
.partner-item:nth-child(1) .partner-link {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.partner-item:nth-child(2) .partner-link {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

/* Team CTA Section */
.team-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
}

.team-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.team-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.team-cta .btn {
    margin: 0 0.5rem;
}

.team-cta .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.team-cta .btn-outline:hover {
    background: white;
    color: #1e3c72;
}
