Cebu Pacific Cargo Rates Calculator

Cebu Pacific Cargo Rates Calculator .ceb-calculator-container { max-width: 800px; margin: 0 auto; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; border: 1px solid #e0e0e0; border-radius: 8px; background-color: #f9f9f9; box-shadow: 0 4px 6px rgba(0,0,0,0.1); } .ceb-header { background-color: #ffd100; /* Cebu Pacific Yellow */ color: #005b8e; /* Cebu Pacific Blue */ padding: 20px; border-top-left-radius: 8px; border-top-right-radius: 8px; text-align: center; } .ceb-header h2 { margin: 0; font-size: 24px; font-weight: 700; } .ceb-body { padding: 25px; } .ceb-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 15px; } .ceb-col { flex: 1; min-width: 200px; } .ceb-label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; font-size: 14px; } .ceb-input, .ceb-select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .ceb-input:focus, .ceb-select:focus { border-color: #005b8e; outline: none; } .ceb-dimensions-group { display: flex; gap: 10px; } .ceb-dim-input { width: 33%; } .ceb-btn { background-color: #005b8e; color: white; border: none; padding: 15px 30px; font-size: 18px; font-weight: bold; border-radius: 4px; cursor: pointer; width: 100%; transition: background-color 0.3s; margin-top: 10px; } .ceb-btn:hover { background-color: #00406b; } .ceb-result { margin-top: 25px; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; padding: 20px; display: none; } .ceb-result-header { border-bottom: 2px solid #ffd100; padding-bottom: 10px; margin-bottom: 15px; font-size: 18px; color: #005b8e; font-weight: bold; } .ceb-detail-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 15px; } .ceb-total-row { display: flex; justify-content: space-between; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; font-size: 20px; font-weight: bold; color: #d32f2f; } .ceb-note { font-size: 12px; color: #666; margin-top: 15px; font-style: italic; } .ceb-article { max-width: 800px; margin: 40px auto; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; } .ceb-article h2 { color: #005b8e; margin-top: 30px; } .ceb-article h3 { color: #333; border-left: 4px solid #ffd100; padding-left: 10px; } .ceb-article ul { background-color: #f0f7fb; padding: 20px 40px; border-radius: 6px; } .ceb-article p { margin-bottom: 15px; }

Cebu Pacific Cargo Rates Estimator

Manila (MNL) Cebu (CEB) Davao (DVO) Iloilo (ILO) Puerto Princesa (PPS)
Cebu (CEB) Manila (MNL) Davao (DVO) Iloilo (ILO) General Santos (GES) Tacloban (TAC) Zamboanga (ZAM)
General Cargo (Dry) Perishable Goods Live Animals / Dangerous Goods Valuable Cargo
Estimated Quotation Details
Actual Weight: 0 kg
Volumetric Weight (Divisor 3500): 0 kg
Chargeable Weight: 0 kg

Base Freight Rate (approx.): ₱ 0.00
Fuel Surcharge (~15%): ₱ 0.00
Valuation Charge (Insurance): ₱ 0.00
AWB / Handling Fee: ₱ 0.00
VAT (12%): ₱ 0.00
TOTAL ESTIMATED COST: ₱ 0.00
* This calculator is for estimation purposes only based on standard domestic air freight computations in the Philippines. Actual Cebu Pacific Cargo rates may vary depending on spot rates, specific AWB fees, and terminal charges. The volumetric divisor used is 3500 (Domestic Standard).
function calculateCargoRate() { // 1. Get Inputs var origin = document.getElementById('origin').value; var destination = document.getElementById('destination').value; var actualWeight = parseFloat(document.getElementById('actualWeight').value); var length = parseFloat(document.getElementById('length').value); var width = parseFloat(document.getElementById('width').value); var height = parseFloat(document.getElementById('height').value); var declaredValue = parseFloat(document.getElementById('declaredValue').value); var commodityMultiplier = parseFloat(document.getElementById('commodity').value); // 2. Validate Inputs if (isNaN(actualWeight) || actualWeight <= 0) { alert("Please enter a valid Actual Weight."); return; } if (isNaN(declaredValue)) { declaredValue = 0; // Optional, assume 0 if empty } // Handle dimensions if empty, assume 0 volume if (isNaN(length)) length = 0; if (isNaN(width)) width = 0; if (isNaN(height)) height = 0; // 3. Logic: Volumetric Weight // Domestic PH Air Freight often uses divisor 3500 for cm var volWeight = (length * width * height) / 3500; // 4. Logic: Chargeable Weight var chargeableWeight = Math.max(actualWeight, volWeight); // Round up to nearest 0.5 or 1 is standard, let's stick to simple math for now, just ceil to nearest 1kg for pricing safety chargeableWeight = Math.ceil(chargeableWeight); // 5. Logic: Determine Base Rate (Simulated Matrix) // In a real scenario, this fetches from an API. Here we simulate typical domestic zones. var ratePerKg = 0; // Simple logic for simulation: // Intra-Visayas/Mindanao or Short Range: ~25-30 // Manila to Vis/Min (Long Range): ~40-60 if ((origin === 'MNL' && (destination === 'CEB' || destination === 'ILO')) || (origin === 'CEB' && destination === 'MNL')) { ratePerKg = 35; } else if ((origin === 'MNL' && (destination === 'DVO' || destination === 'GES' || destination === 'ZAM')) || (destination === 'MNL' && (origin === 'DVO' || origin === 'GES' || origin === 'ZAM'))) { ratePerKg = 55; } else if (origin === destination) { alert("Origin and Destination cannot be the same."); return; } else { // Default inter-island rate ratePerKg = 45; } // Apply Commodity Multiplier (e.g., Perishables are more expensive) ratePerKg = ratePerKg * commodityMultiplier; // Calculate Base Freight var baseFreight = chargeableWeight * ratePerKg; // Minimum Freight Charge (Standard carrier minimum, e.g., 300 PHP) if (baseFreight < 300) { baseFreight = 300; } // 6. Logic: Add-ons // Fuel Surcharge: varies monthly, estimated at 18% of base freight var fuelSurcharge = baseFreight * 0.18; // Valuation Charge: usually 0.75% to 1% of declared value, minimum ~20 PHP var valuationCharge = declaredValue * 0.0075; if (valuationCharge 0) valuationCharge = 20; // AWB / Handling Fee (Fixed) var handlingFee = 150; // 7. Logic: VAT // VAT is usually 12% of (Base + Fuel + Handling + Valuation) var subTotal = baseFreight + fuelSurcharge + valuationCharge + handlingFee; var vat = subTotal * 0.12; var totalCost = subTotal + vat; // 8. Output Display document.getElementById('resActual').innerText = actualWeight.toFixed(2) + " kg"; document.getElementById('resVolume').innerText = volWeight.toFixed(2) + " kg"; document.getElementById('resChargeable').innerText = chargeableWeight.toFixed(2) + " kg"; document.getElementById('resBaseRate').innerText = "₱ " + baseFreight.toLocaleString('en-PH', {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resFuel').innerText = "₱ " + fuelSurcharge.toLocaleString('en-PH', {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resValuation').innerText = "₱ " + valuationCharge.toLocaleString('en-PH', {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resHandling').innerText = "₱ " + handlingFee.toLocaleString('en-PH', {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resVat').innerText = "₱ " + vat.toLocaleString('en-PH', {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resTotal').innerText = "₱ " + totalCost.toLocaleString('en-PH', {minimumFractionDigits: 2, maximumFractionDigits: 2}); // Show result area document.getElementById('resultsArea').style.display = "block"; }

Understanding Cebu Pacific Cargo Rates: A Comprehensive Guide

When shipping logistics in the Philippines, Cebu Pacific Cargo (often referred to as CEB Cargo) is a top choice due to its extensive domestic network and frequency of flights. However, calculating the shipping cost is not as simple as multiplying weight by a price tag. Several factors, including volumetric weight, commodity type, and auxiliary fees, play a crucial role in the final quotation.

1. Chargeable Weight vs. Actual Weight

The most critical concept in air freight is determining the Chargeable Weight. Airlines do not simply bill you based on how heavy the package is; they also consider how much space it occupies.

  • Actual Weight: The gross weight of the cargo as shown on a weighing scale.
  • Volumetric Weight: A calculation based on dimensions. For domestic air freight in the Philippines, the standard formula is usually (Length x Width x Height in cm) / 3500.

Cebu Pacific, like most carriers, will charge based on whichever is higher between the Actual Weight and the Volumetric Weight.

2. Key Components of the Shipping Cost

Using the estimator above helps you predict the total cost, but understanding the breakdown is essential for budgeting logistics.

Base Freight Rate

This is the cost of transport from airport to airport. It varies depending on the zone (distance between origin and destination) and the commodity. General cargo (dry goods) has the lowest rate, while perishables (seafood, vegetables) or live animals often carry a surcharge or a higher base rate multiplier.

Fuel Surcharge (FSC)

Fuel prices fluctuate globally. To mitigate this, airlines add a Fuel Surcharge, which is a percentage of the Base Freight. This rate changes monthly based on aviation fuel indices.

Valuation Charge

This acts as a basic insurance fee. It is calculated based on the Declared Value of your goods. If your cargo is lost or damaged, the airline's liability is often limited unless a higher value is declared and the corresponding valuation charge is paid.

Value Added Tax (VAT)

In the Philippines, a 12% VAT is applicable to the total shipping charges, including the base rate, fuel surcharge, and handling fees.

3. Tips for Lowering Your Cargo Rates

If you are a frequent shipper with Cebu Pacific, consider these tips to optimize your costs:

  • Pack tightly: Since volumetric weight can increase your costs significantly, minimize empty space in your boxes.
  • Consolidate shipments: Most airlines have a minimum charge (e.g., minimum 10kg or a fixed peso amount). Shipping one large batch is cheaper per kilogram than sending multiple small parcels.
  • Accurate Declaration: Always declare the correct value. While under-declaring saves on Valuation Charges, it puts you at risk of low compensation in case of cargo loss.

4. CEB Cargo Commodity Types

The nature of your goods dictates the handling requirements and price:

  • General Cargo (GEN): Textiles, electronics, documents, dry goods.
  • Perishables (PER): Fresh fish, fruits, vegetables, frozen meat. Requires immediate release and specific handling.
  • Vulnerable Cargo (VUN): High-value electronics or luxury items requiring extra security.
  • Dangerous Goods (DG): Chemicals, batteries, or flammable items. These require strict documentation and higher fees.

Note: This tool is an estimator intended for planning purposes. For exact quotations and bookings, please visit the nearest Cebu Pacific Cargo office or their official website.

Leave a Comment