/* --- CSS VARIABLES --- */
:root {
    /* Vibrant Modern-Classic Palette */
    --primary-color: #0f3443;
    /* Rich Midnight Teal - Deep & Trustworthy */
    --secondary-color: #fca311;
    /* Vibrant Amber - Energetic & High Contrast */
    --accent-color: #14213d;
    /* Navy Accent */

    --text-dark: #121212;
    /* Nearly Black for crisp text */
    --text-light: #f1f1f1;
    /* Soft White */

    --bg-light: #f4f7f6;
    /* Cool Gray-White */
    --bg-white: #ffffff;

    --border-color: #e0e0e0;

    /* Refined Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --glass-bg: rgba(255, 255, 255, 0.90);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* --- GLOBAL RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    min-width: 0;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* --- UTILITIES --- */
.container {
    width: 90%;
    max-width: 1200px;
    /* Slightly tighter width for better readability */
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 4px;
}

.section-title p {
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* User Friendly Buttons */
.btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #faa307 100%);
    color: #121212;
    /* Dark text on yellow/amber for contrast */
    border-radius: 50px;
    /* Friendly rounded pill shape */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(252, 163, 17, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 52, 67, 0.3);
}

.btn:hover::before {
    width: 100%;
}

/* --- HEADER & NAV --- */
header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 900;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 10px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-color);
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle.open {
    background: rgba(15, 52, 67, 0.06);
}

.menu-toggle i {
    display: block;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 990;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.nav-links a:not(.btn):hover {
    background: rgba(15, 52, 67, 0.05);
    /* Subtle background hover */
    color: var(--secondary-color);
}

.nav-links a.active {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- HERO SECTION --- */
#home {
    min-height: calc(100vh - 80px);
    background: linear-gradient(rgba(15, 52, 67, 0.6), rgba(15, 52, 67, 0.8)), url('background.jpg');
    /* Blue tint overlay */
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    padding-top: 80px;
}

.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 9999;
}

.whatsapp-float a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: #00e785;
    box-shadow: 4px 5px 12px rgba(0, 0, 0, 0.28);
    border-radius: 50%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float a:hover {
    transform: translateY(-2px);
    box-shadow: 5px 6px 16px rgba(0, 0, 0, 0.32);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.hero-content {
    max-width: 850px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    /* Specific adjustments for readability */
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
}

/* --- ABOUT SECTION --- */
#about {
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern element */
#about::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary-color) 10%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-text p {
    color: #444;
    margin-bottom: 18px;
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-img {
    position: relative;
}

/* Image frame effect */
.about-img::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 12px;
    z-index: -1;
    transition: var(--transition);
}

.about-img:hover::after {
    transform: translate(5px, 5px);
}

.about-img img {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    display: block;
}

.about-img:hover img {
    transform: translateY(-5px);
}

/* --- SERVICES SECTION --- */
#services {
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    justify-items: center;
}

.service-card {
    background: var(--bg-white);
    padding: 45px 35px;
    text-align: center;
    transition: var(--transition);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    max-width: 420px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(252, 163, 17, 0.05) 0%, transparent 100%);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(252, 163, 17, 0.3);
}

.service-card:hover::before {
    height: 100%;
}

.service-card i {
    font-size: 3.5rem;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card p {
    color: #666;
    font-size: 1rem;
}

/* --- VEHICLE FLEET --- */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    justify-items: center;
}

.vehicle-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vehicle-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

/* Gradient overlay on image bottom */
.vehicle-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vehicle-card:hover .vehicle-img img {
    transform: scale(1.08);
}

.vehicle-info {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vehicle-info h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.specs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px dashed #e0e0e0;
    border-bottom: 1px dashed #e0e0e0;
}

.specs span {
    font-size: 0.95rem;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.specs span i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.vehicle-info .btn {
    width: 100%;
    background: var(--secondary-color);
    border-color: var(--primary-color);
}

.vehicle-info .btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #121212;
}

/* --- VIDEO GALLERY --- */
#video-gallery {
    background-color: #f8fcfd;
}

/* --- UPCOMING VEHICLES --- */
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    justify-items: center;
}

.upcoming-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: 100%;
    max-width: 420px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.upcoming-img {
    height: 220px;
    min-height: 180px;
    overflow: hidden;
    position: relative;
}

.upcoming-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.upcoming-info {
    padding: 18px 20px 26px;
}

.upcoming-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.upcoming-info p {
    color: #666;
    margin-bottom: 14px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    justify-items: center;
}

.video-card {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000;
    /* Fallback */
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    height: 240px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.9;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 52, 67, 0.4);
    /* Teal tint overlay */
    transition: var(--transition);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.play-icon i {
    color: #fff;
    font-size: 1.8rem;
    margin-left: 5px;
    transition: var(--transition);
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.video-card:hover .play-icon i {
    color: #121212;
}

.video-card:hover .video-thumbnail::after {
    background: rgba(15, 52, 67, 0.6);
    /* Darker on hover for contrast */
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-card h3 {
    padding: 18px;
    text-align: center;
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 600;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    margin: auto;
    width: 90%;
    max-width: 1000px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content video {
    width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}



.video-thumbnail {
    position: relative;
    height: 220px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}









/* --- LOCATION SECTION --- */
#location {
    background: var(--bg-light);
    padding-bottom: 0;
    /* Flush with footer if desired, or keep padding */
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
}

.map iframe {
    height: 100%;
    min-height: 500px;
    border-radius: 0 !important;
    filter: grayscale(20%) contrast(1.1);
    /* Subtle map styling */
}

.address {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay for address */
.address::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

.address h3 {
    color: var(--secondary-color);
    margin-bottom: 35px;
    font-size: 2.2rem;
    position: relative;
}

.address p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-size: 1.15rem;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    line-height: 1.6;
}

.address p i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 4px;
    /* Align icon with text */
}

/* --- BOOKING SECTION --- */
#booking {
    background: linear-gradient(rgba(15, 52, 67, 0.92), rgba(15, 52, 67, 0.92)),
        url('background.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: var(--bg-white);
    padding-top: 100px;
    padding-bottom: 100px;
}

#booking .section-title h2 {
    color: var(--bg-white);
}

#booking .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

.booking-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.booking-form {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #e63946;
}

.form-control {
    width: 100%;
    padding: 16px;
    border: 2px solid #eee;
    background: #fcfcfc;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    border-radius: 8px;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(252, 163, 17, 0.1);
}

/* Sidebar Info Cards */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: rgba(255, 255, 255, 0.08);
    /* slightly more visible */
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.info-card i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.info-card h4 {
    color: var(--bg-white);
    margin-bottom: 10px;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    background: var(--secondary-color);
    border: none;
    color: #121212;
    font-weight: 700;
    margin-top: 10px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(252, 163, 17, 0.3);
}

.btn-submit:hover {
    background: #e5940e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 163, 17, 0.5);
    color: #000;
}

.error-msg {
    color: #e63946;
    font-size: 0.85rem;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

.form-group.has-error .form-control {
    border-color: #e63946;
    background: #fff8f8;
}

.form-group.has-error .error-msg {
    display: block;
}

.success-message {
    background: #fdfdfd;
    color: #1e4620;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid #f8fcf8;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* --- FOOTER --- */
footer {
    background: #0b232e;
    /* Very dark teal/black */
    color: #b0bec5;
    padding: 90px 0 30px;
    font-size: 0.95rem;
    border-top: 4px solid var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 70px;
    margin-bottom: 70px;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-col ul li {
    margin-bottom: 18px;
}

.footer-col ul li a {
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 85px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #121212;
    /* Dark icon on bright amber */
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(252, 163, 17, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: #78909c;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .map iframe {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: 0;
        transform: translateX(100%);
        height: calc(100vh - 80px);
        width: 85%;
        max-width: 380px;
        padding: 40px 20px;
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.16);
        transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        padding: 16px 20px;
        color: var(--primary-color);
        border-radius: 12px;
        background: rgba(15, 52, 67, 0.02);
    }

    .nav-links a.btn {
        width: 100%;
        margin-top: 8px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

    nav {
        position: relative;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-info {
        grid-template-columns: 1fr;
    }

    .booking-container {
        gap: 30px;
    }

    .booking-form {
        padding: 30px 25px;
    }

    .info-card {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .social-links {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .service-card,
    .vehicle-card,
    .video-card,
    .info-card {
        padding: 25px;
    }

    .video-grid,
    .services-grid,
    .fleet-grid {
        gap: 24px;
        justify-items: center;
    }

    .video-card,
    .service-card,
    .vehicle-card {
        width: 100%;
        max-width: 100%;
    }

    .map iframe {
        min-height: 260px;
    }

    .footer-grid {
        gap: 30px;
    }

    .booking-form {
        padding: 22px;
    }

    .btn-submit {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }

    /* Ensure page container leaves breathing room on very small screens */
    .container {
        width: 100%;
        padding-left: 14px;
        padding-right: 14px;
        box-sizing: border-box;
    }

    /* Add side padding to grids so cards never touch the viewport edge */
    .video-grid,
    .services-grid,
    .fleet-grid {
        gap: 20px;
        justify-items: center;
        padding-left: 6px;
        padding-right: 6px;
        box-sizing: border-box;
    }

    /* Limit card width and keep them centered */
    .video-card,
    .service-card,
    .vehicle-card {
        width: calc(100% - 28px);
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
}