{"id":13156,"date":"2025-08-09T10:04:49","date_gmt":"2025-08-09T07:04:49","guid":{"rendered":"https:\/\/virajet.com\/aircraft-charter-price-calculation\/"},"modified":"2025-08-14T17:41:17","modified_gmt":"2025-08-14T14:41:17","slug":"aircraft-charter-price-calculation","status":"publish","type":"page","link":"https:\/\/virajet.com\/en\/aircraft-charter-price-calculation\/","title":{"rendered":"Aircraft Charter Price Calculation"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"13156\" class=\"elementor elementor-13156 elementor-13089\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a764227 e-flex e-con-boxed e-con e-parent\" data-id=\"a764227\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cd8e612 elementor-widget elementor-widget-shortcode\" data-id=\"cd8e612\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><!DOCTYPE html><html lang=\"tr\">    <meta charset=\"UTF-8\">    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">       <style>        * {            box-sizing: border-box;            margin: 0;            padding: 0;        }        .jet-calculator-container {            max-width: 1200px;            margin: 0 auto;            padding: 20px;            font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;            background: #f8f9fa;            border-radius: 20px;            box-shadow: 0 10px 40px rgba(0,0,0,0.1);        }        .calculator-header {            text-align: center;            margin-bottom: 40px;            padding: 20px;            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);            border-radius: 15px;            color: white;        }        .calculator-header h2 {            font-size: 32px;            margin-bottom: 10px;            font-weight: 700;        }        .calculator-header p {            font-size: 16px;            opacity: 0.9;        }        .calculator-grid {            display: grid;            grid-template-columns: 1fr 1fr;            gap: 30px;            margin-bottom: 30px;        }        @media (max-width: 768px) {            .calculator-grid {                grid-template-columns: 1fr;            }        }        .input-section {            background: white;            padding: 30px;            border-radius: 15px;            box-shadow: 0 5px 20px rgba(0,0,0,0.05);        }        .input-group {            margin-bottom: 25px;        }        .input-group label {            display: block;            margin-bottom: 8px;            font-weight: 600;            color: #333;            font-size: 14px;        }        .input-group input,        .input-group select {            width: 100%;            padding: 12px 15px;            border: 2px solid #e0e0e0;            border-radius: 8px;            font-size: 16px;            transition: all 0.3s ease;        }        .input-group input:focus,        .input-group select:focus {            outline: none;            border-color: #2a5298;            box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);        }        .jet-selector {            display: grid;            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));            gap: 15px;            margin-top: 10px;        }        .jet-option {            padding: 15px;            border: 2px solid #e0e0e0;            border-radius: 10px;            cursor: pointer;            transition: all 0.3s ease;            text-align: center;            background: white;        }        .jet-option:hover {            border-color: #2a5298;            transform: translateY(-2px);            box-shadow: 0 5px 15px rgba(0,0,0,0.1);        }        .jet-option.selected {            background: #2a5298;            color: white;            border-color: #2a5298;        }        .jet-option h4 {            font-size: 16px;            margin-bottom: 5px;        }        .jet-option p {            font-size: 12px;            opacity: 0.8;        }        .calculate-button {            width: 100%;            padding: 15px;            background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);            color: white;            border: none;            border-radius: 10px;            font-size: 18px;            font-weight: 600;            cursor: pointer;            transition: all 0.3s ease;            margin-top: 20px;        }        .calculate-button:hover {            transform: translateY(-2px);            box-shadow: 0 10px 25px rgba(0,0,0,0.2);        }        .results-section {            background: white;            padding: 30px;            border-radius: 15px;            box-shadow: 0 5px 20px rgba(0,0,0,0.05);            display: none;        }        .results-section.active {            display: block;            animation: fadeIn 0.5s ease;        }        @keyframes fadeIn {            from { opacity: 0; transform: translateY(20px); }            to { opacity: 1; transform: translateY(0); }        }        .result-item {            padding: 20px;            margin-bottom: 15px;            background: #f8f9fa;            border-radius: 10px;            border-left: 5px solid #2a5298;        }        .result-item h3 {            color: #2a5298;            margin-bottom: 10px;            font-size: 18px;        }        .result-grid {            display: grid;            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));            gap: 15px;            margin-top: 15px;        }        .result-stat {            text-align: center;            padding: 15px;            background: white;            border-radius: 8px;            box-shadow: 0 2px 10px rgba(0,0,0,0.05);        }        .result-stat-value {            font-size: 28px;            font-weight: 700;            color: #2a5298;            margin-bottom: 5px;        }        .result-stat-label {            font-size: 14px;            color: #666;        }        .warning-message {            padding: 15px;            background: #fff3cd;            border: 1px solid #ffeaa7;            border-radius: 8px;            margin-top: 15px;            display: none;        }        .warning-message.active {            display: block;        }        .warning-message p {            color: #856404;            font-size: 14px;        }        .success-message {            padding: 15px;            background: #d4edda;            border: 1px solid #c3e6cb;            border-radius: 8px;            margin-top: 15px;            display: none;        }        .success-message.active {            display: block;        }        .success-message p {            color: #155724;            font-size: 14px;        }        .route-visualization {            margin-top: 30px;            padding: 20px;            background: #f8f9fa;            border-radius: 10px;            text-align: center;        }        .route-line {            display: flex;            align-items: center;            justify-content: center;            margin: 20px 0;        }        .route-point {            padding: 10px 20px;            background: #2a5298;            color: white;            border-radius: 25px;            font-weight: 600;        }        .route-arrow {            width: 100px;            height: 2px;            background: #2a5298;            margin: 0 20px;            position: relative;        }        .route-arrow::after {            content: '';            position: absolute;            right: 0;            top: -4px;            width: 0;            height: 0;            border-left: 10px solid #2a5298;            border-top: 5px solid transparent;            border-bottom: 5px solid transparent;        }        .aircraft-comparison {            margin-top: 30px;        }        .comparison-table {            width: 100%;            border-collapse: collapse;            margin-top: 20px;        }        .comparison-table th,        .comparison-table td {            padding: 12px;            text-align: left;            border-bottom: 1px solid #e0e0e0;        }        .comparison-table th {            background: #f8f9fa;            font-weight: 600;            color: #333;        }        .comparison-table tr:hover {            background: #f8f9fa;        }        .feasible {            color: #28a745;            font-weight: 600;        }        .not-feasible {            color: #dc3545;            font-weight: 600;        }        .with-stop {            color: #ffc107;            font-weight: 600;        }    <\/style><body data-rsssl=1 data-rsssl=1 data-rsssl=1 data-rsssl=1 data-rsssl=1 data-rsssl=1 data-rsssl=1>    <div class=\"jet-calculator-container\">        <div class=\"calculator-header\">            <h2>U\u00e7ak Kiralama Fiyat Hesaplama Arac\u0131 ve Rota Planlama<\/h2>            <p>U\u00e7u\u015f rotan\u0131z\u0131 planlay\u0131n ve size uygun jeti se\u00e7in<\/p>        <\/div>        <div class=\"calculator-grid\">            <div class=\"input-section\">                <h3 style=\"margin-bottom: 20px; color: #2a5298;\">U\u00e7u\u015f Bilgileri<\/h3>                                <div class=\"input-group\">                    <label for=\"departure\">Kalk\u0131\u015f Noktas\u0131<\/label>                    <select id=\"departure\">                        <option value=\"\">\u015eehir Se\u00e7in<\/option>                        <option value=\"IST\">\u0130stanbul (IST)<\/option>                        <option value=\"SAW\">\u0130stanbul Sabiha G\u00f6k\u00e7en (SAW)<\/option>                        <option value=\"ESB\">Ankara (ESB)<\/option>                        <option value=\"ADB\">\u0130zmir (ADB)<\/option>                        <option value=\"AYT\">Antalya (AYT)<\/option>                        <option value=\"BJV\">Bodrum (BJV)<\/option>                        <option value=\"DLM\">Dalaman (DLM)<\/option>                        <option value=\"TZX\">Trabzon (TZX)<\/option>                        <option value=\"ADA\">Adana (ADA)<\/option>                        <option value=\"GZT\">Gaziantep (GZT)<\/option>                        <option value=\"ECN\">KKTC Ercan (ECN)<\/option>                    <\/select>                <\/div>                <div class=\"input-group\">                    <label for=\"destination\">Var\u0131\u015f Noktas\u0131<\/label>                    <select id=\"destination\">                        <option value=\"\">\u015eehir Se\u00e7in<\/option>                        <optgroup label=\"T\u00fcrkiye\">                            <option value=\"IST\">\u0130stanbul (IST)<\/option>                            <option value=\"ESB\">Ankara (ESB)<\/option>                            <option value=\"ADB\">\u0130zmir (ADB)<\/option>                            <option value=\"AYT\">Antalya (AYT)<\/option>                            <option value=\"BJV\">Bodrum (BJV)<\/option>                            <option value=\"DLM\">Dalaman (DLM)<\/option>                        <\/optgroup>                        <optgroup label=\"Avrupa\">                            <option value=\"LHR\">Londra (LHR)<\/option>                            <option value=\"CDG\">Paris (CDG)<\/option>                            <option value=\"FRA\">Frankfurt (FRA)<\/option>                            <option value=\"AMS\">Amsterdam (AMS)<\/option>                            <option value=\"FCO\">Roma (FCO)<\/option>                            <option value=\"ATH\">Atina (ATH)<\/option>                            <option value=\"VIE\">Viyana (VIE)<\/option>                            <option value=\"ZRH\">Z\u00fcrih (ZRH)<\/option>                            <option value=\"NCE\">Nice (NCE)<\/option>                            <option value=\"BCN\">Barselona (BCN)<\/option>                            <option value=\"MAD\">Madrid (MAD)<\/option>                            <option value=\"MUC\">M\u00fcnih (MUC)<\/option>                        <\/optgroup>                        <optgroup label=\"Orta Do\u011fu\">                            <option value=\"DXB\">Dubai (DXB)<\/option>                            <option value=\"DOH\">Doha (DOH)<\/option>                            <option value=\"RUH\">Riyad (RUH)<\/option>                            <option value=\"TLV\">Tel Aviv (TLV)<\/option>                            <option value=\"CAI\">Kahire (CAI)<\/option>                            <option value=\"AMM\">Amman (AMM)<\/option>                        <\/optgroup>                        <optgroup label=\"Di\u011fer\">                            <option value=\"SVO\">Moskova (SVO)<\/option>                            <option value=\"KBP\">Kiev (KBP)<\/option>                            <option value=\"GYD\">Bak\u00fc (GYD)<\/option>                            <option value=\"TBS\">Tiflis (TBS)<\/option>                        <\/optgroup>                    <\/select>                <\/div>                <div class=\"input-group\">                    <label for=\"passengers\">Yolcu Say\u0131s\u0131<\/label>                    <input type=\"number\" id=\"passengers\" min=\"1\" max=\"19\" value=\"4\" placeholder=\"Yolcu say\u0131s\u0131n\u0131 girin\">                <\/div>                <div class=\"input-group\">                    <label for=\"baggage\">Bagaj A\u011f\u0131rl\u0131\u011f\u0131 (kg)<\/label>                    <input type=\"number\" id=\"baggage\" min=\"0\" max=\"2000\" value=\"100\" placeholder=\"Toplam bagaj a\u011f\u0131rl\u0131\u011f\u0131\">                <\/div>            <\/div>            <div class=\"input-section\">                <h3 style=\"margin-bottom: 20px; color: #2a5298;\">Jet Se\u00e7imi<\/h3>                                <div class=\"jet-selector\">                    <div class=\"jet-option\" data-jet=\"citation-cj4\">                        <h4>Citation CJ4<\/h4>                        <p>7-10 ki\u015fi \u2022 4,010 km<\/p>                    <\/div>                    <div class=\"jet-option\" data-jet=\"phenom-300\">                        <h4>Phenom 300<\/h4>                        <p>6-11 ki\u015fi \u2022 3,723 km<\/p>                    <\/div>                    <div class=\"jet-option\" data-jet=\"hawker-400xp\">                        <h4>Hawker 400XP<\/h4>                        <p>6-8 ki\u015fi \u2022 2,900 km<\/p>                    <\/div>                    <div class=\"jet-option\" data-jet=\"learjet-75\">                        <h4>Learjet 75<\/h4>                        <p>8-9 ki\u015fi \u2022 3,770 km<\/p>                    <\/div>                    <div class=\"jet-option\" data-jet=\"challenger-350\">                        <h4>Challenger 350<\/h4>                        <p>8-10 ki\u015fi \u2022 5,926 km<\/p>                    <\/div>                    <div class=\"jet-option\" data-jet=\"gulfstream-g280\">                        <h4>Gulfstream G280<\/h4>                        <p>8-10 ki\u015fi \u2022 6,667 km<\/p>                    <\/div>                    <div class=\"jet-option\" data-jet=\"legacy-650\">                        <h4>Legacy 650<\/h4>                        <p>13-14 ki\u015fi \u2022 7,223 km<\/p>                    <\/div>                    <div class=\"jet-option\" data-jet=\"global-6000\">                        <h4>Global 6000<\/h4>                        <p>13-17 ki\u015fi \u2022 11,112 km<\/p>                    <\/div>                <\/div>                <button class=\"calculate-button\" onclick=\"calculateRoute()\">                    Rota Hesapla                <\/button>            <\/div>        <\/div>        <div class=\"results-section\" id=\"results\">            <h3 style=\"margin-bottom: 20px; color: #2a5298;\">U\u00e7u\u015f Analizi<\/h3>                        <div class=\"route-visualization\">                <div class=\"route-line\">                    <div class=\"route-point\" id=\"route-from\">-<\/div>                    <div class=\"route-arrow\"><\/div>                    <div class=\"route-point\" id=\"route-to\">-<\/div>                <\/div>                <p id=\"route-distance\" style=\"color: #666; margin-top: 10px;\">-<\/p>            <\/div>            <div class=\"result-grid\">                <div class=\"result-stat\">                    <div class=\"result-stat-value\" id=\"flight-distance\">-<\/div>                    <div class=\"result-stat-label\">U\u00e7u\u015f Mesafesi<\/div>                <\/div>                <div class=\"result-stat\">                    <div class=\"result-stat-value\" id=\"flight-time\">-<\/div>                    <div class=\"result-stat-label\">Tahmini U\u00e7u\u015f S\u00fcresi<\/div>                <\/div>                <div class=\"result-stat\">                    <div class=\"result-stat-value\" id=\"fuel-consumption\">-<\/div>                    <div class=\"result-stat-label\">Yak\u0131t T\u00fcketimi<\/div>                <\/div>                <div class=\"result-stat\">                    <div class=\"result-stat-value\" id=\"estimated-cost\">-<\/div>                    <div class=\"result-stat-label\">Tahmini Maliyet<\/div>                <\/div>            <\/div>            <div class=\"warning-message\" id=\"warning-message\">                <p>\u26a0\ufe0f Se\u00e7ti\u011finiz jet bu rota i\u00e7in yeterli menzile sahip de\u011fil. Teknik ini\u015f gerekebilir.<\/p>            <\/div>            <div class=\"success-message\" id=\"success-message\">                <p>\u2705 Se\u00e7ti\u011finiz jet bu rota i\u00e7in uygundur. Direkt u\u00e7u\u015f yap\u0131labilir.<\/p>            <\/div>            <div class=\"aircraft-comparison\">                <h4 style=\"margin-bottom: 15px; color: #2a5298;\">T\u00fcm Jetler \u0130\u00e7in Uygunluk Analizi<\/h4>                <table class=\"comparison-table\">                    <thead>                        <tr>                            <th>Jet Modeli<\/th>                            <th>Menzil (km)<\/th>                            <th>Uygunluk<\/th>                            <th>Tahmini S\u00fcre<\/th>                            <th>Tahmini Fiyat<\/th>                        <\/tr>                    <\/thead>                    <tbody id=\"comparison-tbody\">                        <!-- JavaScript ile doldurulacak -->                    <\/tbody>                <\/table>            <\/div>        <\/div>    <\/div>    <script>        \/\/ Havaalan\u0131 koordinatlar\u0131 ve mesafe veritaban\u0131        const airports = {            \/\/ T\u00fcrkiye            'IST': { name: '\u0130stanbul', lat: 41.2753, lon: 28.7519 },            'SAW': { name: '\u0130stanbul Sabiha G\u00f6k\u00e7en', lat: 40.8986, lon: 29.3092 },            'ESB': { name: 'Ankara', lat: 40.1281, lon: 32.9951 },            'ADB': { name: '\u0130zmir', lat: 38.2924, lon: 27.1570 },            'AYT': { name: 'Antalya', lat: 36.8987, lon: 30.8005 },            'BJV': { name: 'Bodrum', lat: 37.2506, lon: 27.6643 },            'DLM': { name: 'Dalaman', lat: 36.7131, lon: 28.7925 },            'TZX': { name: 'Trabzon', lat: 40.9951, lon: 39.7897 },            'ADA': { name: 'Adana', lat: 36.9822, lon: 35.2804 },            'GZT': { name: 'Gaziantep', lat: 36.9472, lon: 37.4786 },            'ECN': { name: 'KKTC Ercan', lat: 35.1547, lon: 33.4961 },                        \/\/ Avrupa            'LHR': { name: 'Londra', lat: 51.4700, lon: -0.4543 },            'CDG': { name: 'Paris', lat: 49.0097, lon: 2.5479 },            'FRA': { name: 'Frankfurt', lat: 50.0379, lon: 8.5622 },            'AMS': { name: 'Amsterdam', lat: 52.3105, lon: 4.7683 },            'FCO': { name: 'Roma', lat: 41.8003, lon: 12.2389 },            'ATH': { name: 'Atina', lat: 37.9364, lon: 23.9445 },            'VIE': { name: 'Viyana', lat: 48.1103, lon: 16.5697 },            'ZRH': { name: 'Z\u00fcrih', lat: 47.4647, lon: 8.5492 },            'NCE': { name: 'Nice', lat: 43.6584, lon: 7.2158 },            'BCN': { name: 'Barselona', lat: 41.2971, lon: 2.0785 },            'MAD': { name: 'Madrid', lat: 40.4983, lon: -3.5676 },            'MUC': { name: 'M\u00fcnih', lat: 48.3537, lon: 11.7751 },                        \/\/ Orta Do\u011fu            'DXB': { name: 'Dubai', lat: 25.2532, lon: 55.3657 },            'DOH': { name: 'Doha', lat: 25.2731, lon: 51.6081 },            'RUH': { name: 'Riyad', lat: 24.9576, lon: 46.6989 },            'TLV': { name: 'Tel Aviv', lat: 32.0114, lon: 34.8867 },            'CAI': { name: 'Kahire', lat: 30.1219, lon: 31.4056 },            'AMM': { name: 'Amman', lat: 31.7226, lon: 35.9932 },                        \/\/ Di\u011fer            'SVO': { name: 'Moskova', lat: 55.9726, lon: 37.4146 },            'KBP': { name: 'Kiev', lat: 50.3450, lon: 30.8947 },            'GYD': { name: 'Bak\u00fc', lat: 40.4675, lon: 50.0467 },            'TBS': { name: 'Tiflis', lat: 41.6692, lon: 44.9547 }        };        \/\/ Jet \u00f6zellikleri        const jets = {            'citation-cj4': {                name: 'Citation CJ4',                range: 4010,                cruiseSpeed: 787,                passengers: { min: 7, max: 10 },                hourlyRate: 3800,                fuelConsumption: 160            },            'phenom-300': {                name: 'Phenom 300',                range: 3723,                cruiseSpeed: 789,                passengers: { min: 6, max: 11 },                hourlyRate: 3500,                fuelConsumption: 145            },            'hawker-400xp': {                name: 'Hawker 400XP',                range: 2900,                cruiseSpeed: 760,                passengers: { min: 6, max: 8 },                hourlyRate: 3200,                fuelConsumption: 155            },            'learjet-75': {                name: 'Learjet 75',                range: 3770,                cruiseSpeed: 860,                passengers: { min: 8, max: 9 },                hourlyRate: 3900,                fuelConsumption: 170            },            'challenger-350': {                name: 'Challenger 350',                range: 5926,                cruiseSpeed: 850,                passengers: { min: 8, max: 10 },                hourlyRate: 4800,                fuelConsumption: 200            },            'gulfstream-g280': {                name: 'Gulfstream G280',                range: 6667,                cruiseSpeed: 850,                passengers: { min: 8, max: 10 },                hourlyRate: 5200,                fuelConsumption: 210            },            'legacy-650': {                name: 'Legacy 650',                range: 7223,                cruiseSpeed: 850,                passengers: { min: 13, max: 14 },                hourlyRate: 5800,                fuelConsumption: 250            },            'global-6000': {                name: 'Global 6000',                range: 11112,                cruiseSpeed: 890,                passengers: { min: 13, max: 17 },                hourlyRate: 7500,                fuelConsumption: 310            }        };        \/\/ Jet se\u00e7imi        document.querySelectorAll('.jet-option').forEach(option => {            option.addEventListener('click', function() {                document.querySelectorAll('.jet-option').forEach(opt => opt.classList.remove('selected'));                this.classList.add('selected');            });        });        \/\/ Mesafe hesaplama (Haversine form\u00fcl\u00fc)        function calculateDistance(lat1, lon1, lat2, lon2) {            const R = 6371; \/\/ D\u00fcnya yar\u0131\u00e7ap\u0131 (km)            const dLat = (lat2 - lat1) * Math.PI \/ 180;            const dLon = (lon2 - lon1) * Math.PI \/ 180;            const a = Math.sin(dLat\/2) * Math.sin(dLat\/2) +                    Math.cos(lat1 * Math.PI \/ 180) * Math.cos(lat2 * Math.PI \/ 180) *                    Math.sin(dLon\/2) * Math.sin(dLon\/2);            const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));            return R * c;        }        \/\/ Rota hesaplama        function calculateRoute() {            const departure = document.getElementById('departure').value;            const destination = document.getElementById('destination').value;            const passengers = parseInt(document.getElementById('passengers').value);            const baggage = parseInt(document.getElementById('baggage').value);            const selectedJet = document.querySelector('.jet-option.selected');            \/\/ Validasyon            if (!departure || !destination) {                alert('L\u00fctfen kalk\u0131\u015f ve var\u0131\u015f noktalar\u0131n\u0131 se\u00e7in.');                return;            }            if (!selectedJet) {                alert('L\u00fctfen bir jet se\u00e7in.');                return;            }            if (departure === destination) {                alert('Kalk\u0131\u015f ve var\u0131\u015f noktalar\u0131 ayn\u0131 olamaz.');                return;            }            \/\/ Mesafe hesapla            const dep = airports[departure];            const dest = airports[destination];            const distance = calculateDistance(dep.lat, dep.lon, dest.lat, dest.lon);                        \/\/ Se\u00e7ili jet bilgileri            const jetKey = selectedJet.dataset.jet;            const jet = jets[jetKey];            \/\/ Sonu\u00e7lar\u0131 g\u00f6ster            document.getElementById('results').classList.add('active');                        \/\/ Rota g\u00f6rselle\u015ftirme            document.getElementById('route-from').textContent = dep.name;            document.getElementById('route-to').textContent = dest.name;            document.getElementById('route-distance').textContent = `Toplam Mesafe: ${Math.round(distance)} km`;            \/\/ Temel hesaplamalar            const flightTime = distance \/ jet.cruiseSpeed;            const fuelConsumption = flightTime * jet.fuelConsumption;            const estimatedCost = Math.ceil(flightTime * jet.hourlyRate);            \/\/ Sonu\u00e7lar\u0131 doldur            document.getElementById('flight-distance').textContent = `${Math.round(distance)} km`;            document.getElementById('flight-time').textContent = `${Math.floor(flightTime)}s ${Math.round((flightTime % 1) * 60)}d`;            document.getElementById('fuel-consumption').textContent = `${Math.round(fuelConsumption)} galon`;            document.getElementById('estimated-cost').textContent = `\u20ac${estimatedCost.toLocaleString('tr-TR')}`;            \/\/ Uygunluk kontrol\u00fc            const warningMsg = document.getElementById('warning-message');            const successMsg = document.getElementById('success-message');                        if (distance > jet.range) {                warningMsg.classList.add('active');                successMsg.classList.remove('active');            } else {                successMsg.classList.add('active');                warningMsg.classList.remove('active');            }            \/\/ Yolcu kapasitesi kontrol\u00fc            if (passengers < jet.passengers.min || passengers > jet.passengers.max) {                alert(`${jet.name} ${jet.passengers.min}-${jet.passengers.max} yolcu kapasitesine sahiptir. L\u00fctfen uygun bir jet se\u00e7in.`);            }            \/\/ T\u00fcm jetler i\u00e7in kar\u015f\u0131la\u015ft\u0131rma tablosu            const tbody = document.getElementById('comparison-tbody');            tbody.innerHTML = '';            Object.entries(jets).forEach(([key, jetData]) => {                const row = document.createElement('tr');                const jetFlightTime = distance \/ jetData.cruiseSpeed;                const jetCost = Math.ceil(jetFlightTime * jetData.hourlyRate);                                let feasibility = '';                let feasibilityClass = '';                                if (distance <= jetData.range) {                    feasibility = 'Direkt U\u00e7u\u015f';                    feasibilityClass = 'feasible';                } else if (distance <= jetData.range * 1.8) {                    feasibility = '1 Teknik \u0130ni\u015f';                    feasibilityClass = 'with-stop';                } else {                    feasibility = 'Uygun De\u011fil';                    feasibilityClass = 'not-feasible';                }                row.innerHTML = `                    <td>${jetData.name}<\/td>                    <td>${jetData.range.toLocaleString('tr-TR')} km<\/td>                    <td class=\"${feasibilityClass}\">${feasibility}<\/td>                    <td>${Math.floor(jetFlightTime)}s ${Math.round((jetFlightTime % 1) * 60)}d<\/td>                    <td>\u20ac${jetCost.toLocaleString('tr-TR')}<\/td>                `;                                tbody.appendChild(row);            });        }        \/\/ Sayfa y\u00fcklendi\u011finde \u00f6rnek de\u011ferler        window.addEventListener('load', function() {            \/\/ \u00d6rnek olarak Citation CJ4'\u00fc se\u00e7            document.querySelector('[data-jet=\"citation-cj4\"]').click();        });    <\/script><\/body><\/html><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bd8ec1b elementor-widget elementor-widget-heading\" data-id=\"bd8ec1b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Aircraft Charter (Private Jet) Price Calculation Guide<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-eff4d86 elementor-widget elementor-widget-text-editor\" data-id=\"eff4d86\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<h3>The Importance of Aircraft Chartering and Pricing<\/h3>\n<p>Private aircraft chartering offers unparalleled flexibility, time savings and comfort when travelling. Whether it&#8217;s a business trip, a holiday or an emergency journey, chartering a private jet gives you complete control over your schedule. However, aircraft charter prices can vary depending on numerous factors, which can make costs appear complex. Transparent pricing is critical for customers to make informed decisions. This guide has been prepared to help you understand aircraft charter costs and find the most suitable option.<\/p>\n<h3>Key Factors Affecting Aircraft Charter Prices<\/h3>\n<p>Aircraft charter costs are determined by a number of variables. Here are the key factors that determine prices:<\/p>\n<ul class=\"tight\" dir=\"ltr\" data-tight=\"true\">\n<li>\n<p dir=\"ltr\">Aircraft Type and Capacity: There are significant price differences between light jets, medium jets and heavy jets. For example, light jets with a capacity of 4-6 passengers are more economical for short-haul flights, but heavy jets are preferred for long-haul flights. The range and comfort level of the aircraft also directly affect the cost.<\/p>\n<\/li>\n<li>\n<p dir=\"ltr\">Flight Distance and Duration: The distance between departure and arrival points determines flight duration and, consequently, cost. Long-haul flights require more fuel and time.<\/p>\n<\/li>\n<li>\n<p dir=\"ltr\">Number of Passengers: The number of passengers determines the appropriate aircraft type. More passengers require a larger aircraft, which can increase costs.<\/p>\n<\/li>\n<li>\n<p dir=\"ltr\">Departure and Arrival Airports: Some airports charge high landing\/take-off fees or slot fees. Busy airports in large cities are generally more expensive.<\/p>\n<\/li>\n<li>\n<p dir=\"ltr\">Crew Expenses: Pilots&#8217; and cabin crew&#8217;s salaries, accommodation and other expenses are reflected in the price. Additional crew may be required for long flights.<\/p>\n<\/li>\n<li>\n<p dir=\"ltr\">Fuel Costs: Fuel consumption varies depending on the type of aircraft and flight route. Fuel costs increase for long-haul flights or flights with multiple stops.<\/p>\n<\/li>\n<li>\n<p dir=\"ltr\">Maintenance and Insurance Costs: Regular maintenance and insurance costs for the aircraft are included in the rental price and are critical to maintaining safety standards.<\/p>\n<\/li>\n<li>\n<p dir=\"ltr\">Additional Services and Special Requests: Services such as VIP lounge access, special refreshments, ground transfers or pet transport incur additional costs.<\/p>\n<\/li>\n<li>\n<p dir=\"ltr\">Seasonal and Regional Variations: Peak seasons (summer holidays, public holidays) or special events (festivals, sporting events) may cause fluctuations in prices.<\/p>\n<\/li>\n<li>\n<p dir=\"ltr\">Empty Leg Flights: These flights, offered on routes where aircraft return empty after their previous flight, can reduce costs by up to 50%.<\/p>\n<\/li>\n<\/ul>\n<p dir=\"ltr\">Price Calculation Process: Step-by-Step Guide<\/p>\n<p>The following steps are followed to accurately calculate the price of aircraft charter:<\/p>\n<ol>\n<li>Information Gathering: Information such as departure and arrival points, travel dates, number of passengers, preferred aircraft type and special requests are obtained from the customer.<\/li>\n<li>Flight Planning: Flight routes, airport options and suitable aircraft types are determined.<\/li>\n<li>Cost Calculation: A detailed price quote is prepared taking into account fuel, crew, airport fees and additional services<\/li>\n<li>Offer Presentation: The offer is presented to the customer with all items clearly specified.<\/li>\n<li>Approval and Reservation: The reservation is completed with the customer&#8217;s approval and the necessary arrangements are made.<\/li>\n<\/ol>\n<p>Our commitment to transparent pricing ensures that you receive the most accurate information without any hidden fees.<\/p>\n<p>Tips for Optimising Costs<\/p>\n<p>You can consider the following strategies to reduce aircraft charter costs:<\/p>\n<ul class=\"tight\" dir=\"ltr\" data-tight=\"true\">\n<li>\n<p dir=\"ltr\">Flexible Travel Dates: You can get better prices by travelling during less busy periods.<\/p>\n<\/li>\n<li>\n<p dir=\"ltr\">Empty Leg Flights: You can save significantly by taking advantage of empty leg flights.<\/p>\n<\/li>\n<li>\n<p dir=\"ltr\">Choosing the Right Aircraft: Avoid unnecessary costs by selecting an aircraft with the capacity that suits your needs.<\/p>\n<\/li>\n<li>\n<p dir=\"ltr\">Early Booking: Early booking increases flight availability and offers price advantages.<\/p>\n<\/li>\n<\/ul>\n<h2>Frequently Asked Questions (FAQ)<\/h2>\n<h3>How long does it take to charter a plane?<\/h3>\n<p>The reservation process can be completed within a few hours, depending on your request. Flight planning and approval usually takes 24-48 hours.<\/p>\n<h3 dir=\"ltr\">Are emergency rentals possible?<\/h3>\n<p dir=\"ltr\">Yes, we offer fast rental services for emergencies. We can make arrangements as soon as possible when you contact us.<\/p>\n<h3 dir=\"ltr\">What are the payment options?<\/h3>\n<p dir=\"ltr\">We accept credit cards, bank transfers and other secure payment methods. Details will be shared during the quotation process.<\/p>\n<h3>What are the cancellation and change conditions?<\/h3>\n<p>Our cancellation and change policies are flexible, but the conditions are specified in detail in the reservation agreement.<\/p>\n<p>Private jet charter offers you time, comfort and flexibility. With our transparent pricing and professional service approach, we aim to provide you with the most suitable solution for your needs. To learn more about jet charter prices or request a customised quote, you can fill out the contact form below or reach out to us directly.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>U\u00e7ak Kiralama Fiyat Hesaplama Arac\u0131 ve Rota Planlama U\u00e7u\u015f rotan\u0131z\u0131 planlay\u0131n ve size uygun jeti se\u00e7in U\u00e7u\u015f Bilgileri Kalk\u0131\u015f Noktas\u0131 \u015eehir Se\u00e7in\u0130stanbul (IST)\u0130stanbul Sabiha G\u00f6k\u00e7en (SAW)Ankara (ESB)\u0130zmir (ADB)Antalya (AYT)Bodrum (BJV)Dalaman (DLM)Trabzon (TZX)Adana (ADA)Gaziantep (GZT)KKTC Ercan (ECN) Var\u0131\u015f Noktas\u0131 \u015eehir Se\u00e7in\u0130stanbul (IST)Ankara (ESB)\u0130zmir (ADB)Antalya (AYT)Bodrum (BJV)Dalaman (DLM) Londra (LHR)Paris (CDG)Frankfurt (FRA)Amsterdam (AMS)Roma (FCO)Atina (ATH)Viyana (VIE)Z\u00fcrih (ZRH)Nice [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-13156","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/virajet.com\/en\/wp-json\/wp\/v2\/pages\/13156","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virajet.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/virajet.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/virajet.com\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/virajet.com\/en\/wp-json\/wp\/v2\/comments?post=13156"}],"version-history":[{"count":0,"href":"https:\/\/virajet.com\/en\/wp-json\/wp\/v2\/pages\/13156\/revisions"}],"wp:attachment":[{"href":"https:\/\/virajet.com\/en\/wp-json\/wp\/v2\/media?parent=13156"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}