/* ===== IMPORT HAUORA FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Hauora:wght@300;400;500;600;700;800&display=swap');

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hauora', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #464646;
    line-height: 1.6;
    padding-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: #ec1d27;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
    font-family: 'Hauora', sans-serif;
}
.btn-primary:hover {
    background: #c41820;
}

.btn-outline {
    background: transparent;
    color: #ec1d27;
    padding: 10px 28px;
    border: 2px solid #ec1d27;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    font-family: 'Hauora', sans-serif;
}
.btn-outline:hover {
    background: #ec1d27;
    color: #fff;
}

/* ===== HEADER - FIXED FLOATING WITH BORDER RADIUS ===== */
header {
    background: rgba(31, 33, 82, 0.92);
    color: #fff;
    padding: 10px 30px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    z-index: 1000;
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    font-family: 'Hauora', sans-serif;
}
.logo span {
    color: #ec1d27;
}

.logo img {
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

nav ul li a {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    color: #fff;
    font-family: 'Hauora', sans-serif;
}
nav ul li a:hover {
    color: #ec1d27;
}

.book-now {
    background: #ec1d27;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    transition: background 0.3s;
}
.book-now:hover {
    background: #c41820;
    color: #fff !important;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.slider {
    display: flex;
    width: 400%;
    height: 100%;
    animation: slide 20s infinite alternate ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 33, 82, 0.55);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-family: 'Hauora', sans-serif;
}
.slide-content h1 span {
    color: #ec1d27;
}
.slide-content p {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 28px;
    font-family: 'Hauora', sans-serif;
}
.slide-content .tagline {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
    color: #ec1d27;
    margin-bottom: 10px;
    font-family: 'Hauora', sans-serif;
}

@keyframes slide {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(0); }
    30%  { transform: translateX(-25%); }
    55%  { transform: translateX(-25%); }
    60%  { transform: translateX(-50%); }
    85%  { transform: translateX(-50%); }
    90%  { transform: translateX(-75%); }
    100% { transform: translateX(-75%); }
}

/* ===== DISCOVER WITH IMAGE ===== */
.discover {
    padding: 80px 0;
    background: #fff;
}

.discover-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.discover-content {
    flex: 1;
    text-align: left;
}

.discover-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2152;
    text-align: left;
    font-family: 'Hauora', sans-serif;
}

.discover-content h2 span {
    color: #ec1d27;
}

.discover-content > p {
    max-width: 100%;
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #464646;
    font-family: 'Hauora', sans-serif;
}

.discover-content .highlight-box {
    background: #f0f0f5;
    padding: 25px 30px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    border-left: 6px solid #ec1d27;
    color: #1f2152;
    margin: 10px 0 20px;
    font-family: 'Hauora', sans-serif;
}

.discover-content .highlight-box i {
    color: #ec1d27;
    margin-right: 10px;
}

.contact-btn {
    margin-top: 20px;
}

.discover-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.discover-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.discover-image:hover img {
    transform: scale(1.03);
}

/* ===== SERVICES ===== */
.services {
    padding: 80px 0;
    background: #f5f5f5;
}

.services h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2152;
    font-family: 'Hauora', sans-serif;
}
.services h2 span {
    color: #ec1d27;
}
.services .subtitle {
    text-align: center;
    font-size: 18px;
    color: #464646;
    margin-bottom: 50px;
    font-family: 'Hauora', sans-serif;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #ec1d27;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 22px;
    margin: 18px 25px 10px;
    color: #1f2152;
    font-family: 'Hauora', sans-serif;
}

.service-card p {
    color: #464646;
    font-size: 15px;
    margin: 0 25px 18px;
    line-height: 1.7;
    font-family: 'Hauora', sans-serif;
}

.service-card .more-link {
    color: #ec1d27;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 25px 25px;
    transition: all 0.3s ease;
    font-family: 'Hauora', sans-serif;
}

.service-card .more-link:hover {
    color: #c41820;
    transform: translateX(5px);
}

/* ===== FLEET ===== */
.fleet {
    padding: 80px 0;
    background: #fff;
}

.fleet h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #1f2152;
    font-family: 'Hauora', sans-serif;
}

.fleet h2 span {
    color: #ec1d27;
}

.fleet .subtitle {
    text-align: center;
    font-size: 18px;
    color: #464646;
    margin-bottom: 20px;
    font-family: 'Hauora', sans-serif;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

/* Fleet Cards */
.fleet-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 5px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid #ec1d27;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.fleet-image {
    width: 105%;
    height: 500px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-card-content {
    padding: 5px 2px 2px;
    text-align: center;
}

/* See More Button */
.fleet-btn {
    display: inline-block;
    background: #ec1d27;
    color: #fff;
    padding: 10px 35px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    font-family: 'Hauora', sans-serif;
}

.fleet-btn:hover {
    background: #c41820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 29, 39, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: #1f2152;
    color: #d0d0d0;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Hauora', sans-serif;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ec1d27;
}

.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-family: 'Hauora', sans-serif;
}
.footer-col ul li a:hover {
    color: #ec1d27;
}

.footer-col .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'Hauora', sans-serif;
}
.footer-col .contact-item i {
    color: #ec1d27;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
    font-family: 'Hauora', sans-serif;
}
.footer-bottom span {
    color: #ec1d27;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    header {
        width: 95%;
        padding: 10px 20px;
        top: 15px;
        border-radius: 30px;
    }

    .menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 14px;
        background: rgba(31, 33, 82, 0.98);
        border-radius: 20px;
        margin-top: 10px;
    }
    nav ul.open {
        display: flex;
    }
    .header-inner {
        flex-wrap: wrap;
    }
    .logo img {
        height: 50px !important;
    }
    .slide-content h1 {
        font-size: 38px;
    }
    .slide-content p {
        font-size: 18px;
    }
    .hero {
        height: 90vh;
    }

    .discover-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .discover-content h2 {
        font-size: 32px;
        text-align: center;
    }

    .discover-content > p {
        text-align: center;
    }

    .discover-content .highlight-box {
        text-align: left;
        display: block;
    }

    .discover-image img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-image {
        height: 180px;
    }
}

@media (max-width: 600px) {
    header {
        width: 98%;
        padding: 8px 15px;
        top: 10px;
        border-radius: 20px;
    }
    .logo img {
        height: 40px !important;
    }
    .slide-content h1 {
        font-size: 28px;
    }
    .slide-content p {
        font-size: 16px;
    }
    .hero {
        height: 70vh;
        min-height: 350px;
    }

    .discover-content h2 {
        font-size: 28px;
    }
    .discover-image img {
        height: 220px;
    }

    .services h2 {
        font-size: 28px;
    }
    .fleet h2 {
        font-size: 28px;
    }
    .fleet .subtitle {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    .discover-content .highlight-box {
        padding: 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .fleet-image {
        height: 220px;
    }

    .service-grid {
        max-width: 100%;
    }
}