/* Hero Section */
.terminal-hero {
    position: relative;
    height: 70vh;
    background: url('../assets/MAFINA/terminals/terminal-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 6rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Global Map */
.global-map-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.global-map {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-marker {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-marker:hover .marker-dot {
    transform: scale(1.2);
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
    transition: all 0.3s ease;
}

.marker-label {
    position: absolute;
    white-space: nowrap;
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.europe {
    top: 30%;
    left: 50%;
}

.asia {
    top: 40%;
    left: 75%;
}

.africa {
    top: 55%;
    left: 55%;
}

.americas {
    top: 45%;
    left: 20%;
}

/* Terminal Locations */
.terminal-locations {
    padding: 5rem 0;
}

.region-section {
    margin-bottom: 4rem;
}

.region-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-light);
}

.region-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-right: 1.5rem;
}

.region-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.terminal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.terminal-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.terminal-card:hover {
    transform: translateY(-10px);
}

.terminal-image {
    height: 200px;
    overflow: hidden;
}

.terminal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.terminal-card:hover .terminal-image img {
    transform: scale(1.05);
}

.terminal-content {
    padding: 1.5rem;
}

.terminal-name {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.terminal-description {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.terminal-features {
    list-style: none;
    margin-top: 1rem;
}

.terminal-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.terminal-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Global Operations */
.global-operations {
    padding: 5rem 0;
    background: var(--light-bg);
}

.operations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.operations-text {
    padding-right: 2rem;
}

.operations-list {
    margin: 2rem 0;
}

.operations-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.operations-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.operations-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.operations-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Terminal Features */
.terminal-features-section {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-description {
    color: var(--text-color);
    line-height: 1.5;
}

/* CTA Section */
.terminal-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button-primary {
    background: white;
    color: var(--primary-color);
}

.cta-button-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-button-secondary {
    border: 2px solid white;
    color: white;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .operations-content {
        grid-template-columns: 1fr;
    }
    
    .operations-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .map-marker {
        transform: scale(0.8);
    }
}