:root {
    /* Core Colors */
    --bg: #070707;
    /* deep night */
    --ink: #ffffff;
    /* pure white text */
    --muted: #ffffff;
    /* white secondary text */
    --acc:#2596be;
    /* glacier blue */

    /* Extended Color Palette */
    --acc-dark: #2596be;
    /* much darker glacier blue */
    --acc-darker: #2596be;
    /* very dark glacier blue for hover */
    --acc-light: #2596be;
    /* lighter glacier blue */
    --bg-light: #0f0f0f;
    /* slightly lighter background */
    --bg-lighter: #1a1a1a;
    /* even lighter background */
    --bg-brightest: #2a2a2a;
    /* brightest top background */
    --bg-glow: #3a3a3a;
    /* glowing light effect */

    /* Glass Effects */
    --glass-bg: rgba(37, 150, 190, 0.05);
    --glass-border: rgba(37, 150, 190, 0.2);
    --glass-bg-light: rgba(37, 150, 190, 0.1);
    --glass-border-light: rgba(37, 150, 190, 0.3);

    /* Shadows */
    --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 10px 30px rgba(37, 150, 190, 0.4);
    --shadow-button: 0 8px 25px rgba(37, 150, 190, 0.3);

    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #2596be 100%);
    --gradient-background: linear-gradient(180deg,
            #070707 0%,
            #070707 30%,
            #070707 60%,
            #1a237e 90%,
            #1a237e 100%);
            --gradient-background-opposite: linear-gradient(180deg,
            #1a237e 10%,
            #0d1421 30%,
            #070707 60%,
            #1a237e 90%,
             #1a237e 100%);
    --gradient-text: linear-gradient(135deg, var(--ink) 0%, #2596be 100%);

    /* Typography */
    --font-primary: 'Helvetica', Arial, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-xl: 25px;
    --radius-full: 30px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

/* Cooperate Travels Page Styles */

/* Hero Section */
.cooperate-hero {
    background: var(--gradient-background);
    padding: var(--spacing-3xl) 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.cooperate-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cooperate-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cooperate-hero .hero-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    display: flex;
    justify-content: center;
}

.cooperate-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #2596be;
}

.cooperate-hero .hero-description {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.bg-our-fleet{
    margin-top: -2px !important;
}
/* Sections */
.section {
    margin-top: -1px ;
    background: var(--gradient-background-opposite);
    color: white;
}

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

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.section h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2596be;
}

.section p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Feature Cards */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.feature-icon-modern {
    margin-bottom: 1.5rem;
}

.icon-bg {
    background: rgba(37, 150, 190, 0.1);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg svg {
    color: #2596be;
}

.feature-title-modern {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.feature-text-modern {
    color: rgba(255, 255, 255, 0.8);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-list-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-list-item:last-child {
    border-bottom: none;
}

/* Advantages List */
.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.advantage-icon svg {
    color: #2596be;
    flex-shrink: 0;
}

.advantage-title {
    font-weight: 600;
    color: white;
}

/* CTA Section */
.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.apply-btn {
    background: linear-gradient(135deg, #2596be 0%, #1a237e 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.apply-btn:hover {
    transform: translateY(-2px);
}

.contact-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info {
    font-size: 1rem;
    color: white;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .cooperate-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .cooperate-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .advantages-list {
        grid-template-columns: 1fr;
    }
}
