<!DOCTYPE html><html lang="ar"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title> Central Gas Pipe Extension - GSC</title><style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f4f8fb;
color: #333;
line-height: 1.7;
}
a {
color: inherit;
text-decoration: none;
}
.container {
max-width: 1180px;
margin: 0 auto;
padding: 0 20px 60px;
}
.hero {
background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
color: #fff;
padding: 80px 20px 70px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -40%;
right: -10%;
width: 520px;
height: 520px;
background: rgba(255,255,255,0.12);
border-radius: 50%;
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-18px); }
}
.hero h1 {
font-size: 44px;
margin-bottom: 20px;
font-weight: 800;
}
.hero .subtitle {
font-size: 19px;
max-width: 820px;
margin: 0 auto 18px;
opacity: 0.95;
line-height: 1.8;
}
.hero .hero-button {
display: inline-block;
margin-top: 25px;
background: #ff8b3d;
color: #fff;
padding: 16px 32px;
border-radius: 50px;
font-size: 17px;
font-weight: 700;
box-shadow: 0 10px 22px rgba(0,0,0,0.16);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero .hero-button:hover {
transform: translateY(-3px);
box-shadow: 0 14px 28px rgba(0,0,0,0.2);
}
section {
margin-top: 40px;
}
.card {
background: #fff;
border-radius: 18px;
box-shadow: 0 12px 35px rgba(0,0,0,0.08);
padding: 38px;
}
.section-title {
color: #128C7E;
font-size: 32px;
margin-bottom: 24px;
text-align: center;
}
.intro-section p,
.why-gsc-card p,
.info-section p {
font-size: 16px;
color: #555;
margin-bottom: 16px;
}
.intro-section strong {
color: #128C7E;
}
.pain-points {
display: grid;
gap: 20px;
}
.pain-point {
background: #f9fafa;
border-right: 4px solid #25D366;
padding: 24px;
border-radius: 14px;
}
.pain-point h3 {
font-size: 20px;
color: #128C7E;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.pain-point h3::before {
content: '⚠️';
margin-left: 10px;
font-size: 24px;
}
.pain-point p {
color: #555;
font-size: 15px;
}
.images-section {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 22px;
}
.image-card {
overflow: hidden;
border-radius: 18px;
background: #fff;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-card:hover {
transform: translateY(-6px);
box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}
.image-card img {
width: 100%;
height: 230px;
object-fit: cover;
display: block;
}
.image-caption {
padding: 18px 20px 24px;
text-align: center;
background: linear-gradient(135deg, #f6f9f9 0%, #ffffff 100%);
}
.image-caption h3 {
font-size: 18px;
color: #128C7E;
margin-bottom: 8px;
}
.image-caption p {
color: #777;
font-size: 14px;
line-height: 1.7;
}
.why-gsc-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 22px;
}
.why-gsc-card {
background: rgba(18,140,126,0.08);
border: 1px solid rgba(18,140,126,0.15);
border-radius: 16px;
padding: 26px;
min-height: 220px;
}
.why-gsc-card h3 {
font-size: 22px;
margin-bottom: 16px;
color: #128C7E;
}
.cta-section {
background: #fff;
border-radius: 20px;
padding: 40px 32px;
text-align: center;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.cta-section h2 {
font-size: 34px;
color: #128C7E;
margin-bottom: 18px;
}
.cta-section p {
color: #555;
font-size: 17px;
margin-bottom: 10px;
}
.whatsapp-container {
width: 100%;
background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
border-radius: 22px;
padding: 4px;
box-shadow: 0 18px 45px rgba(0,0,0,0.12);
margin-top: 30px;
}
.inner-content {
background: #ffffff;
border-radius: 18px;
padding: 38px;
display: grid;
grid-template-columns: 1fr 1.15fr;
gap: 30px;
}
.info-section h2 {
color: #128C7E;
font-size: 28px;
margin-bottom: 18px;
}
.info-section p {
font-size: 15px;
color: #555;
margin-bottom: 16px;
}
.status-tag {
display: inline-block;
background: #e8f9ee;
color: #25D366;
padding: 8px 16px;
border-radius: 50px;
font-size: 13px;
font-weight: bold;
margin-top: 12px;
}
.form-group {
margin-bottom: 18px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #444;
font-size: 14px;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 14px 16px;
border: 2px solid #f0f0f0;
border-radius: 14px;
outline: none;
transition: all 0.3s ease;
font-size: 15px;
background: #fbfcfc;
resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
border-color: #25D366;
background: #fff;
box-shadow: 0 0 12px rgba(37, 211, 102, 0.12);
}
.btn-submit {
width: 100%;
background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
color: #fff;
border: none;
border-radius: 14px;
padding: 16px;
font-size: 17px;
font-weight: 700;
cursor: pointer;
box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}
.footer {
background: #128C7E;
color: #fff;
text-align: center;
padding: 28px 20px;
border-radius: 18px;
margin-top: 40px;
}
.footer p {
margin-bottom: 8px;
font-size: 14px;
}
@media (max-width: 900px) {
.inner-content {
grid-template-columns: 1fr;
padding: 24px;
}
}
@media (max-width: 720px) {
.hero h1 {
font-size: 32px;
}
.hero .subtitle {
font-size: 16px;
}
.card {
padding: 28px;
}
}
</style></head><body style=";text-align:left;direction:ltr">
Extending central gas pipes with confidence and safety
Are you risking the safety of your family or your investments with amateur technicians? Gas installations are not just pipes; they are safety engineering that does not tolerate mistakes.
Get central gas installations that comply with the Saudi Standards Code (SBC 801) with a genuine warranty of up to 10 years. We don't just install pipes, we build safety into your walls.
Request a free technical consultation Why do you need a proper central gas extension?
At GSC, we believe that proper installation is the foundation of sustainable security. Don't leave gas network installation to an untrained expert, as mistakes can cost you both financially and emotionally.
We offer integrated solutions that start from planning and design to installation and certification, with complete transparency in pricing and proven expertise in licensing.
Why are we the ultimate solution to your problems?
Civil Defense refused?
We relieve you of the licensing complexities. We design and implement your networks to be ready for immediate approval according to civil defense standards, so you can obtain your permits without any technical issues.
Worried about hidden leaks?
We put your mind at ease with our "digital nitrogen test." We pressurize the network and record the test for you in video and photos before concealing the pipes, so you can sleep soundly knowing there's a 0% leakage rate.
Are you afraid of ruining your decor?
With GSC, "Safety doesn't compromise beauty." Our engineers create professional, concealed, or engineered pathways that preserve the elegance of both the interior and exterior design.
Tired of hidden costs?
Our transparency is our strength. You'll receive a final, detailed, and comprehensive price quote from the outset. The price we sign is the price you pay, not a single riyal more.
Why do professionals choose GSC?
Integrated engineering team
Our team is not just laborers, but engineers and technicians in official uniforms and with professional tools that reflect the prestige of your establishment.
Residential and commercial solutions
Whether you're securing your home, restaurant, or shopping mall, we have a proven track record of being able to handle all sizes.
Full compliance with the Saudi code
Our implementation ensures compliance with SBC 801 and Civil Defense standards for every central gas network we complete.
Our projects through the eyes of photographs

professional team
Execution work with engineers specializing in central gas networks.

Elegant paths
Design extensions that serve the interior beauty without affecting luxury.

Nitrogen test
Documenting network pressure with video and photos before concealing the pipes.

Advanced equipment
Implemented under engineering supervision and with modern equipment to ensure higher quality.
Gas doesn't wait... Secure your facility today, not tomorrow.
Get a free technical preview now with a clear final price quote.
Press the button below to contact the GSC team specializing in central gas installations via WhatsApp.
Request a preview now
document.addEventListener("submit", function(e) {
if (e.target && e.target.id === "waForm") {
e.preventDefault();
const serviceName = "تمديد مواسير الغاز المركزي - GSC";
const name = document.getElementById('userName')?.value || '';
const email = document.getElementById('userEmail')?.value || '';
const phone = document.getElementById('userPhone')?.value || '';
const message = document.getElementById('userMsg')?.value || '';
const myNumber = "966126626669";
const fullText =
`أريد الاستفسار عن: (${serviceName})\n\n` +
`*بيانات العميل:*\n` +
`• الاسم: ${name}\n` +
`• الإيميل: ${email}\n` +
`• الهاتف: ${phone}\n\n` +
`*نص الرسالة:*\n${message}`;
const finalUrl = `https://wa.me/${myNumber}?text=${encodeURIComponent(fullText)}`;
window.open(finalUrl, '_blank');
}
});
</body></html>