﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 80px;
}

/* Logistics Hero Section - Using Marketing Page 1st Section Style */
.leasing-section {
    padding: 63.36px 0;
    background: #ffffff;
    position: relative;
}

.leasing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Leasing Content Layout */
.leasing-content-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding: 40px;
}

/* Left Column - Leasing Image */
.leasing-image-container {
    flex: 0.45;
    position: relative;
    height: 671.266px;
    min-height: 671.266px;
    overflow: hidden;
}

.leasing-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 671.266px;
}

.leasing-image-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 671.266px;
}

.leasing-image-inner {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.leasing-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Right Column - Content */
.leasing-content-column {
    flex: 0.55;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
}

.leasing-main-heading h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.leasing-subheading h2 {
    font-size: 32px;
    font-weight: 600;
    color: #014B6F;
    margin: 0 0 20px 0;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.leasing-description {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.leasing-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.leasing-features-list {
    margin-bottom: 30px;
}

.leasing-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leasing-features-list li {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
    font-family: 'Poppins', sans-serif;
}

.leasing-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #014B6F;
    font-weight: bold;
    font-size: 16px;
}

.leasing-cta {
    margin-top: auto;
}

.leasing-cta-button {
    display: inline-block;
    background: #014B6F;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid #014B6F;
}

.leasing-cta-button:hover {
    background: #fff;
    color: #014B6F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 75, 111, 0.3);
}

/* Standard Leasing Classes for Additional Sections */
.leasing-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding: 40px;
}

.leasing-text {
    flex: 0.55;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0;
    justify-content: flex-start;
}

.leasing-heading {
    font-size: 40px;
    color: #000;
    line-height: 56.4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0;
    margin-bottom: 15px;
}

.leasing-subheading {
    font-size: 32px;
    color: rgb(1, 75, 111);
    line-height: 46.08px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0;
    margin-bottom: 25px;
}

.leasing-button {
    font-size: 24px;
    padding: 0 20.8px;
    border-radius: 0;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 79.9688px;
    color: #ffffff;
    background-color: rgb(1, 75, 111);
    text-decoration: none;
    font-family: 'bebas-kai', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.leasing-button:hover {
    background-color: rgb(0, 50, 80);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-container {
    flex-shrink: 0;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.nav-link:hover {
    color: #014b6f;
}

/* Dropdown Styles - Updated to work with main header */
.dropdown {
    position: relative;
}

/* Override logistics dropdown styles to work with main header system */
.new-header .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: translateY(0) !important;
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px !important;
    padding: 10px 0 !important;
    min-width: 200px !important;
    display: none !important;
    z-index: 2000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
}

.new-header .dropdown.active .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Show dropdown on hover for desktop */
.new-header .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Rotate chevron icon on hover */
.new-header .dropdown:hover .dropdown-toggle i,
.new-header .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Smooth transition for chevron rotation */
.new-header .dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown-menu li {
    list-style: none;
}

/* Update dropdown link styles to work with main header */
.new-header .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.new-header .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #014b6f;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: #014b6f;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.logistics-hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.logistics-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logistics-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.logistics-hero-text {
    max-width: 600px;
}

.logistics-hero-heading {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.logistics-hero-subheading {
    font-size: 32px;
    font-weight: 600;
    color: #014b6f;
    margin-bottom: 30px;
    line-height: 1.3;
}

.logistics-hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.logistics-hero-features {
    list-style: none;
    padding: 0;
}

.logistics-hero-features li {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.logistics-hero-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #014b6f;
    font-weight: bold;
    font-size: 18px;
}

.logistics-hero-image-container {
    position: relative;
}

.logistics-hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.logistics-hero-image-content {
    position: relative;
    width: 100%;
    height: 500px;
}

.logistics-hero-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.logistics-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.logistics-hero-image:hover {
    
}

/* Logistics Section Styles */
.logistics-section {
    padding: 100px 0;
    background: #fff;
}

.logistics-section:nth-child(even) {
    background: #f8f9fa;
}

.logistics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logistics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.logistics-section:nth-child(even) .logistics-content {
    grid-template-columns: 1fr 1fr;
}

.logistics-section:nth-child(odd) .logistics-content {
    grid-template-columns: 1fr 1fr;
}

.logistics-text {
    max-width: 600px;
}

.logistics-heading {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.logistics-subheading {
    font-size: 28px;
    font-weight: 600;
    color: #014b6f;
    margin-bottom: 30px;
    line-height: 1.3;
}

.logistics-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.logistics-features-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.logistics-features-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.logistics-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #014b6f;
    font-weight: bold;
    font-size: 16px;
}

.logistics-image-container {
    position: relative;
}

.logistics-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.logistics-image-content {
    position: relative;
    width: 100%;
    height: 400px;
}

.logistics-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #014b6f 0%, #0066cc 100%);
    color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-image-container {
    position: relative;
}

.contact-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.contact-description {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    padding: 15px 30px;
    background: #fff;
    color: #014b6f;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.company-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #014b6f;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* WhatsApp Chat Button - Fixed positioning ensured */






/* Responsive Design for Leasing Section */
@media (max-width: 1024px) {
    .leasing-section {
        padding: 40px 0;
    }
    
    .leasing-container {
        padding: 0 20px;
    }
    
    .leasing-content-layout {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .leasing-image-container {
        height: 400px;
    }
    
    .leasing-hero-image {
        height: 400px;
    }
    
    .leasing-content-column {
        gap: 20px;
        padding: 0;
        flex: 1;
    }
    
    .leasing-main-heading h1 {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .leasing-subheading h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .leasing-section {
        padding: 30px 0;
    }
    
    .leasing-container {
        padding: 0 15px;
    }
    
    .leasing-content-layout {
        padding: 20px;
    }
    
    .leasing-image-container {
        height: 300px;
    }
    
    .leasing-hero-image {
        height: 300px;
    }
    
    .leasing-main-heading h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .leasing-subheading h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .leasing-description p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .leasing-features-list li {
        font-size: 16px;
    }
    
    .leasing-cta-button {
        font-size: 18px;
        height: 50px;
        min-width: 140px;
    }
    
    .leasing-content {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .leasing-text {
        gap: 20px;
        padding: 0;
        flex: 1;
    }
    
    .leasing-heading {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .leasing-subheading {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .leasing-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .leasing-features-list li {
        font-size: 18px;
    }
    
    .leasing-button {
        font-size: 20px;
        height: 60px;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .leasing-section {
        padding: 20px 0;
    }
    
    .leasing-container {
        padding: 0 10px;
    }
    
    .leasing-content-layout {
        padding: 15px;
        gap: 20px;
    }
    
    .leasing-image-container {
        height: 250px;
    }
    
    .leasing-hero-image {
        height: 250px;
    }
    
    .leasing-main-heading h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .leasing-subheading h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .leasing-description p {
        font-size: 13px;
    }
    
    .leasing-features-list li {
        font-size: 14px;
    }
    
    .leasing-cta-button {
        font-size: 16px;
        height: 45px;
        min-width: 120px;
    }
    
    .leasing-content {
        padding: 20px;
    }
    
    .leasing-heading {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .leasing-subheading {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .leasing-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .leasing-features-list li {
        font-size: 16px;
    }
    
    .leasing-button {
        font-size: 18px;
        height: 50px;
        min-width: 140px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .logo {
        height: 40px;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .nav-open {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    /* Mobile dropdown styles - updated to work with main header */
    .new-header .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        background: #f8f9fa !important;
        margin-top: 10px !important;
        border-radius: 8px !important;
        display: none !important;
    }
    
    .new-header .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .phone-link {
        display: none;
    }
    
    .logistics-hero-section {
        padding: 60px 0;
    }
    
    .logistics-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .logistics-hero-heading {
        font-size: 36px;
    }
    
    .logistics-hero-subheading {
        font-size: 24px;
    }
    
    .logistics-hero-image-content {
        height: 300px;
    }
    
    .logistics-section {
        padding: 60px 0;
    }
    
    .logistics-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .logistics-heading {
        font-size: 32px;
    }
    
    .logistics-subheading {
        font-size: 24px;
    }
    
    .logistics-image-content {
        height: 300px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-heading {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    
    
    
}

@media (max-width: 480px) {
    .logistics-hero-heading {
        font-size: 28px;
    }
    
    .logistics-hero-subheading {
        font-size: 20px;
    }
    
    .logistics-heading {
        font-size: 28px;
    }
    
    .logistics-subheading {
        font-size: 20px;
    }
    
    .contact-heading {
        font-size: 24px;
    }
}

/* Standardized WhatsApp Button - Consistent across all pages */
.whatsapp-btn,
.whatsapp-chat,
.whatsapp-chat-btn,
[class*="whatsapp"],
[class*="chat-btn"] {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    pointer-events: auto !important;
    transform: none !important;
    contain: none !important;
    perspective: none !important;
    filter: none !important;
    isolation: auto !important;
    mix-blend-mode: normal !important;
    backface-visibility: visible !important;
    will-change: auto !important;
    float: none !important;
    clear: none !important;
    vertical-align: baseline !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    mask: none !important;
    object-fit: fill !important;
    object-position: 50% 50% !important;
    margin: 0 !important;
    padding: 0 !important;
    top: auto !important;
    left: auto !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    background-color: #25D366 !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    transition: none !important;
    font-size: 26px !important;
    justify-content: center !important;
    align-items: center !important;
}

.whatsapp-btn:hover,
.whatsapp-chat:hover,
.whatsapp-chat-btn:hover,
[class*="whatsapp"]:hover,
[class*="chat-btn"]:hover {
    color: #fff !important;
    text-decoration: none !important;
    transform: none !important;
}

/* Standardized Header - Consistent across all pages */
.new-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 2147483647 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: visible;
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
    backdrop-filter: blur(10px);
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    transform: none !important;
    contain: none !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    bottom: auto !important;
    height: 80px !important;
    filter: none !important;
    perspective: none !important;
}

