/* CSS Variables */
:root {
    --accent-color: #FF4500;
    --accent2-color: #32CD32;
    --accent3-color: #FFD700;
    --accent4-color: #1E90FF;
    --primary-color: #002D62;
    --white: #FFFFFF;
    --dark-text-color: #292A2B;
    --gray-text-color: #7A7A7A;
    --button-padding-x: 16px;
    --button-padding-y: 12px;
    --font-family-body: 'Nunito', sans-serif;
    --light-text-color: #F9F9F9;
    --dark-border-color: #001A40;
    --light-border-color: #DCE4EE;
    --font-family-heading: 'Montserrat', sans-serif;
    --button-rounded-radius: 8px;
    --dark-background-color: #1A1A1A;
    --light-background-color: #F2F8FD;
    --medium-background-color: #DCE4EE;
    --primary-button-text-color: #FFFFFF;
    --secondary-button-bg-color: #FFA500;
    --secondary-button-text-color: #002D62;
    --primary-button-hover-bg-color: #001A40;
    --primary-button-hover-text-color: #E6E6E6;
    --secondary-button-hover-bg-color: #FF8C00;
    --secondary-button-hover-text-color: #FFFFFF;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    color: var(--dark-text-color);
    background-color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

p {
    font-size: 0.9rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
#global-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    z-index: 1000;
    padding: 0.91rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 85px;
    width: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav a {
    color: var(--dark-text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s, border-bottom 0.3s ease;
    margin-left: 2rem;
    font-size: 0.95rem;
}

.desktop-nav a:hover {
    color: var(--secondary-button-bg-color);
}

.desktop-nav a.active {
    color: var(--secondary-button-bg-color);
    text-decoration: none;
    transition: border-bottom 0.3s ease;
}

.cta-button {
    background-color: var(--secondary-button-bg-color);
    color: var(--secondary-button-text-color);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: var(--secondary-button-hover-bg-color);
    color: var(--secondary-button-hover-text-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle {
    display: none;
}

.mobile-nav {
    display: none;
}

/* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
        }

        /* Carousel Styles */
        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
            z-index: 2;
        }

        .carousel-content {
            position: relative;
            z-index: 3;
            width: 100%;
            color: white;
            text-align: left;
        }

        .carousel-text {
            max-width: 650px;
            padding: 20px;
        }

        .carousel-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .carousel-text p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 90%;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .button-group {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background-color: var(--secondary-button-bg-color);
            color: var(--secondary-button-text-color);
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: 700;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            font-size: 0.95rem;
        }

        .btn-primary:hover {
            background-color: var(--secondary-button-hover-bg-color);
            color: var(--secondary-button-hover-text-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background-color: white;
            color: var(--primary-color);
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: 700;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border: 2px solid white;
            font-size: 0.95rem;
        }

        .btn-secondary:hover {
            background-color: var(--light-background-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
        }

        .carousel-text p:last-child {
            font-size: 1rem;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .carousel-text p:last-child i {
            color: #4CAF50;
        }

        /* Carousel Controls */
        .carousel-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 4;
        }

        .carousel-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .carousel-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        /* Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 4;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: white;
}

.waste-section {
    padding: 4rem 0;
    background-color: var(--light-background-color);
}

.about-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 20px;
    margin-bottom: 60px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	height: 400px;
}

.about-grid-num {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 60px;
    margin-bottom: 60px;
}

.floating-badge {
            position: absolute;
            bottom: -1rem;
            left: -1rem;
            background-color: var(--secondary-button-bg-color);
            color: var(--secondary-button-text-color);
            padding: 1rem 4rem;
            border-radius: 0.75rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .floating-badge p:first-child {
            font-size: 1.5rem;
            font-weight: 700;
        }

.section-badge {
    display: inline-block;
    background-color: var(--secondary-button-bg-color);
    color: var(--primary-button-text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.section-text {
    font-size: 1rem;
    color: var(--secondary-button-text-color);
    margin-bottom: 1.25rem;
	text-align: justify;
}

.subsection-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.subsection-num {
    font-size: 1.2rem;
    margin-top: 0.8rem;
    margin-bottom: 1.2rem;
}

.subsection-title-num {
    font-size: 1.9rem;
    margin-bottom: 2.5rem;
}

.features-list {
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.feature-icon {
    background-color: var(--accent2-color);
    color: white;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 0.8rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.feature-content p {
    color: var(--gray-text-color);
    font-size: 0.95rem;
}

.company-details {
    background-color: var(--light-background-color);
    padding: 0.6rem 1.9rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.company-details-white {
    background-color: var(--white);
}

.company-details p {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.company-details span {
    font-weight: 700;
    color: var(--dark-text-color);
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.75rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-color);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent4-color));
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--gray-text-color);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
	text-align: justify;
}

.service-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 0.75rem;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, var(--primary-color), var(--dark-background-color));
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-0.3rem);
}

.benefit-icon {
    background-color: var(--secondary-button-bg-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-button-bg-color);
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.stat-number-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-button-bg-color);
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1rem;
}

/* Sustainability Section */
.sustainability-section {
    padding: 4rem 0;
    background-color: white;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.sustainability-features {
    margin: 1.5rem 0;
}

.sustainability-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--white);
    padding: 0.45rem;
    border-radius: 0.6rem;
    margin-bottom: 0.8rem;
}

.sustainability-icon {
    background-color: var(--accent2-color);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.sustainability-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.sustainability-content p {
    color: var(--gray-text-color);
    font-size: 0.95rem;
}

.btn-green {
    background-color: var(--accent2-color);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

.btn-green:hover {
    background-color: #28B428;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.btn-outline-green {
    background-color: white;
    color: var(--accent2-color);
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border: 2px solid var(--accent2-color);
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-outline-green:hover {
    background-color: var(--accent2-color);
    color: white;
    transform: translateY(-2px);
}

/* Global Section */
.global-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-border-color), var(--primary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.global-stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s;
}

.global-stat-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-0.3rem);
}

.global-stat-icon {
    background-color: var(--secondary-button-bg-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.global-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-button-bg-color);
    margin-bottom: 0.4rem;
}

.global-stat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.global-stat-card p {
    font-size: 0.95rem;
}

.regions-container {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.75rem;
    margin-bottom: 2.5rem;
}

.regions-container h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.region-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 0.6rem;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.region-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.region-item i {
    color: var(--secondary-button-bg-color);
    font-size: 1rem;
}

.region-item span {
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-background-color), white);
}

.contact-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-image {
    height: auto;
    position: relative;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--primary-color), transparent);
    opacity: 0.6;
}

.contact-content {
    padding: 1.75rem;
}

.contact-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.contact-points {
    margin-bottom: 1.5rem;
}

.contact-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-icon {
    background-color: var(--primary-color);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-point h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-point p {
    color: var(--gray-text-color);
    font-size: 0.9rem;
}

.contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    margin-bottom: 1.25rem;
}

.trust-badge {
    padding-top: 1.25rem;
    border-top: 1px solid var(--light-border-color);
}

.trust-badge p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-text-color);
}

.trust-badge i {
    color: var(--accent2-color);
}

/* Footer */
#global-footer {
    background-color: var(--dark-background-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo img {
    height: 90px;
    margin-bottom: 0;
    filter: invert(1) brightness(200%) contrast(100%);
}

.footer-about p {
    color: #9CA3AF;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
	text-align: justify;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    background-color: rgba(255, 255, 255, 0.1);
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary-button-bg-color);
}

.footer-links i {
    font-size: 0.7rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #9CA3AF;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--secondary-button-bg-color);
    margin-top: 0.2rem;
}

.footer-divider {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.company-registration {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.6rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.company-registration h5 {
    font-size: 1rem;
    color: var(--secondary-button-bg-color);
    margin-bottom: 0.8rem;
}

.registration-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    font-size: 0.8rem;
}

.registration-details span {
    color: white;
    font-weight: 600;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.legal-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--secondary-button-bg-color);
}

.copyright {
    text-align: center;
    color: #9CA3AF;
    font-size: 0.8rem;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--secondary-button-bg-color);
    color: var(--secondary-button-text-color);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-button-hover-bg-color);
    color: var(--secondary-button-hover-text-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
    transform: translateY(0);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(to right, var(--primary-color), var(--accent2-color));
    padding: 1.5rem 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.breadcrumb-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-link:hover {
    color: var(--accent3-color);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: var(--accent3-color);
    font-weight: 600;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-family-heading);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #f1f5f9;
    margin-top: 1.5rem;
}

/* Content Section */
.content-section {
    background-color: white;
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Two-column responsive layout */
.two-col-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    clear: both;
    margin-bottom: 20px;
}

.two-col-item {
    flex: 1 1 48%;
}

.service-highlight-box {
    background: linear-gradient(to right, var(--primary-color), var(--accent2-color));
    color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

.service-highlight-content {
    display: flex;
    align-items: flex-start;
}

.service-highlight-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--accent3-color);
}

.service-highlight-text h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.service-highlight-text p {
    font-size: 0.875rem;
    color: #f1f5f9;
}

/* Fuel Features Grid */
.fuel-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fuel-feature-card {
    background-color: var(--light-background-color);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.fuel-feature-card.accent-border {
    border-left-color: var(--accent-color);
}

.fuel-feature-card.accent4-border {
    border-left-color: var(--accent4-color);
}

.fuel-feature-card h4 {
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.fuel-feature-card p {
    font-size: 0.875rem;
    color: var(--gray-text-color);
}

/* Storage Section Styles */
.storage-section {
    background-color: var(--light-background-color);
    padding: 4rem 0;
}

.storage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.storage-content {
    order: 1;
}

.storage-image-col {
    order: 2;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.service-badge i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.service-badge span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.storage-title {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.3;
}

.storage-description {
    font-size: 1.1rem;
    color: var(--gray-text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
	text-align: justify;
}

.storage-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.storage-space {
    margin-top: 3rem;
}

.storage-text {
    font-size: 1rem;
    color: var(--gray-text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
	text-align: justify;
}

.features-container {
    margin: 1.5rem 0;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    gap: 10px;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.9rem;
    color: var(--gray-text-color);
    line-height: 1.5;
}

.feature-description-2 {
    background-color: var(--medium-background-color);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 3px 6px rgb(0 0 0 / 8%);
    border-left: 4px solid var(--primary-color);
}

.safety-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent4-color);
}

.safety-list {
    list-style: none;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.safety-item:last-child {
    margin-bottom: 0;
}

.safety-item i {
    color: var(--accent4-color);
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.safety-item span {
    color: var(--gray-text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.safety-item strong {
    color: var(--dark-text-color);
}

.image-container-safety {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}

.storage-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.safety-highlight {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.safety-highlight-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-family: var(--font-family-heading);
}

.safety-highlight-title i {
    color: var(--accent3-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.safety-highlight-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Blending Section Specific Styles */
.blending-highlight {
    background: linear-gradient(to right, var(--primary-color), var(--accent2-color)) !important;
    color: white;
    border-left: 4px solid var(--accent3-color) !important;
}

.blending-highlight .feature-title,
.blending-highlight .feature-description {
    color: white !important;
}

.blending-highlight .feature-icon {
    background-color: var(--accent3-color) !important;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.capabilities-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.capabilities-list .feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0;
}

/* Waste Section Specific Styles */
.waste-feature {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color);
}

.environmental-commitment {
    background: linear-gradient(135deg, var(--accent4-color), var(--accent2-color)) !important;
    color: white;
    text-align: left;
    padding: 2rem !important;
}

.environmental-commitment .benefit-icon {
    background-color: var(--accent3-color) !important;
    margin: 0 auto 1.5rem !important;
}

.environmental-commitment .feature-title {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.environmental-commitment .sustainability-feature i {
    color: var(--accent3-color);
}

.environmental-commitment .sustainability-content p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.documentation-note {
    border-left: 4px solid var(--primary-color) !important;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.certifications-grid .stat-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 4px solid var(--accent4-color);
}

.certifications-grid .stat-number {
    font-size: 2rem !important;
    color: var(--accent4-color) !important;
    margin-bottom: 0.5rem;
}

.certifications-grid .stat-label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Energy Logistics Section Styles */
.image-container {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.image-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: rgba(0, 45, 98, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.overlay-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.overlay-title {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-family-heading);
}

.image-overlay i {
    font-size: 1.75rem;
    color: var(--accent3-color);
}

.logistics-center {
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color)) !important;
    color: white;
    text-align: left;
}

.logistics-center .benefit-icon {
    background-color: var(--accent3-color) !important;
    margin: 0 auto 1rem !important;
}

.logistics-center .benefit-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.logistics-center .benefit-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 1.5rem;
}

.logistics-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.logistics-feature {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    gap: 0.5rem;
}

.logistics-feature i {
    color: var(--accent3-color);
    font-size: 0.8rem;
}

.transport-feature {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.transport-feature.alternative {
    border-left-color: var(--accent4-color);
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.transport-card {
    background-color: white;
    border: 2px solid var(--light-border-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.transport-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.transport-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.transport-icon i {
    color: white;
    font-size: 1.2rem;
}

.transport-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.transport-list {
    list-style: none;
    text-align: left;
}

.transport-list li {
    font-size: 0.8rem;
    color: var(--gray-text-color);
    margin-bottom: 0.4rem;
    padding-left: 0;
}

.transport-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.safety-note {
    border-left: 4px solid var(--accent-color) !important;
    margin-top: 40px !important;
}

.safety-note i {
    color: var(--accent-color) !important;
}

/* Fleet Section Styles */
.fleet-section::before {
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}

.fleet-stat {
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0.75rem;
    padding: 2rem 1rem !important;
    text-align: center;
    transition: all 0.3s ease;
}

.fleet-stat:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px);
}

.fleet-stat .stat-number {
    font-size: 2.5rem !important;
    color: var(--accent3-color) !important;
    margin-bottom: 0.5rem;
    font-family: var(--font-family-heading);
    transition: all 0.3s ease;
}

.fleet-stat .stat-label {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fleet-features {
    margin: 1.5rem 0;
}

.fleet-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    color: white;
}

.fleet-feature:last-child {
    margin-bottom: 0;
}

.fleet-feature i {
    color: var(--accent3-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.fleet-feature .feature-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.fleet-feature .feature-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Environmental Commitment Section */
.sustainability-section {
    background-color: white;
    padding: 4rem 0;
}

.accent-badge {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: inline-block;
}

.features-grid.sustainability-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-card.sustainability-card {
    background-color: var(--light-background-color);
    padding: 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid var(--light-border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.feature-card.sustainability-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card.sustainability-card .feature-icon {
    background-color: var(--accent4-color);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    margin: 0;
}

.feature-card.sustainability-card .feature-content {
    flex: 1;
}

.feature-card.sustainability-card .feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 0.25rem;
}

.feature-card.sustainability-card .feature-description {
    font-size: 0.85rem;
    color: var(--gray-text-color);
    line-height: 1.4;
    margin: 0;
}

.sustainability-floating-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: var(--accent4-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 40%;
}

.sustainability-floating-badge i {
    font-size: 1.5rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.9;
    line-height: 1.2;
}

.badge-title {
    font-size: 1.1rem;
    font-family: var(--font-family-heading);
    line-height: 1.2;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color), var(--accent-color));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background-color: white;
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: white;
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(50%, 50%);
}

.cta-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content .section-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.cta-content .section-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.cta-main-btn {
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
}

.cta-main-btn:hover {
    background-color: var(--light-background-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta-secondary-btn {
    background-color: transparent;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
}

.cta-secondary-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 36rem;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    color: white;
}

.trust-item i {
    font-size: 2rem;
    color: var(--accent3-color);
    margin-bottom: 0.75rem;
}

.trust-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.trust-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item i {
    color: var(--accent3-color);
    font-size: 1.1rem;
}

.contact-separator {
    width: 1px;
    height: 1.5rem;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Heritage Section Specific Styles */
.heritage-section {
    background-color: white;
    padding: 4rem 0;
}

.heritage-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--secondary-button-bg-color);
            color: var(--secondary-button-text-color);
            padding: 1rem 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .heritage-badge p:first-child {
            font-size: 1.5rem;
            font-weight: 700;
        }

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: var(--font-family-heading);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-content {
    margin-bottom: 2rem;
}

.details-grid {
    display: grid;
    gap: 0.2rem !important;
}

.detail-label {
    font-weight: 700;
    color: var(--dark-text-color);
    margin-right: 0.5rem;
}

.sm-col-span-2 {
    grid-column: span 2;
}

/* Values Section Styles */
.values-section {
    background-color: var(--light-background-color);
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 50px;
}

.value-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    border-top: 4px solid var(--primary-color);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Value Icon Colors */
.value-icon.safety {
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
    color: white;
}

.value-icon.reliability {
    background: linear-gradient(135deg, var(--primary-color), var(--accent4-color));
    color: white;
}

.value-icon.environment {
    background: linear-gradient(135deg, var(--accent2-color), #28a745);
    color: white;
}

.value-icon.technical {
    background: linear-gradient(135deg, var(--accent3-color), #ffa500);
    color: var(--dark-text-color);
}

.value-icon.customer {
    background: linear-gradient(135deg, #8A2BE2, #9370DB);
    color: white;
}

.value-icon.compliance {
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    color: white;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
    line-height: 1.3;
}

.value-description {
    color: var(--gray-text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
	text-align: justify;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.service-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-weight: 600;
    color: var(--dark-text-color);
    margin-bottom: 4px;
}

.service-description {
    color: var(--gray-text-color);
}

/* Section Header Enhancement */
.section-header .section-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-header .section-text {
    max-width: 600px;
    margin: 0 auto;
	text-align: center;
}

/* Facilities Section Styles */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.facility-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.facility-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.facility-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-img {
    transform: scale(1.05);
}

.facility-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 45, 98, 0.8) 100%);
}

.facility-title-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.facility-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-family-heading);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.facility-content {
    padding: 3rem;
}

.facility-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.facility-features {
    margin-bottom: 2rem;
}

.facility-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.facility-feature:last-child {
    margin-bottom: 0;
}

.facility-feature i {
    color: var(--accent3-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.facility-feature span {
    font-size: 0.95rem;
    line-height: 1.4;
}

.facility-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent3-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.facility-link:hover {
    color: white;
    transform: translateX(5px);
}

.facility-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.facility-link:hover i {
    transform: translateX(3px);
}

/* Section Header Adjustments for Dark Background */
.benefits-section .section-header .section-badge {
    background-color: var(--secondary-button-bg-color);
    color: white;
    display: inline-block;
    margin: 0 auto 1rem;
}

.benefits-section .section-header .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.benefits-section .section-header .section-text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Section Styles */
.cta-decorative-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(20px);
}

.cta-decorative-2 {
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 6rem;
    height: 6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(15px);
}

/* Custom Section Styles */
.custom-depot-overview {
    background-color: white;
    padding: 6rem 0;
}

.custom-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.custom-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.custom-section-subtitle {
    font-size: 1rem;
    color: var(--gray-text-color);
    max-width: 800px;
    margin: 0 auto;
}

.custom-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.custom-image-container {
    position: relative;
}

.custom-main-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.custom-floating-badge {
    position: absolute;
	bottom: -1rem;
	right: -1rem;
	background-color: var(--secondary-button-bg-color);
	color: var(--secondary-button-text-color);
	padding: 1rem 4rem;
	border-radius: 0.75rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.custom-badge-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.custom-badge-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.custom-content-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.custom-content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text-color);
    font-family: var(--font-family-heading);
	margin-bottom: 0;
}

.custom-content-text {
    font-size: 1rem;
    color: var(--gray-text-color);
    line-height: 1.6;
	text-align: justify;
}

.custom-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
	margin-top: 20px;
}

.custom-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.custom-feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--light-background-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-feature-icon i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.custom-feature-content h4 {
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 0.5rem;
}

.custom-feature-content p {
    color: var(--gray-text-color);
    font-size: 0.95rem;
}

.custom-certification-section {
    background: linear-gradient(to bottom right, var(--light-background-color), var(--medium-background-color));
    border-radius: 1rem;
    padding: 3rem 2rem;
}

.custom-certification-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text-color);
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-family-heading);
}

.custom-certification-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.custom-certification-grid-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.custom-certification-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.custom-certification-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.custom-cert-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.custom-cert-icon.imo {
    background-color: var(--accent-color);
}

.custom-cert-icon.safety {
    background-color: var(--accent3-color);
}

.custom-cert-icon.eu {
    background-color: var(--accent2-color);
}

.custom-cert-icon.quality {
    background-color: var(--accent4-color);
}

.custom-cert-icon i {
    color: white;
    font-size: 1.5rem;
}

.custom-cert-card h4 {
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 0.5rem;
}

.custom-cert-card p {
    color: var(--gray-text-color);
    font-size: 0.875rem;
}

/* Safety & Monitoring Section */
.custom-safety-section {
    background-color: var(--light-border-color);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.custom-safety-section-num {
    background-color: var(--white);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.custom-safety-header {
    text-align: center;
    margin-bottom: 4rem;
}

.custom-safety-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.7rem;
    font-family: var(--primary-color);
}

.custom-safety-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.custom-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.custom-tech-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.custom-tech-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.custom-tech-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.custom-tech-icon.surveillance {
    background: linear-gradient(135deg, var(--accent-color), #E87C3C);
}

.custom-tech-icon.fire {
    background: linear-gradient(135deg, var(--accent3-color), #1A7AA5);
}

.custom-tech-icon.temperature {
    background: linear-gradient(135deg, var(--accent2-color), #FDC94F);
}

.custom-tech-icon.leak {
    background: linear-gradient(135deg, var(--accent4-color), #7DC4D1);
}

.custom-tech-icon.inventory {
    background: linear-gradient(135deg, var(--primary-color), #2A4BC0);
}

.custom-tech-icon.waste {
    background: linear-gradient(135deg, #105F89, #1A7AA5);
}

.custom-tech-icon i {
    color: white;
    font-size: 1.5rem;
}

.custom-tech-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.custom-tech-description {
    color: var(--gray-text-color);
    line-height: 1.6;
	text-align: justify;
}

.custom-cta-banner {
    background: var(--secondary-button-text-color);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
}

.custom-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.custom-cta-text {
    font-size: 1.125rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-cta-button:hover {
    background-color: var(--light-background-color);
    transform: translateY(-0.25rem);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Fleet Section */
.custom-fleet-section {
    background-color: white;
    padding: 6rem 0;
}

.custom-fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.custom-fleet-content {
    order: 1;
}

.custom-fleet-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-family-heading);
}

.custom-fleet-text {
    font-size: 1rem;
    color: var(--gray-text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
	text-align: justify;
}

.custom-fleet-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.custom-fleet-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--light-background-color);
    padding: 1.25rem;
    border-radius: 0.5rem;
}

.custom-fleet-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-fleet-feature-icon.capacity {
    background-color: var(--primary-color);
}

.custom-fleet-feature-icon.pumping {
    background-color: var(--accent3-color);
}

.custom-fleet-feature-icon.compliance {
    background-color: var(--accent-color);
}

.custom-fleet-feature-icon.availability {
    background-color: var(--accent2-color);
}

.custom-fleet-feature-icon i {
    color: white;
    font-size: 1rem;
}

.custom-fleet-feature-content h4 {
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 0.5rem;
}

.custom-fleet-feature-content p {
    color: var(--gray-text-color);
    font-size: 0.9rem;
}

.custom-fleet-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-fleet-button:hover {
    background-color: var(--primary-button-hover-bg-color);
    transform: translateY(-0.125rem);
}

.custom-fleet-image {
    order: 2;
    position: relative;
}

.custom-fleet-main-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.custom-fleet-badge {
    position: absolute;
	bottom: -1rem;
	left: -1rem;
	background-color: var(--secondary-button-bg-color);
	color: var(--secondary-button-text-color);
	padding: 1rem 4rem;
	border-radius: 0.75rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.custom-fleet-badge i {
    font-size: 1.5rem;
}

.custom-fleet-badge-text p:first-child {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.custom-fleet-badge-text p:last-child {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Sustainability Section */
.custom-sustainability-section {
    background: linear-gradient(to bottom right, var(--light-background-color), white);
    padding: 6rem 0;
}

.custom-sustainability-header {
    text-align: center;
    margin-bottom: 4rem;
}

.custom-sustainability-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.custom-sustainability-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}

.custom-sustainability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.custom-sustainability-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.custom-sustainability-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.custom-sustainability-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.custom-sustainability-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-sustainability-icon.biofuels {
    background: linear-gradient(135deg, #10B981, #059669);
}

.custom-sustainability-icon.compliance {
    background: linear-gradient(135deg, var(--accent3-color), #1A7AA5);
}

.custom-sustainability-icon.emissions {
    background: linear-gradient(135deg, var(--accent-color), #E87C3C);
}

.custom-sustainability-icon.safety {
    background: linear-gradient(135deg, var(--accent2-color), #FDC94F);
}

.custom-sustainability-icon i {
    color: white;
    font-size: 1.5rem;
}

.custom-sustainability-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.custom-sustainability-text p {
    color: var(--gray-text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
	text-align: justify;
}

.custom-tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.custom-tag {
    background-color: #DCFCE7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.custom-tag.blue {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.custom-sustainability-banner {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.custom-sustainability-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

.custom-sustainability-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-background-color), transparent);
}

.custom-sustainability-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    max-width: 800px;
}

.custom-sustainability-banner-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.custom-sustainability-banner-text {
    font-size: 1.125rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.custom-sustainability-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-sustainability-banner-button:hover {
    background-color: var(--light-background-color);
}

/* Vessel Specifications Section Styles */
.custom-vessel-specs {
    background-color: var(--light-background-color);
    padding: 6rem 0;
}

.custom-vessel-header {
    text-align: center;
    margin-bottom: 4rem;
}

.custom-vessel-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.custom-vessel-subtitle {
    font-size: 1.125rem;
    color: var(--gray-text-color);
    max-width: 800px;
    margin: 0 auto;
}

.custom-vessel-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.custom-vessel-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.custom-vessel-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
}

.custom-vessel-image-col {
    position: relative;
    height: auto;
    overflow: hidden;
}

.custom-vessel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-vessel-status {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--secondary-button-bg-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: var(--font-family-body);
}

.custom-vessel-status i {
    color: #10B981;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.custom-vessel-content-col {
    padding: 2.5rem;
}

.custom-vessel-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.custom-vessel-name {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-family-heading);
}

.custom-vessel-type {
    color: var(--secondary-button-bg-color);
    font-weight: 600;
    font-family: var(--font-family-body);
}

.custom-vessel-description {
    color: var(--gray-text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.custom-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.custom-spec-card {
    background-color: var(--light-background-color);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.custom-spec-header {
    display: flex;
    alignItems: center;
    margin-bottom: 0.75rem;
}

.custom-spec-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--secondary-button-bg-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.custom-spec-icon i {
    color: white;
    font-size: 1rem;
}

.custom-spec-title {
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-family-heading);
}

.custom-spec-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.custom-spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-text-color);
}

.custom-spec-value {
    font-weight: 600;
    color: var(--dark-text-color);
}

.custom-safety-section {
    border-top: 1px solid var(--white);
    padding-top: 1.5rem;
}

.custom-safety {
    color: var(--primary-color);
	align-items: center;
	font-size: 2rem;
    font-weight: 700;
    margin-top: 2rem;
	margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.custom-safety-sub-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
	color: var(--primary-color);
}

.custom-safety-title i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.custom-safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.custom-safety-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.custom-safety-item i {
    color: var(--accent-color);
    margin-top: 0.125rem;
    font-size: 0.875rem;
}

.custom-safety-text {
    font-size: 0.875rem;
    color: var(--gray-text-color);
}

/* Fleet Capabilities Section */
.custom-fleet-capabilities {
    background-color: var(--primary-color);
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: white;
    margin-top: 4rem;
}

.custom-capabilities-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.custom-capabilities-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}



.custom-capabilities-subtitle {
    color: var(--light-background-color);
    max-width: 800px;
    margin: 0 auto;
}

.custom-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.custom-capability-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-capability-card:hover {
    transform: scale(1.05);
}

.custom-capability-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.custom-capability-icon i {
    color: white;
    font-size: 1.5rem;
}

.custom-capability-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-family-heading);
}

.custom-capability-desc {
    font-size: 0.875rem;
    color: var(--white);
}

.custom-vessel-cta {
    text-align: center;
    margin-top: 3rem;
}

.custom-vessel-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-button-bg-color);
    color: var(--secondary-button-text-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: var(--font-family-body);
}

.custom-vessel-cta-button:hover {
    background-color: var(--secondary-button-hover-bg-color);
    color: var(--secondary-button-hover-text-color);
    transform: translateY(-0.25rem);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Why Choose Section */
.custom-why-choose {
    background-color: white;
    padding: 6rem 0;
}

.custom-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.custom-why-image-col {
    position: relative;
}

.custom-why-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.custom-why-stats {
    position: absolute;
            bottom: -1rem;
            right: -1rem;
            background-color: var(--secondary-button-bg-color);
            color: var(--secondary-button-text-color);
            padding: 1rem 1rem;
            border-radius: 0.75rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
}

.custom-why-stats-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-family-heading);
}

.custom-why-stats-text {
    font-size: 1rem;
    font-family: var(--font-family-body);
}

.custom-why-content-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-why-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-family-heading);
	margin-bottom: 10px;
}

.custom-why-description {
    font-size: 1rem;
    color: var(--gray-text-color);
	text-align: justify;
	margin-bottom: 20px;
}

.custom-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.custom-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.custom-benefit-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(221, 107, 32, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-benefit-icon i {
    color: var(--accent3-color);
    font-size: 1.25rem;
}

.custom-benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-family-heading);
}

.custom-benefit-content p {
    color: var(--gray-text-color);
}

.custom-why-cta {
    margin-top: 1rem;
}

.custom-why-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--primary-button-text-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-why-cta-button:hover {
    background-color: var(--primary-button-hover-bg-color);
    transform: translateY(-0.25rem);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Capabilities Overview Section */
.custom-capabilities-overview {
    background: linear-gradient(to bottom right, var(--primary-color), var(--accent3-color));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.custom-capabilities-decorative-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(3rem);
}

.custom-capabilities-decorative-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background-color: var(--accent4-color);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(3rem);
}

.custom-capabilities-header-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.custom-capabilities-title-overview {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.custom-capabilities-subtitle-overview {
    font-size: 1.125rem;
    color: var(--light-background-color);
    max-width: 800px;
    margin: 0 auto;
}

.custom-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.custom-stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1rem);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.custom-stat-card:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
}

.custom-stat-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.custom-stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.custom-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-family-heading);
}

.custom-stat-label {
    font-size: 1.125rem;
    color: var(--light-background-color);
    font-family: var(--font-family-body);
    margin-bottom: 0.75rem;
}

.custom-stat-desc {
    font-size: 0.875rem;
    color: var(--white);
}

.custom-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.custom-feature-item-overview {
    text-align: center;
}

.custom-feature-icon-overview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(221, 107, 32, 0.2);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.custom-feature-icon-overview i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.custom-feature-title-overview {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-family-heading);
}

.custom-feature-desc-overview {
    color: var(--light-background-color);
}

.custom-capabilities-cta {
    text-align: center;
}

.custom-capabilities-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-button-bg-color);
    color: var(--secondary-button-text-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.custom-capabilities-cta-button:hover {
    background-color: var(--secondary-button-hover-bg-color);
    color: var(--secondary-button-hover-text-color);
    transform: translateY(-0.25rem);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Contact CTA Section */
.custom-contact-cta {
    background-color: var(--light-background-color);
    padding: 6rem 0;
}

.custom-contact-container {
    max-width: 80rem;
    margin: 0 auto;
}

.custom-contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.custom-contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.custom-contact-subtitle {
    font-size: 1rem;
    color: var(--gray-text-color);
    max-width: 800px;
    margin: 0 auto;
}

.custom-contact-box {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.custom-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.custom-contact-info {
    background: linear-gradient(to bottom right, var(--primary-color), var(--accent3-color));
    padding: 2rem;
    color: white;
}

.custom-contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-heading);
}

.custom-contact-info-desc {
    color: var(--light-background-color);
    margin-bottom: 2rem;
}

.custom-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.custom-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.custom-contact-detail-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-contact-detail-icon i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.custom-contact-detail-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: var(--font-family-heading);
}

.custom-contact-detail-content p {
    font-size: 0.875rem;
    color: var(--light-background-color);
}

.custom-contact-actions {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-contact-actions-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.custom-contact-actions-desc {
    color: var(--gray-text-color);
    margin-bottom: 2rem;
}

.custom-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-contact-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--secondary-button-bg-color);
    color: var(--secondary-button-text-color);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-contact-button:hover {
    background-color: var(--secondary-button-hover-bg-color);
    color: var(--secondary-button-hover-text-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-contact-button.primary {
    background-color: var(--primary-color);
    color: var(--primary-button-text-color);
}

.custom-contact-button.primary:hover {
    background-color: var(--primary-button-hover-bg-color);
}

.custom-contact-button.outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.custom-contact-button.outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.custom-contact-button-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.custom-contact-button-icon {
    font-size: 1.5rem;
}

.custom-contact-button-text {
    text-align: left;
}

.custom-contact-button-main {
    font-weight: 700;
}

.custom-contact-button-sub {
    font-size: 0.875rem;
    opacity: 0.9;
}

.custom-contact-button-arrow {
    transition: transform 0.3s ease;
}

.custom-contact-button:hover .custom-contact-button-arrow {
    transform: translateX(0.5rem);
}

.custom-contact-trust {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-border-color);
}

.custom-contact-trust-text {
    font-size: 0.875rem;
    color: var(--gray-text-color);
    text-align: center;
}

.custom-contact-trust-text i {
    color: var(--accent3-color);
    margin-right: 0.5rem;
}

/* Legal Page Styles */
.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.legal-page-header {
    background: linear-gradient(to right, var(--primary-color), var(--accent2-color));
    padding: 3rem 0 2rem;
    margin-bottom: 3rem;
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: white;
    margin-bottom: 1.5rem;
}

.legal-breadcrumb-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-breadcrumb-link:hover {
    color: var(--accent3-color);
}

.legal-breadcrumb-separator {
    margin: 0 0.5rem;
    font-size: 0.75rem;
}

.legal-breadcrumb-current {
    color: var(--accent3-color);
    font-weight: 600;
}

.legal-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-family-heading);
    margin-bottom: 0.5rem;
}

.legal-page-subtitle {
    font-size: 1.125rem;
    color: #f1f5f9;
    margin-top: 1rem;
}

.legal-section {
	margin-top: 6rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--light-border-color);
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.legal-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: var(--font-family-heading);
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--secondary-button-bg-color);
}

.legal-subsection {
    margin-top: 4rem;
	margin-bottom: 2rem;
}

.legal-subsection-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 1.25rem;
    font-family: var(--font-family-heading);
}

.legal-content {
    color: var(--gray-text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-content p {
    margin-bottom: 1.25rem;
}

.legal-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-list li {
    margin-bottom: 0.75rem;
    color: var(--gray-text-color);
    line-height: 1.6;
}

.legal-highlight-box {
    background-color: var(--light-background-color);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin: 1.5rem 0;
}

.legal-highlight-box p {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text-color);
}

.legal-highlight-box p:last-child {
    margin-bottom: 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.legal-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    padding: 1rem;
    text-align: left;
    font-family: var(--font-family-heading);
}

.legal-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-border-color);
    color: var(--gray-text-color);
}

.legal-table tr:nth-child(even) {
    background-color: var(--light-background-color);
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.legal-contact-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.75rem;
    box-shadow: 0 3px 6px rgba(60, 10, 10, 0.3);
    border-top: 4px solid var(--primary-color);
}

.legal-contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: var(--font-family-heading);
}

.legal-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.legal-contact-icon {
    background-color: var(--primary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.legal-contact-text {
    flex: 1;
}

.legal-contact-text strong {
    color: var(--dark-text-color);
    font-weight: 600;
}

.legal-contact-text p {
    color: var(--gray-text-color);
    margin: 0;
    font-size: 0.95rem;
}

.legal-update-date {
    background-color: var(--light-background-color);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-text-color);
}

.legal-update-date strong {
    color: var(--dark-text-color);
}

/* ===== CUSTOM SECTIONS CSS ===== */
/* Section 1: Sustainability & Compliance Solutions */
.cs-sustainability-section {
    background-color: white;
    padding: 5rem 0;
}

.cs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cs-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-button-bg-color);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    margin-bottom: 0.75rem;
}

.cs-badge-icon {
    color: var(--white);
    margin-right: 0.5rem;
}

.cs-badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.cs-title {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-top: 1rem;
	margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cs-description {
    font-size: 1rem;
    color: var(--gray-text-color);
    line-height: 1.6;
	text-align: justify;
	margin-bottom: 1.5rem;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.cs-card {
    background: linear-gradient(to bottom right, var(--light-background-color), white);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--light-border-color);
    transition: all 0.3s ease;
}

.cs-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.cs-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.cs-card:hover .cs-card-icon {
    transform: scale(1.1);
}

.cs-card-icon-orange {
    background: linear-gradient(135deg, var(--accent-color), var(--accent3-color));
}

.cs-card-icon-blue {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-button-hover-bg-color));
}

.cs-card-icon-green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.cs-card-icon-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.cs-card-icon-lightblue {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.cs-card-icon-teal {
    background: linear-gradient(135deg, #14B8A6, #0D9488);
}

.cs-card-icon-inner {
    color: white;
    font-size: 1.5rem;
}

.cs-card-title {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 0.75rem;
}

.cs-card-text {
    color: var(--gray-text-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.cs-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cs-list-item {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--gray-text-color);
}

.cs-list-icon {
    color: var(--accent-color);
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.cs-cta-banner {
    background: linear-gradient(to right, var(--primary-color), var(--primary-button-hover-bg-color));
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cs-cta-title {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cs-cta-text {
    font-size: 1.125rem;
    color: #F3F4F6;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cs-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cs-cta-button:hover {
    background-color: var(--accent3-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
}

.cs-cta-button-icon {
    margin-left: 0.75rem;
}

/* Section 2: Depot & Bunker Fleet */
.cs-depot-section {
    background-color: var(--light-background-color);
    padding: 5rem 0;
}

.cs-depot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cs-image-container {
    position: relative;
}

.cs-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cs-floating-stats {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 16rem;
    display: block;
}

.cs-stats-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cs-stats-icon {
    background-color: var(--accent-color);
    border-radius: 0.5rem;
    padding: 1rem;
}

.cs-stats-icon-inner {
    color: white;
    font-size: 1.5rem;
}

.cs-stats-content {
    display: flex;
    flex-direction: column;
}

.cs-stats-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dark-text-color);
}

.cs-stats-label {
    font-size: 0.875rem;
    color: var(--gray-text-color);
}

.cs-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cs-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.cs-feature-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cs-feature-icon {
    border-radius: 0.5rem;
    padding: 0.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-feature-icon-blue {
    background-color: var(--primary-color);
}

.cs-feature-icon-orange {
    background-color: var(--accent-color);
}

.cs-feature-icon-green {
    background-color: #10B981;
}

.cs-feature-icon-red {
    background-color: #EF4444;
}

.cs-feature-icon-inner {
    color: white;
    font-size: 1.25rem;
}

.cs-feature-content {
    flex: 1;
}

.cs-feature-title {
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 0.25rem;
}

.cs-feature-text {
    font-size: 0.875rem;
    color: var(--gray-text-color);
}

.cs-button-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.cs-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cs-button-primary:hover {
    background-color: var(--primary-button-hover-bg-color);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cs-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cs-button-secondary:hover {
    background-color: var(--light-background-color);
}

.cs-button-icon {
    margin-left: 0.5rem;
}

/* Section 3: Certifications & Standards */
.cs-certifications-section {
    background-color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}



.cs-certifications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.cs-cert-item {
    background-color: var(--light-background-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cs-cert-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.cs-cert-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.cs-cert-icon-blue {
    color: var(--primary-color);
}

.cs-cert-icon-green {
    color: #10B981;
}

.cs-cert-icon-red {
    color: #EF4444;
}

.cs-cert-icon-lightblue {
    color: #3B82F6;
}

.cs-cert-icon-orange {
    color: var(--accent-color);
}

.cs-cert-name {
    font-weight: 700;
    color: var(--dark-text-color);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.cs-cert-desc {
    font-size: 0.75rem;
    color: var(--gray-text-color);
}

.cs-compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.cs-compliance-item {
    text-align: center;
}

.cs-compliance-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cs-compliance-icon-blue {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-button-hover-bg-color));
}

.cs-compliance-icon-green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.cs-compliance-icon-orange {
    background: linear-gradient(135deg, var(--accent-color), var(--accent3-color));
}

.cs-compliance-icon-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.cs-compliance-icon-inner {
    color: white;
    font-size: 1.875rem;
}

.cs-compliance-title {
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 0.5rem;
	font-size: 1rem;
}

.cs-compliance-text {
    font-size: 0.75rem;
    color: var(--gray-text-color);
}

.cs-stats-bar {
    background: linear-gradient(to right, var(--primary-color), var(--primary-button-hover-bg-color), var(--primary-color));
    border-radius: 1rem;
    padding: 3rem;
}

.cs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    color: white;
}

.cs-stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cs-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Section 4: Partner CTA */
.cs-partner-section {
    background-color: var(--secondary-button-bg-color);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cs-partner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cs-partner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.cs-partner-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-background-color), transparent);
    opacity: 0.9;
}

.cs-partner-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cs-partner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-button-hover-bg-color);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
}

.cs-partner-icon-inner {
    color: var(--accent2-color);
    font-size: 1.875rem;
}

.cs-partner-title {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cs-partner-text {
    font-size: 1rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cs-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cs-benefit-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cs-benefit-icon {
    color: var(--accent2-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.cs-benefit-title {
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.cs-benefit-text {
    font-size: 0.875rem;
    color: #D1D5DB;
}

.cs-partner-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.cs-partner-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cs-partner-button-primary:hover {
    background-color: var(--accent3-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.cs-partner-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cs-partner-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.cs-contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cs-contact-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    color: #D1D5DB;
}

.cs-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cs-contact-icon {
    color: var(--accent-color);
}

.cs-contact-text {
    font-size: 0.875rem;
}

.cs-contact-link {
    color: #D1D5DB;
    text-decoration: none;
}

.cs-contact-link:hover {
    color: var(--accent2-color);
}

.cs-contact-divider {
    color: #6B7280;
}

/* ===== CONTACT FORM & LOCATION SECTIONS ===== */
/* Contact Form Section */
.cs-contact-section {
    background-color: white;
    padding: 5rem 0;
}

.cs-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cs-contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.cs-contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cs-contact-title {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cs-contact-subtitle {
    font-size: 1rem;
    color: var(--gray-text-color);
    max-width: 700px;
    margin: 0 auto;
}

.cs-form-container {
    background: linear-gradient(to bottom right, var(--light-background-color), white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-border-color);
}

.cs-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cs-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cs-form-group {
    display: flex;
    flex-direction: column;
}

.cs-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-text-color);
    margin-bottom: 0.5rem;
}

.cs-form-required {
    color: var(--accent4-color);
}

.cs-input-wrapper {
    position: relative;
}

.cs-input-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--gray-text-color);
    pointer-events: none;
}

.cs-text-input,
.cs-select-input,
.cs-textarea-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--light-border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.cs-text-input:focus,
.cs-select-input:focus,
.cs-textarea-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.cs-select-input {
    appearance: none;
    background-color: white;
}

.cs-select-arrow {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: var(--gray-text-color);
    pointer-events: none;
}

.cs-textarea-input {
    resize: none;
    min-height: 120px;
}

.cs-textarea-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    transform: none;
}

.cs-form-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding-top: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cs-form-security {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-text-color);
}

.cs-security-icon {
    color: var(--accent2-color);
    margin-right: 0.5rem;
}

.cs-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-button-bg-color);
    color: var(--secondary-button-text-color);
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-family: inherit;
}

.cs-submit-button:hover {
    background-color: var(--secondary-button-hover-bg-color);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cs-button-icon {
    margin-right: 0.5rem;
}

.cs-form-info {
    background-color: rgba(50, 205, 50, 0.1);
    border-left: 4px solid var(--accent2-color);
    padding: 1rem;
    border-radius: 0.25rem;
    margin-top: 1.5rem;
}

.cs-info-text {
    font-size: 0.875rem;
    color: var(--dark-text-color);
    margin: 0;
}

.cs-info-icon {
    color: var(--accent2-color);
    margin-right: 0.5rem;
}

/* Location Section */
.cs-location-section {
    background-color: var(--light-background-color);
    padding: 5rem 0;
}

.cs-location-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cs-location-title {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cs-location-subtitle {
    font-size: 1rem;
    color: var(--gray-text-color);
    max-width: 700px;
    margin: 0 auto;
}

.cs-location-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cs-map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
}

.cs-map-iframe {
    width: 100%;
    height: 570px;
    border: none;
    display: block;
}

.cs-location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cs-location-card {
    background-color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-border-color);
    transition: box-shadow 0.3s ease;
}

.cs-location-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cs-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cs-card-icon {
    border-radius: 0.5rem;
    padding: 0.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-card-icon-blue {
    background-color: var(--primary-color);
}

.cs-card-icon-green {
    background-color: var(--accent2-color);
}

.cs-card-icon-orange {
    background-color: var(--accent-color);
}

.cs-card-icon-inner {
    color: white;
    font-size: 1.5rem;
}

.cs-card-text {
    flex: 1;
}

.cs-card-title {
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.cs-card-description {
    color: var(--dark-text-color);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.cs-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-button-bg-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cs-card-link:hover {
    color: var(--secondary-button-hover-bg-color);
}

.cs-link-icon {
    margin-right: 0.5rem;
}

.cs-info-card {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: white;
}

.cs-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-info-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.cs-info-icon-check {
    color: var(--accent-color);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* Contact Methods Grid */
.cs-contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.cs-contact-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.cs-contact-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.cs-contact-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.cs-contact-icon-orange {
    background-color: var(--secondary-button-bg-color);
}

.cs-contact-icon-green {
    background-color: var(--accent2-color);
}

.cs-contact-icon-blue {
    background-color: var(--primary-color);
}

.cs-contact-icon-inner {
    color: white;
    font-size: 1.5rem;
}

.cs-contact-title-small {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cs-contact-description {
    font-size: 0.875rem;
    color: var(--gray-text-color);
    margin-bottom: 0.75rem;
}

.cs-contact-link {
    color: var(--secondary-button-bg-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cs-contact-link:hover {
    color: var(--secondary-button-hover-bg-color);
    text-decoration: underline;
}

.cs-contact-text {
    color: var(--primary-color);
    font-weight: 600;
}



/* Mobile Responsive Styles */
@media (max-width: 786px) {
    /* Global Mobile Adjustments */
    .container {
        padding: 0 1rem;
    }

    h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
	
	h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    p {
        font-size: 0.85rem;
    }

    /* Header Mobile Styles */
    .header-container {
        height: 60px;
    }

    .logo img {
        height: 70px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-text-color);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: var(--dark-text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--light-border-color);
    transition: color 0.3s ease;
}

/* Active page link styling */
.mobile-nav a.active {
    color: var(--secondary-button-bg-color);
    font-weight: 600;
}

/* Optional: Add a marker for the active page */
.mobile-nav a.active::before {
    content: "•";
    margin-right: 0.5rem;
    color: var(--secondary-button-bg-color);
}
	

    /* Hero Section Mobile */
    /* Responsive Styles */
        @media (max-width: 992px) {
            .carousel-text h1 {
                font-size: 2.8rem;
				text-align: center;
            }
            
            .carousel-text p {
                font-size: 1.1rem;
				text-align: center;
            }
        }

        @media (max-width: 768px) {
            .hero {
                height: 80vh;
                min-height: 500px;
            }
            
            .carousel-text h1 {
                font-size: 2.2rem;
				text-align: center;
            }
            
            .carousel-text p {
                font-size: 1rem;
                max-width: 100%;
				text-align: center;
            }
			
			            
            .button-group {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 250px;
            }
            
            .carousel-controls {
                padding: 0 10px;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 90vh;
                min-height: 450px;
            }
            
            .carousel-text h1 {
                font-size: 1.8rem;
				text-align: center;
            }
            
            .carousel-text p {
                font-size: 0.9rem;
				text-align: center;
            }
            
            .btn-primary, .btn-secondary {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .carousel-indicators {
                bottom: 20px;
            }
        }

    /* About Section Mobile */
    .waste-section {
        padding: 3rem 0;
    }

    .about-grid,
    .about-grid-num {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }

    .about-image img {
        height: 300px;
    }

    .floating-badge {
				position: absolute;
				bottom: -1rem;
				left: 11rem;
				background-color: var(--secondary-button-bg-color);
				color: var(--secondary-button-text-color);
				padding: 1rem;
				border-radius: 0.75rem;
				box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
				text-align: center;
				width: 50%;
			}
			
			.floating-badge p:first-child {
				font-size: 1rem;
				font-weight: 700;
			}

    .section-title {
        font-size: 1.55rem;
        order: -1;
		text-align: center;
    }

    .section-text,
	.custom-safety-sub-title {
        font-size: 0.9rem;
        text-align: justify;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Benefits Section Mobile */
    .benefits-section {
        padding: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
	
	.stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .benefit-card,
    .stat-item {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Sustainability Section Mobile */
    .sustainability-section {
        padding: 3rem 0;
    }

    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Global Section Mobile */
    .global-section {
        padding: 3rem 0;
    }

    .global-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 3rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-image {
        height: 180px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Footer Mobile */
    #global-footer {
        padding: 2rem 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .registration-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Page Header Mobile */
    .page-title {
        font-size: 1.6rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    /* Content Grid Mobile */
    .content-grid,
    .storage-grid,
    .custom-content-grid,
    .custom-fleet-grid,
    .custom-why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .storage-content {
        order: 2;
    }

    .storage-image-col {
        order: 1;
    }

    /* Two Column Layout Mobile */
    .two-col-wrapper {
        flex-direction: column;
    }

    .two-col-item {
        flex: 1 1 100%;
    }

    /* Fuel Features Grid Mobile */
    .fuel-features-grid {
        grid-template-columns: 1fr;
    }

    /* Features Container Mobile */
    .features-container .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    /* Capabilities Grid Mobile */
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    /* Certifications Grid Mobile */
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Transport Grid Mobile */
    .transport-grid {
        grid-template-columns: 1fr;
    }

    /* Values Grid Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    /* Facilities Grid Mobile */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .facility-content {
        padding: 2rem;
    }

    /* Custom Sections Mobile */
    .custom-certification-grid, 
	.custom-vessel-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
	
	.custom-certification-grid-grid {
        grid-template-columns: 1fr;
    }

    .custom-tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .custom-sustainability-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .custom-specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .custom-capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .custom-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .custom-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .custom-contact-grid {
        grid-template-columns: 1fr;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 4rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-main-btn,
    .cta-secondary-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: auto;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-separator {
        display: none;
    }

    /* Legal Sections Mobile */
    .legal-section {
        margin-top: 4rem;
        margin-bottom: 3rem;
    }

    .legal-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Custom Sustainability Solutions Mobile */
    .cs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cs-depot-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cs-floating-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 1rem auto;
        max-width: 100%;
    }

    .cs-certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cs-compliance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cs-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cs-partner-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Contact Form Mobile */
    .cs-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cs-form-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .cs-location-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cs-contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Ensure titles come first in flex containers */
    .about-grid > :first-child,
    .sustainability-grid > :first-child,
    .content-grid > :first-child,
    .storage-grid > :first-child,
    .custom-content-grid > :first-child,
    .custom-fleet-grid > :first-child,
    .custom-why-grid > :first-child {
        order: -1;
    }
	
	.about-section {
		padding: 1rem 0;
	}

    /* Back to top button adjustment */
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
	
	.feature-content h4 {
		font-size: 1.1rem;
		margin-bottom: 0.4rem;
	}
	
	.service-card h3 {
		font-size: 1.1rem;
		margin-bottom: 0.8rem;
	}
	
	.global-number {
		font-size: 2rem;
	}
	
	.global-stat-icon,
    .custom-stat-icon,
	.custom-cert-icon,
    .custom-sustainability-icon	{
		background-color: var(--secondary-button-bg-color);
		width: 3rem;
		height: 3rem;
	}
	
	.benefit-icon {
		width: 3rem;
		height: 3rem;
	}
	
	.regions-container,
    .custom-sustainability-card	{
    padding: 0.9rem;
	}
	
	.custom-sustainability-content {
		gap: 1rem;
	}
	
	.contact-content h3,
    .custom-sustainability-banner-title	{
    font-size: 1.3rem;
	}
	
	.custom-sustainability-banner-text {
    font-size: 0.9rem;
	}
	
	.copyright p,
	.custom-sustainability-banner-button {
    font-size: 0.65rem;
	}
	
	.heritage-badge {
		position: absolute;
		bottom: -1.5rem;
		left: -0.55rem;
		padding: 0.65rem 0.65rem;
		width: 50%;
		}
		
	.cs-floating-stats {
		position: absolute;
		bottom: -1.5rem;
		left: -0.55rem;
		padding: 0.65rem 0.65rem;
		width: 70%;
		}
		
	.custom-floating-badge,
    .custom-fleet-badge	{
		position: absolute;
		bottom: -1.5rem;
		left: -0.55rem;
		padding: 0.35rem 0.35rem;
		width: 41%;
		}
	
	.badge-text, .cs-stats-number {
    font-size: 0.95rem;
	}
	
	.custom-badge-number {
    font-size: 1.2rem;
	}

	.about-content {
		margin-top: 1rem;
	}
	
	.value-title,
	.custom-benefit-content h3,
    .custom-cta-title	{
		font-size: 1.1rem;
	}
	.value-icon,
	.feature-icon,
	.service-icon,
    .custom-tech-icon	{
		width: 3rem;
		height: 3rem;
	}
	
	.features-grid.sustainability-features, .cs-button-group {
        grid-template-columns: 1fr;
		display: grid;
    }
	
	.cs-stats-bar {
		padding: 1rem;
	}
	
	.subsection-num {
		font-size: 1rem;
	}
	.content-section {
		padding: 4rem 0;
	}
	
	.storage-subtitle {
		margin-top: 3rem;
		font-size: 1.2rem;
		text-align: center;
	}
	
	.safety-highlight-text,
    .service-highlight-text p,
    .feature-content p,
    .logistics-center,
	.benefit-description	{
		text-align: justify !important;
	}
	
	.service-highlight-text h4	{
		font-size: 1.2rem;
		text-align: center;
	}
	
	.custom-content-title	{
		margin-top: 3rem;
		font-size: 1.2rem;
		text-align: center;
	}
	
	.subsection-title	{
		margin-top: 0;
		font-size: 1.2rem;
		text-align: center;
	}
	
	.custom-fleet-section {
		padding: 2rem 0;
	}
	
	.custom-fleet-title {
		margin-top: 1rem;
		font-size: 1.5rem;
		text-align: center;
	}
	
	.custom-sustainability-title {
		padding: 0;
		margin-top: -1rem;
		font-size: 1.5rem;
	}
	
	.custom-certification-title,
    .safety-highlight-title	{
		font-size: 1.2rem;
		text-align: center;
	}
		
	.subsection-title
	.custom-why-stats-number,
	.custom-contact-actions-title	{
		font-size: 1.2rem;
		margin-top: 2.5rem;
		text-align: center;
	}
	
	.subsection-title-num {
		font-size: 1.4rem;
		margin-bottom: 2.5rem;
		text-align: center;
	}
	
	.custom-contact-title {
		font-size: 1.5rem;
		margin-bottom: 2.5rem;
	}
	
	.facility-description,
	.custom-section-subtitle,
    .custom-sustainability-subtitle,
    .company-details	{
		text-align: justify;
	}
	
	.cs-title, .custom-why-title {
		font-size: 1.5rem;
		text-align: center;
	}
	
	.custom-vessel-main-title,
	.custom-capabilities-title, 
	.custom-capabilities-title-overview ,
	.custom-section-title  {
		font-size: 1.5rem;
	}
	
	.custom-why-stats-text {
		font-size: 0.6rem;
	}
	
	.custom-why-choose {
		padding: 3rem 0;
	}
	
	.custom-why-stats {
		position: absolute;
		bottom: -1rem;
		right: -0.5rem;
		padding: 0.6rem 0.6rem;
	}
	
	.cta-content .section-title, .cs-partner-title  {
		font-size: 1.5rem;
	}
	
	.cs-partner-text, .legal-content {
		text-align: justify;
	}
	
	.legal-section-title {
		font-size: 1.5rem;
	}
	
	 .legal-table {
        width: 100%;
        table-layout: fixed; /* Prevent table from expanding */
    }
	
	.cs-contact-title, .cs-location-title {
		font-size: 1.5rem;
	}
	
	.cs-form-container {
		padding: 1rem;
	}
	
    .custom-vessel-grid {
        display: block; 
    }

    .custom-vessel-image-col {
        width: 100%;
        height: auto;
        margin-bottom: 1.5rem; 
    }

    .custom-vessel-content-col {
        padding: 1rem; 
    }

    .custom-vessel-name, .cs-cta-title {
        font-size: 1.25rem;
    }

    .custom-vessel-type {
        font-size: 0.875rem;
    }

    .custom-vessel-description, .cs-card-text {
        font-size: 1rem; 
        margin-bottom: 1.5rem; 
		text-align: justify;
    }

    .custom-specs-grid {
        display: block; 
    }

    .custom-spec-card {
        margin-bottom: 1.5rem;
    }

    .custom-spec-title, .cs-card-title {
        font-size: 1rem;
    }

    .custom-spec-item {
        font-size: 0.875rem; 
    }

    .custom-safety-section {
        margin-top: 2rem; 
    }

    .custom-safety-title {
        font-size: 1.25rem;
    }

    .custom-safety-text {
        font-size: 0.875rem;
    }

    .custom-capabilities-grid {
        display: block;
    }

    .custom-capability-card {
        margin-bottom: 1.5rem;  
    }

    .custom-capability-name {
        font-size: 1rem;  
    }

    .custom-vessel-cta {
        margin-top: 2rem; 
    }

    .custom-vessel-cta-button {
        width: 100%; 
        padding: 1rem;
        font-size: 1rem; 
    }
	
	.section-header .section-text {
		max-width: 600px;
		margin: 0 auto;
		text-align: justify;
	}
	
	.section-badge-left {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }
	
	.badge-container {
		display: flex;
		justify-content: center;
		width: 100%;
		margin-bottom: 1rem;
	}
	
	.custom-safety {
		font-size: 1.5rem;
		font-weight: 700;
		margin-bottom: 1rem;
		font-family: var(--font-family-heading);
		margin-top: 1rem;
	}

}
