/* Page Header */
.page-header {
    height: 400px;
    background-image: url('../assets/images/hero-plane.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: calc(var(--utility-bar-height) + var(--header-height));
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 58, 138, 0.8) 100%);
}

.header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.5;
}

.breadcrumb span {
    color: var(--secondary-color);
    font-weight: 500;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: slideUp 0.8s ease forwards;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideUp {
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Services Introduction */
.services-intro {
    padding: 40px 0;
    background: var(--white);
}

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

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Main Services Section */
.services-main {
    padding: 60px 0 100px;
    background: var(--light-bg);
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Service Card - Image Background Style */
/* Service Card - Simple & Modern */
.service-card-large {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(232, 25, 33, 0.1);
}

.service-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-large:hover .service-image img {
    transform: scale(1.03);
}

.service-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(232, 25, 33, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.15rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.service-card-large:hover .service-icon-box {
    background: var(--secondary-color);
    color: var(--white);
}

.service-body h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.service-body>p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Features - Clean List */
.service-features {
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--secondary-color);
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Link - Simple & Elegant */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding-bottom: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Remap .btn-service to simple link style */
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    padding: 0;
    transition: all 0.3s ease;
    opacity: 1;
    transform: none;
    margin-top: auto;
}

.btn-service:hover {
    color: var(--secondary-color);
    gap: 12px;
    background: transparent;
    transform: none;
}

.btn-service i {
    font-size: 0.8rem;
}

.service-card-large:hover .btn-service {
    opacity: 1;
}



/* Stats Section (Reusing from home) */
.stats-section {
    background-image: url('../assets/images/hero-ship.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: var(--white);
    text-align: center;
}

.stats-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.stats-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item .counter {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-8px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(232, 25, 33, 0.2);
}

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

.advantage-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.advantage-card:hover h3 {
    color: var(--white);
}

.advantage-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.advantage-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e3f2fd 100%);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 50px 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 30px;
}

.cta-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-lg {
    padding: 16px 35px;
    font-size: 1.05rem;
}

.btn-outline-dark {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid-large {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 350px;
        margin-top: calc(var(--utility-bar-height) + var(--header-height) - 20px);
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .intro-content h2,
    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .stat-item .counter {
        font-size: 2.5rem;
    }
}