:root {
    --primary-color: #E63946;
    /* Red from logo */
    --secondary-color: #1D3557;
    /* Dark Blue */
    --accent-color: #457B9D;
    /* Light Blue */
    --light-bg: #F1FAEE;
    --dark-text: #333333;
    --light-text: #ffffff;
    --gradient-overlay: linear-gradient(135deg, rgba(29, 53, 87, 0.9), rgba(230, 57, 70, 0.8));
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--light-text);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--light-text);
    color: var(--secondary-color);
}

.highlight {
    color: var(--primary-color);
}

.w-100 {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-color);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--light-text);
    padding-top: 80px;
    /* offset for fixed nav */
}

/* Page Header - Premium Style */
.page-header {
    background-color: var(--secondary-color);
    padding: 140px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-header .logo-img {
    height: 120px;
    /* Increased size slightly for balance */
    width: auto;
    border-radius: 50%;
    padding: 2px;
    /* Optional: subtle shadow/glow if needed, but keeping clean for now as requested */
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.2); */
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align text to start */
    text-align: left;
}

.page-header .badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    display: inline-block;
}

.page-header h1 {
    font-size: 3.5rem;
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .page-header .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .header-content {
        align-items: center;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .page-header .logo-img {
        height: 90px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.quick-track-home {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    width: fit-content;
}

.quick-track-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.quick-track-form input {
    flex: 1;
    padding: 12px;
    border-radius: 5px;
    border: none;
    min-width: 300px;
}

.quick-track-form button {
    padding: 12px 20px;
    border: none;
}

/* Mobile Responsiveness for Hero */
@media (max-width: 600px) {
    .quick-track-home {
        width: 100%;
        padding: 15px;
    }

    .quick-track-form {
        flex-direction: column;
        width: 100%;
        max-width: none;
    }

    .quick-track-form input {
        min-width: 0;
        /* Remove min-width restriction on mobile */
        width: 100%;
    }

    .quick-track-form button {
        width: 100%;
    }

    .hero-text {
        text-align: center;
    }

    .quick-track-home {
        margin: 30px auto 0;
        /* Center it on mobile */
    }
}

/* Motto Bar */
.motto-bar {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
}

.motto-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-weight: 500;
    font-size: 0.9rem;

    gap: 20px;
}



/* Features */
.features {
    padding: 80px 0;
    background-color: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    transform: scale(1.1);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.0);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-list {
    margin-top: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-list i {
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-item h4 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 20px;
    overflow: hidden;
}

.contact-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px;
}

.contact-info h2 {
    margin-bottom: 10px;
    color: white;
}

.contact-info>p {
    margin-bottom: 40px;
    opacity: 0.8;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.info-item h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-form-container {
    padding: 50px;
}

.contact-form h3 {
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.w-100 {
    width: 100%;
}

/* Footer */
footer {
    background-color: #0b1118;
    /* Very dark blue/black */
    color: #fff;
    padding: 40px 0 0;
    font-family: 'Outfit', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.footer-logo>p {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
}

.footer-tagline {
    font-size: 0.75rem !important;
    color: #888 !important;
    margin-top: 5px;
    display: block;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-links a {
    color: #a0a0a0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.6rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: #a0a0a0;
    line-height: 1.5;
    align-items: flex-start;
    font-size: 0.9rem;
}

.footer-contact p span {
    flex: 1;
}

.footer-contact p a {
    color: inherit;
    transition: var(--transition);
}

.footer-contact p a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 4px;
    min-width: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #05080c;
    /* Even darker shade */
    padding: 15px 0;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.partner-card {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.partner-card:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.partner-card h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-contact {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    /* Header height compact */
    /* Header height compact */
    .navbar {
        padding: 8px 0;
    }

    /* Logo small + aligned */
    .logo {
        font-size: 1.1rem;
        gap: 6px;
    }

    .logo img {
        height: 28px;
    }

    /* Navigation Dropdown */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column !important;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        font-size: 1rem;
        font-weight: 600;
        color: var(--secondary-color);
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    /* Hamburger icon bigger + clickable */
    .hamburger {
        display: block;
        font-size: 1.5rem;
        padding: 8px;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        background: #f8f9fa;
        color: var(--secondary-color);
    }

    /* Prevent layout shift */
    .nav-container {
        align-items: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .features-grid,
    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr !important;
    }

    /* Stack flex/grid items on mobile for generic layout containers */
    div[style*="grid-template-columns"],
    .contact-wrapper,
    .service-row {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        display: flex !important;
    }

    div[style*="display: flex"],
    form[style*="display: flex"],
    form[action="track.php"] {
        flex-direction: column !important;
    }

    /* Exceptions: Keep these horizontal */
    .hero-buttons,
    .footer-social,
    .motto-bar .container {
        flex-direction: row !important;
    }

    /* Motto bar specific override from previous rules */
    .motto-bar .container {
        flex-direction: column !important;
        gap: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-contact {
        grid-column: auto;
    }
}