
        /* Page-specific styles */
        :root {
            --color-primary: #1a3a5c;
            --color-primary-dark: #0f2440;
            --color-accent: #1e5a8e;
            --color-border-accent: #8b1e3f;
            --color-white: #ffffff;
            --color-grey-light: #f5f7fa;
            --color-grey-dark: #4a5568;
            --border-radius-lg: 12px;
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a1628;
            color: #ffffff;
            line-height: 1.7;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-align: center;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin-bottom: 3rem;
        }

        /* Hero Section */
        .service-hero {
            position: relative;
            height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(15, 36, 64, 0.95) 0%, rgba(139, 30, 63, 0.9) 100%),
                        url('/assets/img/planes/Cargo-Air-Charter-Photo.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .service-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 30% 40%, rgba(139, 30, 63, 0.2), transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(30, 90, 142, 0.15), transparent 50%);
            animation: pulseGlow 8s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        .service-hero .container {
            position: relative;
            z-index: 2;
            text-align: center;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: #ffffff;
            text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        }

        .service-hero p {
            font-size: 1.5rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Service Introduction */
        .service-intro {
            padding: 6rem 0;
            background: linear-gradient(180deg, #0a1628 0%, rgba(15, 36, 64, 0.5) 100%);
            position: relative;
        }

        .service-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-border-accent), transparent);
        }

        .service-intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .service-intro-text h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-intro-text p {
            font-size: 1.125rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }

        .service-intro-image {
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(139, 30, 63, 0.3);
            border: 1px solid rgba(139, 30, 63, 0.2);
            transition: all var(--transition-smooth);
        }

        .service-intro-image:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(139, 30, 63, 0.4);
        }

        .service-intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Features Section */
        .features-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, rgba(15, 36, 64, 0.5) 0%, #0a1628 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .feature-box {
            background: linear-gradient(135deg, rgba(26, 58, 92, 0.4) 0%, rgba(15, 36, 64, 0.6) 100%);
            backdrop-filter: blur(16px);
            padding: 2.5rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(139, 30, 63, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--color-border-accent), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-box:hover {
            transform: translateY(-8px);
            border-color: var(--color-border-accent);
            box-shadow: 0 16px 48px rgba(139, 30, 63, 0.3);
        }

        .feature-box:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--color-border-accent), #6d1830);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 24px rgba(139, 30, 63, 0.4);
        }

        .feature-box h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .feature-box p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
        }

        /* Use Cases Section */
        .use-cases-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #0a1628 0%, rgba(15, 36, 64, 0.5) 100%);
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .use-case-card {
            background: linear-gradient(135deg, rgba(26, 58, 92, 0.4) 0%, rgba(15, 36, 64, 0.6) 100%);
            backdrop-filter: blur(16px);
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            border-left: 4px solid var(--color-border-accent);
            border: 1px solid rgba(139, 30, 63, 0.2);
            border-left: 4px solid var(--color-border-accent);
            transition: all var(--transition-smooth);
        }

        .use-case-card:hover {
            transform: translateX(8px);
            border-left-width: 6px;
            box-shadow: 0 12px 40px rgba(139, 30, 63, 0.3);
        }

        .use-case-card h3 {
            font-size: 1.25rem;
            color: #ffffff;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 700;
        }

        .use-case-icon {
            font-size: 1.5rem;
        }

        .use-case-card p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
        }

        /* Aircraft Section */
        .aircraft-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, rgba(15, 36, 64, 0.5) 0%, #0a1628 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(26, 58, 92, 0.3) 0%, rgba(15, 36, 64, 0.5) 100%);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            border: 1px solid rgba(139, 30, 63, 0.2);
            transition: all 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--color-border-accent);
            box-shadow: 0 16px 48px rgba(139, 30, 63, 0.4);
        }

        .service-card-image {
            width: 100%;
            height: 240px;
            overflow: hidden;
            position: relative;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.1);
        }

        .service-card-content {
            padding: 2rem;
        }

        .service-card-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .service-card-content p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .fleet-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .fleet-spec {
            background: rgba(139, 30, 63, 0.2);
            color: var(--color-border-accent);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            border: 1px solid rgba(139, 30, 63, 0.3);
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(139, 30, 63, 0.15) 0%, rgba(26, 58, 92, 0.3) 100%);
            text-align: center;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(139, 30, 63, 0.2), transparent 70%);
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .cta-section > .container > p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2.5rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.05em;
            text-decoration: none;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-border-accent) 0%, #6d1830 100%);
            color: white;
            box-shadow: 0 8px 32px rgba(139, 30, 63, 0.4),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(139, 30, 63, 0.6);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
        }

        /* Reveal Animation */
        .reveal {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .service-hero h1 {
                font-size: 2.5rem;
            }

            .service-hero p {
                font-size: 1.125rem;
            }

            .service-intro-content,
            .use-cases-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .service-intro-text h2 {
                font-size: 2rem;
            }

            .features-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .service-hero {
                height: 70vh;
            }

            .container {
                padding: 0 1.25rem;
            }
        }
    