/* ============================================
           CSS VARIABLES - Brand Colors & Design System
           ============================================ */
        :root {
            --color-primary: #1a3a5c;
            --color-accent: #8b1e3f;
            --color-grey-light: #f5f7fa;
            --color-grey-medium: #e0e4e8;
            --color-grey-dark: #6b7280;
            --color-white: #ffffff;
            --color-text: #2d3748;
            
            --border-radius-sm: 8px;
            --border-radius-md: 12px;
            --border-radius-lg: 20px;
            
            --shadow-sm: 0 2px 8px rgba(26, 58, 92, 0.08);
            --shadow-md: 0 4px 16px rgba(26, 58, 92, 0.12);
            --shadow-lg: 0 8px 32px rgba(26, 58, 92, 0.16);
            
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: all 0.2s ease;
            
            --spacing-xs: 0.5rem;
            --spacing-sm: 0.5rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;
            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'Montserrat', sans-serif;
        }

        /* ============================================
           RESET & BASE STYLES
           ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
        }

        button {
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        /* ============================================
           UTILITY CLASSES
           ============================================ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-sm);
        }

        .section {
            padding: var(--spacing-xl) 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: var(--spacing-md);
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--color-grey-dark);
            text-align: center;
            max-width: 700px;
            margin: 0 auto var(--spacing-lg);
            line-height: 1.8;
        }

        .btn {
            display: inline-block;
            padding: 0.875rem 2rem;
            border-radius: var(--border-radius-lg);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        .btn-primary {
            background: var(--color-accent);
            color: var(--color-white);
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover {
            background: #6d1832;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary {
            background: var(--color-white);
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
        }

        .btn-secondary:hover {
            background: var(--color-primary);
            color: var(--color-white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* ============================================
           TOP BAR (Contact Info)
           ============================================ */
        .top-bar {
            background: #8b1e3f;
            color: var(--color-white);
            padding: 0.75rem 0;
            font-size: 0.875rem;
            transition: var(--transition-smooth);
        }

        .top-bar.hidden {
            transform: translateY(-100%);
            opacity: 0;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .top-bar-left,
        .top-bar-right {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .top-bar a {
            color: var(--color-white);
            opacity: 0.9;
        }

        .top-bar a:hover {
            opacity: 1;
        }
        @media (max-width: 600px) {
            .top-bar {display: none;}
        }


        /* ============================================
           HERO SECTION WITH SLIDER
           ============================================ */
        .hero {
            position: relative;
            height: 70vh;
            min-height: 400px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        @media (max-width: 600px) {
            .hero {
                height: 40vh;
            }
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 58, 92, 0.8) 0%, rgba(139, 30, 63, 0.6) 100%);
        }

        .hero-content {
            display: none;
            position: relative;
            
            z-index: 2;
            text-align: center;
            color: var(--color-white);
            max-width: 900px;
            padding: 0 var(--spacing-sm);
            animation: fadeInUp 1s ease-out;
        }
        @media (max-width: 600px) {
            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: var(--spacing-md);
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: var(--spacing-lg);
            opacity: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
           
            
            
        }
        

       /* ============================================
   ENQUIRY CARD - FLOATING FORM
   ============================================ */
.enquiry-card {
    position: absolute;
    
    bottom: 100px;
    left: 30%;
    transform: translateX(-50%);
    background: var(--color-white);
    padding: 0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 700px;
    z-index: 3;
    overflow: hidden;
}

/* FORM TABS */
.form-tabs {
    display: flex;
    background: var(--color-grey-light);
    border-bottom: 2px solid var(--color-grey-medium);
}

.tab-btn {
    flex: 1;
    padding: 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-grey-dark);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-smooth);
}

.tab-btn.active {
    background: var(--color-accent);
    color: var(--color-white);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn:hover {
    background: #8b1e3f;
    transition: var(--transition-smooth);
    color: var(--color-white);
}

.tab-icon {
    font-size: 1.25rem;
}

/* TAB CONTENT */
.tab-content {
    display: none;
    padding: 2rem;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORM GRID */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.form-field input {
    padding: 0.875rem;
    border: 1px solid var(--color-grey-medium);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--color-white);
}

.form-field input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(139, 30, 63, 0.1);
}

.form-field input::placeholder {
    color: var(--color-grey-dark);
    opacity: 0.6;
}

.btn-full {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

/* SCROLL TO FORM BUTTON (Mobile CTA) */
.scroll-to-form {
    display: none;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 900px) {
    /* HIDE FLOATING FORM ON MOBILE */
    .enquiry-card {
        display: none;
    }

    /* SHOW ENQUIRE BUTTON ON MOBILE */
    .scroll-to-form {
        display: inline-block;
    }

    /* ADJUST SERVICES SECTION PADDING */
    .services {
        padding-top: var(--spacing-xl);
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tab-btn {
        font-size: 0.9375rem;
        padding: 1rem;
    }

    .tab-icon {
        font-size: 1.125rem;
    }

    .tab-content {
        padding: 1.5rem;
    }
    .hero-buttons {
        width: 80%;
        align-items: center;

     }
}

/* Mobile improvements for Services section */
@media (max-width: 600px) {
	/* fix negative padding and provide comfortable vertical spacing */
	.services {
		padding-top: 50px; /* replaces erroneous -50px */
		padding-bottom: var(--spacing-lg);
	}

	/* single column layout with slightly reduced gap for mobile */
	.services-grid {
		grid-template-columns: 1fr;
		gap: calc(var(--spacing-sm));
		padding: 0;
	}

	/* stack card content, remove large hover transform on touch devices */
	.service-card {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0;
		/* keep subtle shadow but remove translate on :hover for touch */
		box-shadow: var(--shadow-sm);
		transition: none;
        cursor: pointer;
	}

	/* make image more prominent on mobile while keeping aspect cover */
	.service-card-image {
		height: 200px;
		min-height: 160px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		overflow: hidden;
	}

	.service-card-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	/* tighter content padding and slightly smaller headings for mobile */
	.service-card-content {
		padding: calc(var(--spacing-sm));
        
	}
    .arrow-flex {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        
    }
    .arrow-flex h3 {
        cursor: pointer;
    }
    .arrow-flex h3 :focus {
        outline: 3px solid rgba(139,30,63,0.18); outline-offset: 3px;
    }
	.service-card h3 {
		font-size: 1.25rem;
		margin-bottom: 0.5rem;
	}

	.service-card p {
		font-size: 0.95rem;
		line-height: 1.5;
		margin-bottom: calc(var(--spacing-sm));
		color: var(--color-grey-dark);
	}

	/* full width buttons for easier tapping */
	.service-card .btn {
		width: 100%;
		display: inline-block;
		text-align: center;
		padding: 0.85rem 1rem;
		border-radius: 10px;
		font-size: 0.95rem;
		margin-top: 0.5rem;
	}

	/* disable the hover lift effect on mobile (touch devices) */
	.service-card:hover {
		transform: none;
		box-shadow: var(--shadow-sm);
	}
}

/* extra tweak for very small screens */
@media (max-width: 380px) {
	.service-card-image {
		height: 160px;
	}
	.service-card h3 {
		font-size: 1.125rem;
	}
	.service-card-content {
		padding: calc(var(--spacing-xs));
	}
	.service-card p {
		font-size: 0.9rem;
	}
}

/* ============================================
           SERVICES SECTION
           ============================================ */
        .services {
            background: var(--color-grey-light);
            padding-top: 40px;
        }
        @media (max-width: 600px) {
            .services {
                padding-top: var(--spacing-md);
                padding-bottom: var(--spacing-lg);
            }
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-md);
        }

        .service-card {
            background: var(--color-white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-card-image {
            height: 220px;
            background: var(--color-grey-medium);
            position: relative;
            overflow: hidden;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.05);
        }

        .service-card-content {
            padding: var(--spacing-md);
        }

        .service-card h3 {
            color: var(--color-primary);
            font-size: 1.5rem;
            margin-bottom: var(--spacing-sm);
        }

        .service-card p {
            color: var(--color-grey-dark);
            margin-bottom: var(--spacing-md);
        }

        /* Services: two-up layout on desktop, ellipsis for copy, round SVG CTA */
@media (min-width: 901px) {
	.services-grid {
		/* two cards per row */
		grid-template-columns: repeat(4, minmax(320px, 1fr));
		gap: var(--spacing-md);
	}
}

/* keep single column on smaller screens */
@media (max-width: 900px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

/* truncate paragraph copy with an ellipsis after ~3 lines */
.service-card-content p {
	display: -webkit-box;
	-webkit-line-clamp: 3; /* number of lines to show */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: var(--spacing-sm);
}

/* round SVG link styling (keeps spacing consistent with .btn) */
.service-cta {
	display: none;

	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: transparent;
	padding: 0;
	border: none;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
	text-decoration: none;
}

/* make SVG scale on hover / focus for desktop */
.service-cta:hover,
.service-cta:focus {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	text-decoration: none;
}

/* ensure the inline SVG uses no unexpected spacing */
.service-cta svg { display: block; }

/* ensure accessibility focus outline */
.service-cta:focus { outline: 3px solid rgba(139,30,63,0.18); outline-offset: 3px; }

/* small-screen tweak: slightly smaller CTA */
@media (max-width: 380px) {
	.service-cta { width: 40px; height: 40px;
    display: inline-flex;
     }
}

/* ============================================
           PROCESS SECTION (Split Layout)
           ============================================ */
        .process {
            background: var(--color-white);
        }

        .process-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-lg);
            align-items: center;
        }

        .process-image {
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .process-text h2 {
            color: var(--color-primary);
            font-size: 2.5rem;
            margin-bottom: var(--spacing-md);
        }

        .process-steps {
            margin: var(--spacing-md) 0;
        }

        .process-step {
            display: flex;
            gap: 1rem;
            margin-bottom: var(--spacing-md);
            align-items: flex-start;
        }

        .step-number {
            background: var(--color-accent);
            color: var(--color-white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-content h4 {
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

        /* ============================================
           ABOUT / JOURNEY SECTION
           ============================================ */
        .about {
            background: var(--color-grey-light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-lg);
            align-items: center;
        }

        .about-text h2 {
            color: var(--color-primary);
            font-size: 2.5rem;
            margin-bottom: var(--spacing-md);
        }

        .about-text p {
            color: var(--color-grey-dark);
            font-size: 1.125rem;
            margin-bottom: var(--spacing-md);
            line-height: 1.8;
        }

        .about-image {
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        /* ============================================
           CORE VALUES SECTION
           ============================================ */
        .values {
            background: var(--color-white);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-md);
        }

        .value-card {
            background: var(--color-grey-light);
            padding: var(--spacing-md);
            border-radius: var(--border-radius-lg);
            text-align: center;
            transition: var(--transition-smooth);
        }

        .value-card:hover {
            background: var(--color-white);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .value-icon {
            width: 60px;
            height: 60px;
            background: var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--spacing-sm);
            color: var(--color-white);
            font-size: 1.5rem;
        }

        .value-card h3 {
            color: var(--color-primary);
            margin-bottom: var(--spacing-sm);
        }

        .value-card p {
            color: var(--color-grey-dark);
        }

        /* ============================================
           FLEET SECTION
           ============================================ */
        .fleet {
            background: var(--color-grey-light);
        }

        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-md);
        }

        .fleet-card {
            background: var(--color-white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
        }

        .fleet-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .fleet-card-image {
            height: 250px;
            background: var(--color-grey-medium);
            position: relative;
        }

        .fleet-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .fleet-card-content {
            padding: var(--spacing-md);
        }

        .fleet-card h3 {
            color: var(--color-primary);
            font-size: 1.5rem;
            margin-bottom: var(--spacing-sm);
        }

        .fleet-specs {
            display: flex;
            gap: 1rem;
            margin: var(--spacing-sm) 0;
            flex-wrap: wrap;
        }

        .fleet-spec {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-grey-dark);
            font-size: 0.875rem;
        }

        /* ============================================
           CTA BAND
           ============================================ */
        .cta-band {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
            color: var(--color-white);
            padding: var(--spacing-xl) 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-band::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 40%;
            height: 200%;
            background: rgba(255, 255, 255, 0.05);
            transform: rotate(15deg);
        }

        .cta-band h2 {
            font-size: 3rem;
            margin-bottom: var(--spacing-md);
            position: relative;
        }

        .cta-band p {
            font-size: 1.25rem;
            margin-bottom: var(--spacing-lg);
            opacity: 0.95;
            position: relative;
        }

        .cta-band .btn-primary {
            background: var(--color-white);
            color: var(--color-primary);
        }

        .cta-band .btn-primary:hover {
            background: var(--color-grey-light);
        }

   
     
        /* ============================================
           VIEW ALL CTA
           ============================================ */
        .destinations-cta {
            text-align: center;
            margin-top: var(--spacing-lg);
        }

        .view-all-btn {
            background: transparent;
            color: var(--color-primary);
            padding: 1rem 2.5rem;
            border: 2px solid var(--color-primary);
            border-radius: var(--border-radius-lg);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .view-all-btn:hover {
            background: var(--color-primary);
            color: var(--color-white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* ============================================
           SCROLL REVEAL ANIMATION
           ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 900px) {
            .section { padding: calc(var(--spacing-md)) 0; }
	.section-title { font-size: 1.75rem; }
	.section-subtitle { font-size: 1rem; margin-bottom: calc(var(--spacing-md)); padding: 0 0.5rem; }

	.container { padding-left: 0.75rem; padding-right: 0.75rem; }

	/* Hero scaled for tablets / small laptops */
	.hero { height: 45vh; min-height: 280px; }
	.hero-content { padding: 0 0.75rem; max-width: 640px; }
	.hero h1 { font-size: 1.8rem; }
	.hero p { font-size: 1rem; }
	.hero-buttons { gap: 0.5rem; width: 100%; justify-content: center; }

	/* Services tighter layout */
	.services { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-md); }
	.services-grid { gap: 1rem; grid-template-columns: 1fr; }
	.service-card-image { height: 180px; }
	.service-card-content { padding: 0.85rem; }
	.service-card h3 { font-size: 1.125rem; }
	.service-card p { font-size: 0.95rem; -webkit-line-clamp: 3; }

	/* smaller CTA circle and testimonial tweaks */
	.service-cta { width: 40px; height: 40px; }
	.testimonial-card { min-width: 300px; padding: 1rem; }
}

/* Smaller phones */
@media (max-width: 420px) {
	.section { padding: 2rem 0; }
	.section-title { font-size: 1.5rem; }

	/* Hero */
	.hero { height: 38vh; min-height: 220px; }
	.hero h1 { font-size: 1.4rem; }
	.hero p { font-size: 0.95rem; }

	/* Services compact */
	.service-card-image { height: 150px; }
	.service-card h3 { font-size: 1rem; }
	.service-card p { font-size: 0.9rem; -webkit-line-clamp: 4; }

	/* CTA smaller */
	.service-cta { width: 36px; height: 36px; }

	/* Testimonials */
	.testimonial-card { min-width: 260px; }
}

/* ============================================
           FOOTER
           ============================================ */
        footer {
            background: var(--color-primary);
            color: var(--color-white);
            padding: var(--spacing-xl) 0 var(--spacing-md);
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
        }

        .footer-section h3 {
            margin-bottom: var(--spacing-md);
            font-size: 1.25rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: var(--spacing-sm);
        }

        .footer-section a {
            opacity: 0.9;
        }

        .footer-section a:hover {
            opacity: 1;
            color: var(--color-accent);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: var(--spacing-sm);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: var(--spacing-md);
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-fast);
        }

        .social-link:hover {
            background: var(--color-accent);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: var(--spacing-md);
            text-align: center;
            opacity: 0.8;
        }

        /* ============================================
           SCROLL REVEAL ANIMATION
           ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 900px) {
            .section-title {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .process-content,
            .about-content {
                grid-template-columns: 1fr;
            }

            .about-content .about-image {
                order: -1;
            }

            .enquiry-form {
                grid-template-columns: 1fr;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 400px;
                background: var(--color-white);
                flex-direction: column;
                padding: var(--spacing-lg);
                box-shadow: var(--shadow-lg);
                transition: var(--transition-smooth);
                align-items: flex-start;
            }

            .nav-menu.active {
                right: 0;
            }

            .hamburger {
                display: flex;
            }

            .top-bar-content {
                justify-content: center;
                text-align: center;
            }

            .top-bar-left,
            .top-bar-right {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        @media (max-width: 600px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .enquiry-card {
                bottom: -120px;
                padding: 1.5rem;
            }

           

            .cta-band h2 {
                font-size: 2rem;
            }

            .fleet-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Featured highlights — improved mobile responsiveness */
@media (max-width: 900px) {
	.featured-highlights {
		/* ensure single-column stacking on tablets/large phones */
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.featured-content {
		padding: var(--spacing-md);
	}
	.highlight-item {
		display: flex;
		align-items: flex-start;
		gap: 0.75rem;
		padding: 0.5rem 0;
	}
	.highlight-icon {
		width: 44px;
		height: 44px;
		font-size: 1.1rem;
		flex-shrink: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	.highlight-text {
		font-size: 0.98rem;
		line-height: 1.4;
	}
}

/* Very small phones — compact sizes and stacked layout */
@media (max-width: 420px) {
	.featured-content {
		padding: calc(var(--spacing-sm));
	}
	.highlight-item {
		gap: 0.5rem;
	}
	.highlight-icon {
		width: 36px;
		height: 36px;
		font-size: 0.95rem;
	}
	.highlight-text {
		font-size: 0.9rem;
	}
	.featured-content h3 {
		font-size: 1.6rem;
		margin-bottom: 0.5rem;
	}
}

/* Fleet Category Sections */
.fleet-category {
    margin-bottom: 4rem;
}

.fleet-category-title {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-accent);
    font-weight: 700;
}

/* Fleet Badge on Images */
.fleet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Featured Fleet Card */
.fleet-card--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.03) 0%, rgba(139, 30, 63, 0.03) 100%);
    border: 2px solid var(--color-accent);
}

.fleet-card--featured .fleet-card-content {
    padding: 2rem;
}

.fleet-card--featured h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.fleet-highlights {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--color-grey-light);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

.fleet-highlights h4 {
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fleet-highlights ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.fleet-highlights li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-grey-dark);
}

.fleet-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .fleet-category-title {
        font-size: 1.5rem;
    }
}


