@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
    --cta-orange: #ff9c00;
    --cta-green: #87d441;
    --text-dark: #222222;
    --text-gray: #444444;
    --bg-light: #fffdf9; /* Slight off-white like the image background */
}

.premium-about-section {
    padding: 100px 5%;
    background-color:#FFF9F1;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.about-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Graphic Styling */
.about-visual-container {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.about-banner-box {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.about-banner-box:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.main-graphic {
    width: 100%;
    display: block;
    height: auto;
}

/* Right Text Styling */
.about-text-content {
    flex: 1;
}

.about-heading {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
}

.about-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 40px;
}

/* CTA Buttons */
.about-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-btn {
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.call-btn {
    background: var(--cta-orange);
    color: #000;
}

.wa-btn {
    background: var(--cta-green);
    color: #fff;
}

.about-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    filter: brightness(1.05);
}

.about-btn i {
    font-size: 22px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .about-heading { font-size: 40px; }
    .about-cta-group { justify-content: center; }
    .about-visual-container { width: 100%; }
}




.activities-section {
    padding: 80px 0;
    background-color: #FFF9F1;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.activities-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.activities-header {
    text-align: center;
    margin-bottom: 50px;
}

.activities-title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.activities-subtitle {
    font-size: 16px;
    color: #444;
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

/* Buttons */
.activities-top-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.act-btn {
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.btn-call { background: #ffa500; color: #000; }
.btn-wa { background: #7ed321; color: #fff; }

.act-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

/* Grid Layout */
/* .activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
    justify-items: center;
} */

.activities-grid {
    display: flex;           /* Changed from grid to flex */
    flex-wrap: wrap;         /* Allows cards to move to the next row */
    justify-content: center; /* This is the "magic" that centers the last row */
    gap: 30px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.activity-card {
    width: 295px; 
    text-align: center;
    cursor: pointer;
    /* Removed fixed margins to let Flexbox handle centering */
}

.act-img-box {
    width: 295px; /* User specified */
    height: 221px; /* User specified */
    border-radius: 10px; /* User specified */
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    background: #eee;
    transition: all 0.4s ease;
}

.act-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Effect */
.activity-card:hover .act-img-box {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.activity-card:hover .act-img-box img {
    transform: scale(1.1);
}

.act-label {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    padding: 0 5px;
    transition: color 0.3s;
}

.activity-card:hover .act-label {
    color: #ffa500;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .activities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .activities-title { font-size: 32px; }
}

@media (max-width: 640px) {
    .activities-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px 10px;
    }
    .activity-card, .act-img-box { width: 100%; height: auto; aspect-ratio: 295/221; }
    .act-label { font-size: 13px; }
    .activities-top-btns { flex-direction: column; align-items: center; }
}



@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
    --brand-orange: #ffa500;
    --dark-bg: #111111;
    --text-white: #ffffff;
    --text-muted: #cccccc;
    --input-border: #dddddd;
}

.contact-section {
    background-color: var(--dark-bg);
    padding: 100px 5%;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    color: var(--text-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- Left Column --- */
.contact-info {
    flex: 1;
}

.contact-logo img {
    height: 80px;
    margin-bottom: 30px;
}

.contact-main-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-subtext {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 450px;
    line-height: 1.5;
}

.contact-label {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-item i {
    color: var(--brand-orange);
    font-size: 20px;
    margin-top: 4px;
}

.contact-item address, 
.contact-item a {
    font-size: 15px;
    color: var(--text-white);
    text-decoration: none;
    font-style: normal;
    line-height: 1.6;
}

.contact-item:hover {
    transform: translateX(10px);
}

/* --- Right Column (Form) --- */
.contact-form-wrapper {
    flex: 1;
}

.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    color: #111;
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 15px;
}

.input-group label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.input-group input, 
.input-group textarea {
    padding: 14px;
    border: 1px solid var(--input-border);
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.1);
}

.contact-submit-btn {
    width: 100%;
    background-color: var(--brand-orange);
    color: #111;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 10px;
}

.contact-submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
    filter: brightness(1.1);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .contact-subtext { margin: 0 auto 40px; }
    .contact-item { justify-content: center; }
    .contact-main-heading { font-size: 32px; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-card { padding: 25px; }
    .contact-section { padding: 60px 5%; }
}



.fleet-section {
    padding: 80px 0;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}

.fleet-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.fleet-header { text-align: center; margin-bottom: 50px; }
.fleet-title { font-size: 40px; font-weight: 800; color: #111; margin-bottom: 10px; }
.fleet-subtitle { font-size: 16px; color: #666; max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* Grid Layout with exact 15px gap */
.fleet-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* --- Exact Dimensions --- */
.fleet-card {
    width: 400px;
    height: 416px;
    padding: 15px;
    border-radius: 20px;
    border: 2px solid #f2f2f2;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    /* Animation Base State */
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* State when visible on scroll */
.fleet-card.active {
    opacity: 1;
    transform: translateY(0);
}

.image-container {
    width: 370px;
    height: 282px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f8f8;
    margin: 0 auto;
}

.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* --- Hover Effects --- */
.fleet-card:hover {
    transform: translateY(-8px);
    border-color: #ffa500;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.fleet-card:hover .vehicle-img {
    transform: scale(1.08);
}

.vehicle-name {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 10px 0;
}

.fleet-actions { display: flex; gap: 10px; }

.btn-f {
    flex: 1; padding: 12px; border-radius: 8px; font-weight: 800;
    text-decoration: none; font-size: 13px; text-transform: uppercase;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.3s;
}

.btn-call { background: #ffa500; color: #000; }
.btn-wa { background: #87d441; color: #fff; }

.btn-f:hover { filter: brightness(1.1); }

/* Mobile Responsive */
@media (max-width: 420px) {
    .fleet-card { width: 100%; height: auto; }
    .image-container { width: 100%; height: auto; aspect-ratio: 370/282; }
}

/* ============================================================
   FULLY UPDATED PREMIUM MOBILE RESPONSIVE CSS
   ============================================================ */

@media (max-width: 768px) {
    /* 1. SECTION PADDING: Add space so cards don't touch edges */
    .activities-section, .fleet-section {
        padding: 60px 20px !important;
    }

    /* 2. ACTIVITIES GRID: Force 1 column and center items */
    .activities-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px !important;
    }

    /* 3. ACTIVITY CARD: Reset fixed 295px width */
    .activity-card {
        width: 100% !important;
        max-width: 350px !important; /* Limits size on large phones */
        margin: 0 auto;
    }

    .act-img-box {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 295 / 221; /* Maintains your design ratio */
        border-radius: 15px !important;
    }

    .act-label {
        font-size: 16px !important;
        margin-top: 15px;
        padding: 0 10px;
        text-align: center;
    }

    /* 4. FLEET GRID: Force 1 column */
    .fleet-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 25px !important;
    }

    /* 5. FLEET CARD: Reset fixed 400px width */
    .fleet-card {
        width: 100% !important;
        height: auto !important;
        max-width: 360px !important;
        padding: 20px !important;
    }

    .image-container {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 370 / 282;
    }

    .fleet-title, .activities-title {
        font-size: 28px !important;
        line-height: 1.2;
    }

    /* 6. BUTTONS: Stack buttons vertically on mobile for better fit */
    .activities-top-btns, .about-cta-group {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 10px;
    }

    .act-btn, .about-btn {
        width: 100% !important;
        justify-content: center !important;
        font-size: 14px !important;
        padding: 15px !important;
    }
}

/* Extra fix for very small phones (iPhone SE etc.) */
@media (max-width: 380px) {
    .act-label { font-size: 14px !important; }
    .activities-title { font-size: 24px !important; }
}

/* Update this inside your existing mobile media query */
@media (max-width: 768px) {
    .trip-select {
        display: flex !important;
        flex-direction: row !important; /* Forces horizontal alignment */
        justify-content: center;
        gap: 10px;           /* Reduced gap to save space */
        width: 100%;
        margin-bottom: 20px;
    }

    .type-btn {
        flex: 1;             /* Makes both buttons take equal width */
        white-space: nowrap; /* Prevents text from breaking into two lines */
        padding: 12px 5px !important; /* Reduces side padding to fit the screen */
        font-size: 12px !important;   /* Slightly smaller font to ensure fit */
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .type-btn input {
        margin-right: 5px;   /* Tighter spacing for the radio circle */
    }
}

@media (max-width: 768px) {
    /* Targets any button inside the About Us CTA group */
    .about-cta-group a {
        display: flex !important;
        justify-content: center !important; /* Centers icon + text horizontally */
        align-items: center !important;     /* Centers icon + text vertically */
        width: 100% !important;             /* Makes button full width */
        padding: 15px !important;           /* Consistent vertical height */
        margin-bottom: 12px !important;     /* Spacing between buttons */
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .about-cta-group {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    /* Targets the Call and WhatsApp buttons in the Fleet section */
    .btn-f {
        font-size: 10px !important;      /* Smaller text for mobile */
        padding: 10px 5px !important;    /* Tighter padding */
        gap: 5px !important;             /* Less space between icon and text */
        white-space: nowrap !important;  /* FORCES text to stay on one line */
        letter-spacing: -0.2px;          /* Slightly tightens text to fit better */
    }

    /* Makes the icons inside those buttons slightly smaller as well */
    .btn-f i {
        font-size: 12px !important;
    }
    
    /* Ensure the container doesn't squash them too much */
    .fleet-actions {
        gap: 8px !important;
    }
}

/* =============================================
   CONTACT SECTION MOBILE RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px !important; /* Breathing room for the section */
    }

    .contact-container {
        flex-direction: column !important; /* Stacks info on top of form */
        gap: 40px !important;
        text-align: center !important;
    }

    /* --- Info Section (Left side) --- */
    .contact-info {
        width: 100% !important;
    }

    .contact-logo img {
        height: 60px !important; /* Smaller logo for mobile */
        margin-bottom: 20px !important;
    }

    .contact-main-heading {
        font-size: 28px !important; /* Smaller heading */
        margin-bottom: 15px !important;
    }

    .contact-subtext {
        font-size: 14px !important;
        margin-bottom: 30px !important;
        max-width: 100% !important;
    }

    /* Centering the contact items (address, phone, mail) */
    .contact-item {
        justify-content: center !important;
        margin-bottom: 15px !important;
        text-align: left; /* Keeps text left-aligned inside centered container */
    }

    /* --- Form Card (Right side) --- */
    .contact-form-wrapper {
        width: 100% !important;
    }

    .contact-card {
        padding: 25px 20px !important; /* Reduced from 40px to fix spacing */
        border-radius: 25px !important;
    }

    .form-title {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }

    /* FIX: Reduce Spacing between fields */
    .form-row {
        grid-template-columns: 1fr !important; /* Stacks mobile and email */
        gap: 12px !important; /* Tighter gap */
    }

    .input-group {
        margin-bottom: 12px !important; /* Reduced from default to tighten form */
        gap: 5px !important; /* Gap between label and input */
        text-align: left; /* Keeps labels left-aligned for better UX */
    }

    .input-group label {
        font-size: 12px !important;
    }

    .input-group input, 
    .input-group textarea {
        padding: 12px !important; /* Slightly smaller height */
    }

    .contact-submit-btn {
        padding: 15px !important;
        font-size: 15px !important;
        margin-top: 5px !important;
    }

    /* --- COMPREHENSIVE ADDRESS CENTERING FIX --- */
@media (max-width: 768px) {
    /* 1. Force the list to center its children */
    .contact-details-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* 2. Hide the location icon */
    .contact-item i.fa-map-marker-alt {
        display: none !important;
    }

    /* 3. Center the address block and the text inside it */
    .contact-item {
        justify-content: center !important; /* Centers the item group */
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto 15px auto !important;
    }

    .contact-item address {
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding-left: 50px !important; /* Prevents text from touching screen edges */
    }

    /* Center the Contact label heading */
    .contact-label {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
}
}





/* ============================================================
   FIXED CONTACT SECTION MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    /* Center the main container */
    .contact-details-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        text-align: center !important;
    }

    /* Center the "Contact" H3 heading */
    .contact-details-list .cont {
        width: 100%;
        text-align: center !important;
        margin-bottom: 30px !important;
        font-size: 28px !important;
    }

    /* Target each contact item (Address, Phone, Email) */
    .contact-item {
        flex-direction: column !important; /* Stacks Icon on TOP of text */
        align-items: center !important;    /* Centers them horizontally */
        justify-content: center !important;
        gap: 10px !important;              /* Space between icon and text */
        margin-bottom: 30px !important;    /* Space between different items */
        width: 100% !important;
        transform: none !important;        /* Disable the hover translate on mobile */
    }

    /* Style the Icons */
    .contact-item i {
        margin-top: 0 !important;
        font-size: 24px !important;        /* Slightly larger for visibility */
        display: block !important;
    }

    /* FIX: Remove the weird padding and center the text blocks */
    .contact-item address, 
    .contact-item a {
        text-align: center !important;
        width: 100% !important;
        padding: 0 20px !important;        /* Equal breathing room on both sides */
        margin: 0 !important;
        font-size: 16px !important;
        line-height: 1.6 !important;
        display: block !important;
    }

    /* Optional: Ensure phone and email links are bold/clear */
    .contact-item a {
        font-weight: 700 !important;
        font-size: 18px !important;
    }
}

/* =============================================
   HERO & SERVICES OVERLAP FIX (MOBILE ONLY)
   ============================================= */

@media (max-width: 768px) {
    /* 1. Reduce the height of the hero background image */
    .hero {
        height: 70vh !important;    /* Reduced from 75vh */
        min-height: 450px !important; /* Prevents it from being too squashed */
        padding-top: 100px !important; /* Adjusted spacing for hero text */
    }

    /* 2. Pull the "Our Services" section higher up */
    .services-area {
        margin-top: -140px !important; /* Increased negative margin to pull it up */
    }

    /* Adjust label box size slightly for better fit with the new overlap */
    .services-label-box {
        font-size: 16px !important;
        padding: 6px 30px !important;
        margin-bottom: 10px !important;
    }
}