/**
 * Delta Shipping - Main Stylesheet
 * Brand Colors: #34A9F7 (primary), #414041 (secondary), #F4F0EA (tertiary)
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary-color: #34A9F7;
    --primary-hover: #2a8cd4;
    --secondary-color: #414041;
    --tertiary-color: #F4F0EA;
    --white: #ffffff;
    --text-dark: #414041;
    --text-light: #666666;
    --border-color: rgba(65, 64, 65, 0.15);
    --shadow-light: rgba(65, 64, 65, 0.1);
    --shadow-medium: rgba(65, 64, 65, 0.15);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(52, 169, 247, 0.2);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.badge-24 {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.tagline {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item:hover {
    color: var(--primary-color);
}

.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.language-switcher a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 3px 6px;
    border-radius: 3px;
    transition: all 0.3s;
}

.language-switcher a:hover {
    color: var(--primary-color);
}

.language-switcher a.active {
    color: var(--primary-color);
    background: rgba(52, 169, 247, 0.1);
}

.language-switcher span {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
    background: var(--white);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 15px var(--shadow-light);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* ============================================
   LOGO
   ============================================ */
.logo {
    flex: 0 0 auto;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 100px;
    width: 190px;
    transition: all 0.3s;
}

.main-header.sticky .logo img {
    height: 70px;
    width: 133px;
}

/* ============================================
   MAIN NAVIGATION
   ============================================ */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Underline effect on hover */
.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after {
    width: 100%;
}

/* ============================================
   DROPDOWN MENU
   ============================================ */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: 0 5px 20px var(--shadow-medium);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s;
    padding: 8px 0;
    border-radius: 8px;
    margin-top: 15px;
    border-top: 3px solid var(--primary-color);
    list-style: none;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li {
    padding: 0;
    width: 100%;
}

.dropdown a {
    display: block;
    padding: 8px 25px;
    color: var(--secondary-color);
    white-space: nowrap;
    font-size: 15px;
}

.dropdown a::after {
    display: none;
}

.dropdown a:hover {
    background: var(--tertiary-color);
    color: var(--primary-color);
    padding-left: 30px;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.cta-button {
    flex: 0 0 auto;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(52, 169, 247, 0.3);
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--primary-hover);
    box-shadow: 0 5px 15px rgba(52, 169, 247, 0.4);
    transform: translateY(-2px);
    color: var(--white);
}

.cta-button:active {
    transform: translateY(0);
}

/* ============================================
   MOBILE HAMBURGER
   ============================================ */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    font-size: 28px;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: color 0.3s;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle.active {
    color: var(--primary-color);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 991px) {
    .top-bar-left .tagline {
        display: none;
    }
    
    .header-content {
        gap: 20px;
    }
    
    .main-nav ul {
        gap: 25px;
    }
    
    .main-nav a {
        font-size: 15px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
    /* Top Bar */
    .top-bar {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .top-bar-left {
        gap: 10px;
    }
    
    .top-bar-left .badge-24 {
        font-size: 12px;
    }
    
    .top-bar-right {
        gap: 15px;
        font-size: 12px;
    }
    
    .contact-info {
        gap: 12px;
    }
    
    .contact-item span {
        display: none;
    }
    
    /* Main Header */
    .main-header {
        padding: 15px 0;
    }
    
    .main-header.sticky {
        padding: 12px 0;
    }
    
    .logo img {
        height: 60px;
        width: 114px;
    }
    
    .main-header.sticky .logo img {
        height: 50px;
        width: 95px;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block; /* Visible on mobile */
    }

    /* Mobile Menu */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 20px var(--shadow-medium);
        transition: right 0.3s;
        padding: 80px 0 30px;
        overflow-y: auto;
        z-index: 999;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .main-nav li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav a {
        display: block;
        padding: 18px 25px;
        font-size: 16px;
    }
    
    .main-nav > ul > li > a::after {
        display: none;
    }
    
    /* Dropdown in mobile */
    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 0;
        background: var(--tertiary-color);
        display: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown.active .dropdown {
        display: flex;
        flex-direction: column;
        max-height: 600px;
    }
    
    .dropdown a {
        padding-left: 40px !important;
        font-size: 14px;
    }
    
    /* CTA Button */
    .cta-button {
        display: none;
    }
    
    /* Show Hamburger */
    .hamburger {
        display: flex;
        z-index: 1001;
    }
}



/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 150px;
    width: 300px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 450px;
}

/* Footer Right Column */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

/* Footer Contact */
.footer-contact {
    width: 100%;
}

.footer-contact h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-list i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--primary-color);
}



/* Footer Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 0;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

/* Footer Left Section */
.footer-left-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer Language Switcher */
.footer-language {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.language-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-options {
    display: flex;
    gap: 8px;
    align-items: center;
}

.language-options a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.language-options a:hover {
    color: var(--primary-color);
    background: rgba(52, 169, 247, 0.1);
}

.language-options a.active {
    color: var(--primary-color);
    background: rgba(52, 169, 247, 0.15);
    font-weight: 600;
}

.language-options .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ANPC Badges (Romanian Law Requirement) */
.footer-anpc-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.footer-anpc-badges a {
    display: block;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-anpc-badges a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-anpc-badges img {
    height: 37px;
    width: 150px;
    display: block;
}

/* ============================================
   FOOTER RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-right {
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-list li {
        justify-content: flex-end;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-left-section {
        align-items: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .footer-anpc-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-language {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .main-footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 30px;
    }
    
    .footer-logo img {
        height: 100px;
        width: 200px;
    }
    
    .footer-tagline {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .footer-contact h4,
    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .contact-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-menu a {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        gap: 15px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
    
    .footer-language {
        flex-direction: column;
        gap: 10px;
    }
    
    .language-options a {
        font-size: 13px;
        padding: 4px 8px;
    }
    
    .footer-certifications {
        font-size: 12px;
    }
}



/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

/* Hero Inner (for inner pages like legal pages) */
.hero-inner {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    background: linear-gradient(135deg, #414041 0%, #34a9f7 100%);
}

/* Hero Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* Hero Overlay (Dark overlay for text readability) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(65, 64, 65, 0.85) 0%,
        rgba(52, 169, 247, 0.75) 100%
    );
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Title (H1) */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Subtitle (H2) */
.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-cta .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hero-cta .btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(52, 169, 247, 0.4);
}

.hero-cta .btn-primary:hover {
    background: #2a8fd9;
    border-color: #2a8fd9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 169, 247, 0.6);
}

.hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.hero-cta .btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Hero Badges / Trust Indicators */
.hero-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}

.badge-item i {
    font-size: 20px;
    color: var(--primary-color);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 24px;
    transition: all 0.3s;
    animation: bounce 2s infinite;
}

.scroll-indicator a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   HERO BANNER RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .hero-banner {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta .btn {
        padding: 12px 28px;
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-banner {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 25px;
        font-size: 16px;
        justify-content: center;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .badge-item {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .badge-item i {
        font-size: 18px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
}



/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--tertiary-color);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-top: 20px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(52, 169, 247, 0.15);
    border-color: var(--primary-color);
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2a8fd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

/* Service Title */
.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Service Description */
.service-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Service Link */
.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 10px;
    color: #2a8fd9;
}

.service-link i {
    font-size: 14px;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Featured Service (River Transport) */
.service-featured {
    background: linear-gradient(135deg, var(--primary-color), #2a8fd9);
    border-color: var(--primary-color);
    color: var(--white);
}

.service-featured .service-icon {
    background: var(--white);
}

.service-featured .service-icon i {
    color: var(--primary-color);
}

.service-featured .service-title {
    color: var(--white);
}

.service-featured .service-description {
    color: rgba(255, 255, 255, 0.95);
}

.service-featured .service-link {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
}

.service-featured .service-link:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Service Badge (Exclusive) */
.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--white);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.service-badge i {
    font-size: 14px;
}

/* ============================================
   SERVICES SECTION RESPONSIVE
   ============================================ */

/* Large Tablets */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (max-width: 991px) {
    .services-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .service-title {
        font-size: 19px;
    }
    
    .service-description {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
}



/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    padding: 100px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.why-choose-section .section-title {
    color: var(--white);
}

.why-choose-section .section-title::after {
    background: var(--primary-color);
}

.why-choose-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Benefit Card */
.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Benefit Icon */
.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(52, 169, 247, 0.4);
}

.benefit-icon i {
    font-size: 36px;
    color: var(--white);
}

/* Benefit Title */
.benefit-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Benefit Description */
.benefit-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Highlighted Benefit (River Transport) */
.benefit-highlighted {
    background: linear-gradient(135deg, rgba(52, 169, 247, 0.25), rgba(42, 143, 217, 0.25));
    border-color: var(--primary-color);
}

.benefit-highlighted .benefit-icon {
    background: var(--white);
}

.benefit-highlighted .benefit-icon i {
    color: var(--primary-color);
}

/* Benefit Badge */
.benefit-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.benefit-badge i {
    font-size: 14px;
}

/* ============================================
   WHY CHOOSE US RESPONSIVE
   ============================================ */

/* Tablets */
@media (max-width: 991px) {
    .why-choose-section {
        padding: 80px 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i {
        font-size: 32px;
    }
    
    .benefit-title {
        font-size: 20px;
    }
    
    .benefit-description {
        font-size: 14px;
    }
}



/* ============================================
   CALL TO ACTION SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), #2a8fd9);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* CTA Title */
.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* CTA Subtitle */
.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 16px 35px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-cta-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary i,
.btn-cta-secondary i {
    font-size: 20px;
}

/* CTA Divider */
.cta-divider {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: lowercase;
}

/* CTA Contact Info */
.cta-contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-contact-item:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.cta-contact-item i {
    font-size: 18px;
}

.cta-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

/* ============================================
   CTA SECTION RESPONSIVE
   ============================================ */

/* Tablets */
@media (max-width: 991px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cta-divider {
        display: none;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-separator {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cta-title {
        font-size: 28px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(52, 169, 247, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

#backToTop:hover {
    background: #2a8fd9;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(52, 169, 247, 0.6);
}

#backToTop.show {
    display: flex;
}

/* Back to Top Responsive */
@media (max-width: 767px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}



/* ============================================
   PAGE HERO SECTION
   ============================================ */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), #2a8fd9);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   SERVICES DETAILED SECTION
   ============================================ */
.services-detailed {
    padding: 100px 0;
    background: var(--white);
}

.service-detail {
    margin-bottom: 100px;
    position: relative;
}

.service-detail:last-child {
    margin-bottom: 0;
}

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

.service-detail-reverse .service-detail-content {
    direction: rtl;
}

.service-detail-reverse .service-detail-text {
    direction: ltr;
}

.service-detail-reverse .service-detail-image {
    direction: ltr;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2a8fd9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 40px;
    color: var(--white);
}

.service-detail h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.2;
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--secondary-color);
}

.service-features li i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.service-detail:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-detail .btn i {
    transition: transform 0.3s;
}

.service-detail .btn:hover i {
    transform: translateX(5px);
}

/* Featured Service (River Transport) */
.service-detail-featured {
    background: linear-gradient(135deg, rgba(52, 169, 247, 0.05), rgba(42, 143, 217, 0.05));
    padding: 60px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-detail-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.badge-exclusive {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.service-detail-featured .service-icon-large {
    background: linear-gradient(135deg, var(--primary-color), #2a8fd9);
    box-shadow: 0 8px 25px rgba(52, 169, 247, 0.4);
}

.service-detail-featured h2 {
    color: var(--primary-color);
}

/* ============================================
   SERVICES PAGE RESPONSIVE
   ============================================ */

/* Tablets */
@media (max-width: 991px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 44px;
    }
    
    .page-subtitle {
        font-size: 19px;
    }
    
    .services-detailed {
        padding: 80px 0;
    }
    
    .service-detail {
        margin-bottom: 80px;
    }
    
    .service-detail-content {
        gap: 40px;
    }
    
    .service-detail h2 {
        font-size: 30px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-detail-featured {
        padding: 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .page-hero {
        padding: 80px 0 50px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .services-detailed {
        padding: 60px 0;
    }
    
    .service-detail {
        margin-bottom: 60px;
    }
    
    .service-detail-content,
    .service-detail-reverse .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
        display: flex;
        flex-direction: column;
    }
    
    /* Ensure text always comes first on mobile */
    .service-detail-text {
        order: 1;
    }
    
    .service-detail-image {
        order: 2;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .service-detail-image img {
        width: 100%;
        height: auto;
        border-radius: 0;
    }
    
    .service-detail-header {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .service-detail-header h2 {
        flex: 1;
        margin: 0;
        font-size: 1.5rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .service-icon-large i {
        font-size: 30px;
    }
    
    .service-detail h2 {
        font-size: 26px;
    }
    
    .service-description {
        font-size: 16px;
    }
    
    .service-features {
        margin-bottom: 25px;
    }
    
    .service-features li {
        font-size: 15px;
    }
    
    .service-detail .btn {
        width: 100%;
        justify-content: center;
    }
    
    .service-detail-featured {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .service-detail-badge {
        top: 15px;
        right: 15px;
    }
    
    .badge-exclusive {
        font-size: 12px;
        padding: 6px 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .service-detail h2 {
        font-size: 24px;
    }
}



/* ========================================
   Services Page Styles
   ======================================== */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color), #2a8fd9);
    padding: 100px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.services-hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Services Details Section */
.services-details {
    padding: 80px 0;
    background: #ffffff;
}

/* Add margin before CTA Section */
.services-details + .cta-section {
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 80px 0 60px;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
    }
    
    .services-details {
        padding: 60px 0;
    }
    
    .services-details + .cta-section {
        margin-top: 40px;
    }
}



/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a8cd4 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

/* Contact Methods */
.contact-methods {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.contact-method-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2a8cd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
}

.contact-method-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--primary-hover);
}

.contact-description {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-wrapper,
.map-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.contact-form-wrapper h2,
.map-wrapper h2 {
    color: var(--secondary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 169, 247, 0.15);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    font-size: 14px;
    margin-top: 5px;
}

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

/* Map Container */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.map-container iframe {
    display: block;
}

.office-address {
    background: var(--tertiary-color);
    padding: 20px;
    border-radius: 8px;
}

.office-address h4 {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.office-address p {
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 0;
}

/* Contact CTA Section */
.contact-form-section + .cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2829 100%);
}

.contact-form-section + .cta-section .cta-title {
    color: var(--white);
}

.contact-form-section + .cta-section .cta-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert i {
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-methods {
        margin-top: 0;
    }

    .contact-form-wrapper,
    .map-wrapper {
        padding: 30px 20px;
    }

    .contact-form-wrapper h2,
    .map-wrapper h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .contact-method-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .contact-method-card h3 {
        font-size: 20px;
    }

    .contact-detail {
        font-size: 18px;
    }

    .map-container iframe {
        height: 300px;
    }
}



/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* About Introduction */
.about-intro {
    padding: 80px 0;
}

.about-intro .section-title {
    color: var(--secondary-color);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-intro .lead {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--tertiary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Our Story / Timeline */
.our-story {
    padding: 80px 0;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px var(--tertiary-color);
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.timeline-year {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.timeline-content h4 {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
}

.mission-vision-card {
    padding: 50px 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2a8cd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    flex-shrink: 0;
}

.mission-vision-card .mv-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.mission-vision-card h3 {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

.mission-vision-card p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Core Values */
.core-values {
    padding: 80px 0;
}

.value-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.value-card h4 {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* What Makes Us Different */
.what-makes-different {
    padding: 80px 0;
}

.difference-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.difference-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.difference-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2a8cd4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
    margin-right: 20px;
}

.difference-content h4 {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.difference-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 30px;
}

.cta-buttons .btn {
    margin: 10px 5px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 70px;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content {
        width: 100%;
        text-align: left !important;
        margin: 0 !important;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }

    .difference-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 767px) {
    .about-intro .section-title {
        font-size: 32px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .mission-vision-card {
        padding: 40px 30px;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .mission-vision-card h3 {
        font-size: 24px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .difference-item {
        flex-direction: column;
        text-align: center;
    }

    .difference-icon {
        margin: 0 auto 20px;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .cta-buttons .me-3 {
        margin-right: 0 !important;
    }
}



/* ============================================
   PORTS PAGE STYLES
   ============================================ */

/* Ports Hero */
.ports-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Ports Overview */
.ports-overview {
    padding: 80px 0;
}

.ports-region-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.ports-region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.region-flag {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2a8cd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.ports-region-card .region-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ports-region-card h3 {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

.ports-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ports-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 16px;
    border-bottom: 1px solid var(--tertiary-color);
}

.ports-list li:last-child {
    border-bottom: none;
}

.ports-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
}

/* Ports Map Section */
.ports-map-section {
    padding: 80px 0;
}

.ports-map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    overflow: hidden;
}

/* Port Details */
.ports-details {
    padding: 80px 0;
}

.port-detail-card {
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.port-detail-card:hover {
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.port-header {
    text-align: center;
    margin-bottom: 20px;
}

.port-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2a8cd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.port-header h3 {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.port-location {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 0;
}

.port-location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.port-description {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.port-features h5 {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 15px;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-content {
    margin: 15px;
    font-family: inherit;
}

.leaflet-popup-content strong {
    color: var(--primary-color);
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .ports-map {
        height: 400px;
    }

    .port-detail-card {
        padding: 30px;
    }

    .port-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .ports-region-card {
        padding: 30px 20px;
    }

    .ports-region-card h3 {
        font-size: 24px;
    }

    .ports-map {
        height: 350px;
    }

    .port-detail-card {
        padding: 25px 20px;
    }

    .port-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .port-header h3 {
        font-size: 24px;
    }

    .feature-item {
        font-size: 14px;
    }
}


/* ============================================
   LEGAL PAGES STYLES
   ============================================ */

/* Legal Content */
.legal-content {
    background: #f8f9fa;
}

.legal-section {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.legal-section h2 {
    color: var(--secondary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.legal-section h3 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section h4 {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-section p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-section ul li {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Table of Contents */
.legal-toc {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.legal-toc h5 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-toc ul {
    padding-left: 0;
}

.legal-toc ul li {
    margin-bottom: 12px;
}

.legal-toc ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.legal-toc ul li a:hover {
    color: var(--primary-color);
    background: rgba(52, 169, 247, 0.1);
    padding-left: 20px;
}

/* Contact Info Box */
.contact-info-box {
    background: var(--tertiary-color);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 20px;
}

.contact-info-box p {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-box a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Responsive Legal Pages */
@media (max-width: 991px) {
    .legal-toc {
        position: relative !important;
        top: auto !important;
        margin-bottom: 30px;
    }

    .legal-section {
        padding: 30px 25px;
    }

    .legal-section h2 {
        font-size: 28px;
    }

    .legal-section h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .legal-section {
        padding: 25px 20px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .legal-section h3 {
        font-size: 20px;
    }

    .legal-section h4 {
        font-size: 18px;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 15px;
    }

    .contact-info-box {
        padding: 20px;
    }
}


