/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00aeef;
    background: rgba(0, 174, 239, 0.08);
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-header h2.light {
    color: #ffffff;
}

.section-subtitle {
    font-size: 18px;
    color: #475569;
    max-width: 700px;
    margin: 16px auto 0;
    line-height: 1.6;
}

/* ========== HERO SECTION ========== */
.services-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1a2f 0%, #0c1e35 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgb(10 26 47 / 100%) 0%, 
        rgb(10 26 47 / 95%) 30%,
        rgb(10 26 47 / 60%) 60%,
        rgb(10 26 47 / 0%) 100%);
    z-index: 1;
}

.services-hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 24px;
    z-index: 2;
    width: 100%;
}

.services-hero-content {
    max-width: 700px;
}

.services-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #00aeef 0%, #00a79d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.services-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00aeef;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-services:hover {
    background: #0095cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
}

.btn-secondary-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary-services:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: white;
}

/* ========== INTRO SECTION ========== */
.services-intro {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
}

.intro-text {
    font-size: 20px;
    line-height: 1.7;
    color: #334155;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

/* ========== CORE SERVICES SECTION ========== */
.core-services-section {
    padding: 80px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
    border-color: #00aeef;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 174, 239, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 32px;
    color: #00aeef;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: #00aeef;
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00aeef;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #0082b3;
}

/* ========== GLOBAL DELIVERY SECTION ========== */
.global-delivery-section {
    padding: 80px 0;
    background: #00a79d;
}

.delivery-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.delivery-content {
    flex: 1;
    min-width: 280px;
}

.delivery-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.delivery-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #ffffff;
}

.delivery-feature i {
    font-size: 20px;
    color: #ffffff;
    width: 24px;
}

.delivery-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}

.delivery-link:hover {
    gap: 15px;
    border-bottom-color: #ffffff;
}
.delivery-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.delivery-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
}

/* Remove the placeholder styles if you had them */
.delivery-placeholder {
    display: none;
}

.delivery-image {
    flex: 1;
    min-width: 280px;
}

.delivery-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-placeholder i {
    font-size: 100px;
    color: #ffffff;
    opacity: 0.7;
}

/* ========== WHY CHOOSE SECTION ========== */
.why-choose-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 174, 239, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 32px;
    color: #00aeef;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* ========== CTA SECTION ========== */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1a2f 0%, #0c1e35 100%);
    text-align: center;
}

.services-cta .cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.services-cta .cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00aeef;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-cta:hover {
    background: #0095cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: white;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .services-hero::before {
        width: 100%;
        opacity: 0.2;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .services-description {
        font-size: 16px;
    }
    
    .services-hero-content {
        text-align: center;
    }
    
    .services-hero-buttons {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .intro-text {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-content h2 {
        font-size: 32px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta .cta-content h2 {
        font-size: 32px;
    }
    
    .services-cta .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .service-card {
        padding: 30px 24px;
    }
    
    .delivery-content h2 {
        font-size: 26px;
    }
    
    .delivery-description {
        font-size: 16px;
    }
    
    .services-cta .cta-content h2 {
        font-size: 26px;
    }
}