/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --black-color: hsl(0, 0%, 0%);
    --black-color-light: hsl(220, 24%, 15%);
    --black-color-lighten: hsl(220, 20%, 18%);
    --white-color: #fff;
    --body-color: hsl(220, 100%, 97%);
    --text-color: hsl(220, 8%, 20%);
    --text-color-light: hsl(220, 4%, 55%);
    --dark-blue: hsl(220, 62%, 39%);
    --dark-blue-hover: hsl(220, 70%, 44%);

    /*========== Typography ==========*/
    --body-font: "Montserrat", sans-serif;

    /*========== Font sizes ==========*/
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.5rem;
    --h4-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;

    /*========== Font weight ==========*/
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /*========== Line height ==========*/
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
    :root {
        --biggest-font-size: 3rem;
        --h1-font-size: 2.5rem;
        --h2-font-size: 2rem;
        --h3-font-size: 1.75rem;
        --h4-font-size: 1.5rem;
        --normal-font-size: 1rem;
        --small-font-size: 0.875rem;
        --smaller-font-size: 0.75rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: var(--font-regular);
    color: var(--text-color);
    line-height: var(--line-height-normal);
    letter-spacing: 0.025em;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black-color);
    font-weight: var(--font-semi-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-bold);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi-bold);
}

h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
}

h4 {
    font-size: var(--h4-font-size);
    font-weight: var(--font-medium);
}

p {
    margin-bottom: 1rem;
    line-height: var(--line-height-relaxed);
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--black-color);
    font-weight: var(--font-medium);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-blue);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    letter-spacing: 0.025em;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1400px;
    margin-inline: 1.5rem;
  }

.section {
    padding: 4rem 0 2rem;
}

.section__title {
    font-size: var(--h2-font-size);
    font-weight: var(--font-bold);
    color: var(--black-color);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.section__subtitle {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color-light);
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text-center {
    text-align: center;
}

.text-light {
    color: var(--text-color-light);
    font-weight: var(--font-regular);
}

.text-bold {
    font-weight: var(--font-bold);
}

.text-medium {
    font-weight: var(--font-medium);
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
    color: var(--black-color);
}

.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: var(--font-bold);
    font-size: var(--h4-font-size);
}

.nav__logo i {
    font-weight: initial;
    font-size: 1.25rem;
}

.nav__logo img{
    width:220px;
}

@media screen and (max-width: 480px) {
    .nav__logo img {
        width: 160px;
    }
}

.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__burger,
.nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
}

.nav__close {
    opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
    .nav__menu {
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s;
    }

    .nav__menu::-webkit-scrollbar {
        width: 0;
    }

    .nav__list {
        background-color: var(--white-color);
        padding-top: 1rem;
    }
    .nav__logo img{
        width:160px;
      }
}

.nav__link {
    color: var(--black-color);
    background-color: var(--white-color);
    font-weight:500 !important;
    font-size: 1.3rem !important;
    font-family: Arial, Helvetica, sans-serif;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    letter-spacing: 0.025em;
}

.nav__link:hover {
    background-color: rgb(196, 196, 196);
    color: var(--dark-blue);
}

/* Show menu */
.show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--black-color);
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--font-medium);
    font-size: var(--normal-font-size);
    transition: background-color .3s;
    letter-spacing: 0.025em;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: rgb(250, 250, 250);
    color: var(--dark-blue);
}

.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
    margin-left: auto;
}

.dropdown__sublink {
    background-color: var(--white-color);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
}

/*=============== MAIN CONTENT STYLES ===============*/
.main {
    padding-top: var(--header-height);
}

.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero__title {
    font-size: var(--biggest-font-size);
    font-weight: var(--font-bold);
    color: var(--black-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: var(--line-height-tight);
}

.hero__description {
    font-size: var(--h4-font-size);
    font-weight: var(--font-regular);
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: var(--line-height-relaxed);
}

.btn {
    display: inline-block;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: var(--font-medium);
    font-size: var(--normal-font-size);
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}

.btn:hover {
    background-color: var(--black-color-light);
    transform: translateY(-2px);
    color: var(--white-color);
}

.btn--outline {
    background-color: transparent;
    color: var(--black-color);
    border: 2px solid var(--black-color);
}

.btn--outline:hover {
    background-color: var(--black-color);
    color: var(--white-color);
}

/*=============== CARDS ===============*/
.card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card__title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--black-color);
    margin-bottom: 1rem;
}

.card__description {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    line-height: var(--line-height-relaxed);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
    .container {
        margin-inline: 1rem;
    }

    .nav__link {
        padding-inline: 1rem;
    }

    .hero__title {
        font-size: var(--h1-font-size);
    }

    .hero__description {
        font-size: var(--normal-font-size);
    }
}

/* For medium devices */
@media screen and (min-width: 768px) {

    .section {
        padding: 6rem 0 2rem;
    }

    .hero {
        padding: 6rem 0;
    }
}

/* For large devices */
@media screen and (min-width: 1118px) {
    .container {
        margin-inline: 4rem;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        height: 100%;
        display: flex;
        column-gap: 3rem;
    }

    .nav__link {
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .25rem;
        font-size: var(--normal-font-size);
        font-weight: var(--font-medium);
        background-color: transparent;
    }

    .nav__link:hover {
        background-color: transparent;
        color: var(--dark-blue);
    }

    .dropdown__item,
    .dropdown__subitem {
        position: relative;
    }

    .dropdown__menu,
    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        left: 0;
        top: 6rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, top .3s;

        /* Enhanced dropdown styling */
        min-width: 280px;
        width: max-content;
        white-space: nowrap;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        border-radius: 12px;
        background-color: var(--white-color);
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 0.5rem 0;
    }

    .dropdown__link,
    .dropdown__sublink {
        padding: 1rem 1.5rem;
        font-size: var(--normal-font-size);
        font-weight: var(--font-medium);
        letter-spacing: 0.025em;
        border-radius: 8px;
        margin: 0 0.5rem;
    }

    .dropdown__link:hover,
    .dropdown__sublink:hover {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--dark-blue);
    }

    .dropdown__subitem .dropdown__link {
        padding: 0.875rem 1.25rem;
        font-size: var(--normal-font-size);
        font-weight: var(--font-medium);
    }

    .dropdown__submenu {
        position: absolute;
        left: 100%;
        top: .5rem;
        min-width: 220px;
    }

    /* Show dropdown menu */
    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        top: 5.5rem;
        pointer-events: initial;
        transition: top .3s;
    }

    /* Show dropdown submenu */
    .dropdown__subitem:hover>.dropdown__submenu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
        transition: top .3s;
    }

    .section {
        padding: 8rem 0 2rem;
    }

    .hero {
        padding: 8rem 0;
    }
}


/* Breadcrumb Banner Section */
.breadcrumb-banner-section {
    padding-top: 60px;
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Image */
.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Blue Overlay */
.blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(50deg, rgba(19, 38, 98, 0.85) 0%, rgba(20, 52, 139, 0.9) 100%);
    z-index: 2;
}

.bread-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Main Content Layout */
.breadcrumb-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
}

/* Left Side Content */
.breadcrumb-left-content {
    color: #fff;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.page-title-wrapper {
    margin-bottom: 30px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Breadcrumb Navigation - Plain Text Links */
.breadcrumb-navigation {
    margin-top: 25px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 4px 0;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00B04F;
    transition: width 0.3s ease;
}

.breadcrumb-link:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.breadcrumb-link:hover::after {
    width: 100%;
}

.breadcrumb-link i {
    font-size: 0.85rem;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0 8px;
}

.breadcrumb-current {
    color: #00B04F;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Right Side - Swinging Truck */
.breadcrumb-right-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.swinging-truck-wrapper {
    position: relative;
    animation: slideInFromTop 1.5s ease-out;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    70% {
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.swinging-truck-image {
    width: 300px;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    animation: swingAnimation 4s ease-in-out infinite 1.5s;
    transform-origin: top center;
    position: relative;
    z-index: 2;
}

@keyframes swingAnimation {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(3deg);
    }

    75% {
        transform: rotate(-3deg);
    }
}

/* Loading state for truck image */
.swinging-truck-image[src=""] {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swinging-truck-image[src=""]:before {
    content: '🚛';
    font-size: 4rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .breadcrumb-banner-section {
        height: 320px;
    }

    .breadcrumb-content {
        gap: 40px;
    }

    .page-title {
        font-size: 3rem;
    }

    .swinging-truck-image {
        width: 250px;
        max-height: 200px;
    }
}

/* UPDATED MOBILE VIEW - Image First, Then Text */
@media (max-width: 768px) {
    .breadcrumb-banner-section {
        height: auto;
        min-height: 350px;
        padding: 40px 0;
    }

    .breadcrumb-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        /* CHANGED: Image appears first (order) */
        grid-template-rows: auto auto;
    }

    /* REORDER: Truck image comes first on mobile */
    .breadcrumb-right-content {
        order: 1;
        /* Image first */
        margin-bottom: 20px;
    }

    .breadcrumb-left-content {
        order: 2;
        /* Text second */
    }

    .bread-container {
        padding: 0 15px;
    }

    .page-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .page-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .breadcrumb-list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .swinging-truck-image {
        width: 220px;
        max-height: 170px;
    }

    .breadcrumb-navigation {
        margin-top: 15px;
    }

    .page-title-wrapper {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-banner-section {
        min-height: 320px;
        padding: 30px 0;
    }

    /* MOBILE SMALL: Maintain image-first order */
    .breadcrumb-content {
        gap: 25px;
    }

    .breadcrumb-right-content {
        order: 1;
        /* Image first */
        margin-bottom: 15px;
    }

    .breadcrumb-left-content {
        order: 2;
        /* Text second */
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .page-subtitle {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.85rem;
    }

    .swinging-truck-image {
        width: 180px;
        max-height: 140px;
    }

    .breadcrumb-list {
        gap: 5px;
    }

    .breadcrumb-separator {
        margin: 0 5px;
    }

    .page-title-wrapper {
        margin-bottom: 15px;
    }

    .breadcrumb-navigation {
        margin-top: 12px;
    }
}

/* Enhanced hover effects */
.breadcrumb-banner-section:hover .swinging-truck-image {
    animation-duration: 2s;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .swinging-truck-image {
        animation: none;
    }

    .slideInLeft,
    .slideInFromTop {
        animation: none;
        opacity: 1;
        transform: none;
    }
}



/* sea Freight Section with Video */
.sea-freight-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.sea-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content Layout */
.sea-freight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Text Content */
.sea-freight-text-content {
    padding-right: 20px;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Header */
.section-header {
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: #00B04F;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.highlight {
    color: #00B04F;
}

/* Content Description */
.content-description {
    margin-bottom: 40px;
}

.content-description p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-description p:last-child {
    margin-bottom: 0;
}

.inline-link {
    color: #00B04F;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #e55a2b;
    text-decoration: none;
}

/* CTA Button */
.cta-button-wrapper {
    margin-top: 40px;
}

.view-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.view-services-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    color: #fff;
}

.view-services-btn:active {
    transform: translateY(0);
}

/* Right Side - Video Content */
.sea-freight-video-content {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.sea-freight-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.4s ease;
    cursor: pointer;
}

.sea-freight-video:hover {
    transform: scale(1.02);
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255, 107, 53, 1);
    transform: scale(1.1);
}

.play-button i {
    margin-left: 5px;
    /* Adjust play icon position */
}

/* Loading state for video */
.sea-freight-video[src=""] {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sea-freight-video[src=""]:before {
    content: '🎬';
    font-size: 4rem;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sea-freight-section {
        padding: 60px 0;
    }

    .sea-freight-content {
        gap: 60px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .sea-freight-video {
        height: 350px;
    }

    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .sea-freight-section {
        padding: 50px 0;
    }

    .sea-freight-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sea-freight-text-content {
        padding-right: 0;
    }

    .sea-container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .sea-freight-video {
        height: 300px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sea-freight-section {
        padding: 40px 0;
    }

    .sea-freight-content {
        gap: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .content-description p {
        font-size: 0.95rem;
    }

    .view-services-btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .sea-freight-video {
        height: 250px;
    }

    .video-wrapper {
        border-radius: 15px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}



/* Team Excellence Section */
.team-excellence-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

/* Increased Container Size */
.team-container {
    max-width: 2400px;
    /* Increased from 1200px */
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content Layout - Image Left, Text Right */
.excellence-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Image column, Text column */
    gap: 100px;
    /* Increased gap */
    align-items: center;
}

.excellence-image-content {
    display: flex;
    justify-content: flex-start;
    /* Changed from flex-end to flex-start */
    align-items: center;
    animation: slideInLeft 1s ease-out;
    margin-left: -300px;
    /* Increased from -230px to push image further left */
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Simple Image - No Design Effects */
.simple-team-image {
    width: 150%;
    max-width: 800px;
    /* Control maximum size */
    height: auto;
    object-fit: cover;
    /* No border-radius, shadow, or hover effects as requested */
}

/* Right Side - Text Content */
.excellence-text-content {
    padding-left: 20px;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Header */
.section-header {
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: #00B04F;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.highlight {
    color: #00B04F;
}

/* Content Description */
.content-description {
    margin-bottom: 40px;
}

.content-description p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-description p:last-child {
    margin-bottom: 0;
}

/* Excellence Features */
.excellence-features {
    margin-bottom: 40px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.feature-item i {
    color: #00B04F;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.feature-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    color: #fff;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: #1e293b;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    border-color: #00B04F;
    color: #00B04F;
    background: rgba(255, 107, 53, 0.05);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .team-container {
        max-width: 1200px;
    }

    .excellence-content {
        gap: 80px;
    }

    .excellence-image-content {
        margin-left: -100px;
        /* Reduce negative margin on smaller screens */
    }
}

/* Tablets - Image Still Visible */
@media (max-width: 1024px) {
    .team-excellence-section {
        padding: 60px 0;
    }

    .excellence-content {
        gap: 60px;
        grid-template-columns: 1fr 1fr;
        /* Keep two columns on tablets */
    }

    .excellence-image-content {
        margin-left: -50px;
        /* Less negative margin on tablets */
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .simple-team-image {
        max-width: 400px;
    }

    .feature-row {
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .learn-more-btn,
    .contact-btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}

/* Mobile Tablets - Hide Image at 768px and below */
@media (max-width: 768px) {
    .team-excellence-section {
        padding: 50px 0;
    }

    .excellence-content {
        grid-template-columns: 1fr;
        /* Single column layout */
        gap: 0;
        /* Remove gap since image is hidden */
    }

    /* HIDE IMAGE ON MOBILE */
    .excellence-image-content {
        display: none;
        /* Hide the entire image container */
    }

    .excellence-text-content {
        padding-left: 0;
        width: 100%;
        /* Take full width */
    }

    .container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Small Mobile - Image Remains Hidden */
@media (max-width: 480px) {
    .team-excellence-section {
        padding: 40px 0;
    }

    .excellence-content {
        gap: 0;
        /* No gap needed since image is hidden */
    }

    /* IMAGE STAYS HIDDEN */
    .excellence-image-content {
        display: none;
        /* Keep image hidden on small mobile */
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .content-description p {
        font-size: 0.95rem;
    }

    .feature-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .feature-item i {
        margin-top: 0;
    }

    .cta-buttons {
        margin-top: 30px;
    }
}




/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: #00B04F;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #00B04F;
}

.services-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Service Card */
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Service Content */
.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #00B04F;
}

.service-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Animation delays for staggered effect */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:nth-child(7) {
    animation-delay: 0.7s;
}

.service-card:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* Large Laptops & Desktops */
@media (max-width: 1400px) {
    .services-grid {
        gap: 25px;
    }

    .service-card {
        padding: 35px 25px;
    }
}

/* Standard Laptops */
@media (max-width: 1024px) {
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .services-header h2 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }

    .services-container {
        padding: 0 15px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-header p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .service-icon i {
        font-size: 1.6rem;
    }

    .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .service-content p {
        font-size: 0.9rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .service-card {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Small Mobile Phones */
@media (max-width: 360px) {
    .services-header h2 {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }
}



.faq-section {
    padding: 80px 20px;
    min-height: 100vh;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-full-content {
    width: 100%;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.faq-description {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.faq-list {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: #28a745;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #999;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
    color: #28a745;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 15px 0 25px 0;
    max-height: 300px;
    opacity: 1;
}

.faq-answer p {
    color: #393939;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }

    .faq-question,
    .faq-answer {
        padding: 15px 0;
    }

    .faq-item.active .faq-answer {
        padding: 10px 0 20px 0;
    }
}






/* Request Quote Section */
.request-quote-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

.request-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content Layout */
.quote-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Side - Quote Form */
.quote-form-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* Form Header */
.form-header {
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: #00B04F;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    color: #00B04F;
}

.form-header p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Quote Form */
.quote-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #1e293b;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00B04F;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder {
    color: #94a3b8;
}

/* Price Range Slider */
.price-range-container {
    margin-top: 10px;
}

.price-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 15px;
    cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.price-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Price slider track for Firefox */
.price-slider::-moz-range-track {
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    border: none;
}

/* Price Display */
.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00B04F;
}

.price-max {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Submit Button */
.form-submit {
    margin-top: 35px;
}

.quote-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00B04F, #00B04F);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.quote-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.quote-submit-btn:active {
    transform: translateY(-1px);
}

/* Right Side - Service Representative Image */
.quote-image-content {
    position: relative;
}

.representative-image {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.service-rep-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-rep-image:hover {
    transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: #fff;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.overlay-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-item i {
    width: 16px;
    color: #00B04F;
    flex-shrink: 0;
}

/* Loading state for image */
.service-rep-image[src=""] {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-rep-image[src=""]:before {
    content: '👤';
    font-size: 4rem;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .quote-content {
        grid-template-columns: 1.3fr 1fr;
        gap: 60px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .form-row:first-child {
        grid-template-columns: 1fr;
    }

    .representative-image {
        height: 500px;
    }
}

@media (max-width: 1024px) {
    .request-quote-section {
        padding: 60px 0;
    }

    .quote-content {
        gap: 50px;
    }

    .quote-form-content {
        padding: 35px;
    }

    .form-header h2 {
        font-size: 2.2rem;
    }

    .representative-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .request-quote-section {
        padding: 50px 0;
    }

    .quote-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .container {
        padding: 0 15px;
    }

    .quote-form-content {
        padding: 30px;
        border-radius: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .representative-image {
        height: 400px;
    }

    .image-overlay {
        padding: 30px 25px 25px;
    }
}

@media (max-width: 480px) {
    .quote-form-content {
        padding: 25px;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .quote-submit-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .representative-image {
        height: 350px;
        border-radius: 15px;
    }

    .overlay-content h3 {
        font-size: 1.3rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.success,
.form-group select.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Loading state for submit button */
.quote-submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.quote-submit-btn.loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}





/*Footer*/
.footer {
    background: linear-gradient(50deg, #00b9b3 0%, #00b9b3 100%);
    color: #ffffff;
    padding: 60px 0 40px 0;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.logo-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
}

.footer-contact-info {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-contact-item {
    max-width: 300px;
}

.footer-contact-details h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.footer-contact-details p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.4;
}

.footer-contact-details a {
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.footer-contact-details a:hover {
    color: #1a00b0;
}

/* Footer Content Sections */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-section p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1a00b0;
}


/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #ffffff;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #ffffff;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #00b04f;
}

/* Responsive Layouts */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .social-links {
        justify-content: flex-start;
    }
}