/* CSS Variables for Colors and Fonts */
:root {
    --primary-color: #064562;
    --secondary-color: #007bff;
    --accent-color: #0056b3;
    --text-dark: #333;
    --text-light: #666;
    --text-white: #fff;
    --text-primary: #064562;
    --bg-light: #f8f9fa;
    --bg-white: #fff;
    --bg-dark: #064562;
    --border-light: rgba(255, 255, 255, 0.2);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.8);
    --gradient-primary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --gradient-overlay: linear-gradient(var(--overlay-dark), var(--overlay-dark));
    /* Font Variables */
    --font-heading: 'aktiv-grotesk', 'Inter', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-margin-top: 120px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 30px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Button hover effects */
.btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background-color: #007bff;
        border-color: #007bff;
        transform: translateY(-2px);
    }

.btn-light {
    background-color: white;
    border-color: white;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

    .btn-light:hover {
        background-color: #f8f9fa;
        border-color: #f8f9fa;
        transform: translateY(-2px);
    }

.navbar-toggler:focus {
    box-shadow:none !important
}
/* Modal Custom Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

    .modal-header .btn-close {
        filter: invert(1);
        opacity: 0.8;
    }

        .modal-header .btn-close:hover {
            opacity: 1;
        }

.modal-title {
    font-family: var(--font-heading);
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

    .modal-body p{font-size:13px}
    .modal-body ul li{font-size:13px}

    .transport-item {
        padding: 1rem;
        border: 1px solid #e9ecef;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .transport-item:hover {
        border-color: var(--primary-color);
        box-shadow: 0 5px 15px rgba(6, 69, 98, 0.1);
    }

    .transport-item h6 {
        font-family: var(--font-heading);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 2rem;
}

    .modal-footer .btn {
        border-radius: 50px;
        padding: 0.75rem 2rem;
        font-weight: 500;
        color: white;
        transition: all 0.3s ease;
    }

    .modal-footer .btn-primary {
        background: linear-gradient(180deg, #1175a4, #064562);
        border: none;
    }

        .modal-footer .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(6, 69, 98, 0.3);
        }

.modal-dialog {
    max-width: 800px;
}
