$service = $_GET['service'] ?? 'aligners';
$services_data = [
'implants' => [
'title' => 'Dental Implants',
'subtitle' => 'The Permanent Solution for Missing Teeth',
'image' => 'assets/images/service_implants.png',
'desc' => 'A missing tooth affects more than just your appearance—it can impact your ability to chew, cause surrounding teeth to shift, and lead to jawbone loss over time. Dental implants offer the most natural, durable, and reliable long-term replacement for missing teeth. At The Ivory Dental Surgery, The Ivory Dental Team provides expert implant care using advanced, minimally invasive techniques.'
],
'crowns' => [
'title' => 'Dental Crowns & Bridges',
'subtitle' => 'Restore Your Smile’s Strength and Beauty',
'image' => 'assets/images/service_crowns.png',
'desc' => 'Teeth that are heavily decayed, cracked, or missing can cause discomfort, alter your bite, and affect your self-esteem. At The Ivory Dental Surgery, we offer custom-crafted dental crowns and bridges designed to restore full strength, optimal function, and natural aesthetics under the care of The Ivory Dental Team.'
],
'veneers' => [
'title' => 'Porcelain & Composite Veneers',
'subtitle' => 'Achieve Your Ideal, Flawless Smile',
'image' => 'assets/images/service_veneers.png',
'desc' => 'If chipped, stained, slightly crooked, or unevenly spaced teeth are holding you back from smiling freely, dental veneers offer a transformative cosmetic solution under the care of The Ivory Dental Team.'
],
'aligners' => [
'title' => 'Clear Aligners',
'subtitle' => 'Straighten Your Smile Discreetly',
'image' => 'assets/images/service_aligners.png',
'desc' => 'Clear aligners are a modern and discreet alternative to traditional braces. They use a series of custom-made, virtually invisible plastic trays to gradually shift your teeth into proper alignment. They are comfortable, removable for eating and cleaning, and highly effective for mild to moderate orthodontic issues.'
],
'orthodontics' => [
'title' => 'Orthodontic Treatment',
'subtitle' => 'Complete Smile Correction for All Ages',
'image' => 'assets/images/service_braces.png',
'desc' => 'Our comprehensive orthodontic treatments include traditional metal braces, ceramic braces, and interceptive orthodontics for children. We design personalized treatment plans to correct crowded teeth, gaps, overbites, underbites, and crossbites, ensuring a healthy, beautiful smile for life.'
],
'surgery' => [
'title' => 'Minor Oral Surgery',
'subtitle' => 'Gentle, Precise Surgical Care',
'image' => 'assets/images/service_surgery.png',
'desc' => 'We perform minor oral surgeries with the utmost care and precision in our sterile clinical environment. Our procedures include gentle tooth extractions, wisdom tooth removal, and minor soft tissue procedures. We utilize advanced pain management techniques to ensure your comfort throughout the process.'
]
];
$service = $_GET['service'] ?? 'implants';
$redirects = [
'implants' => 'dental-implants.php',
'crowns' => 'crowns-bridges.php',
'veneers' => 'veneers.php',
'whitening' => 'teeth-whitening.php',
'root-canal' => 'root-canal.php',
'scaling' => 'scaling-polishing.php',
'pediatric' => 'pediatric-dentistry.php',
'dentures' => 'dentures.php',
'emergency' => 'emergency-dentistry.php'
];
if (isset($redirects[$service])) {
header("Location: " . $redirects[$service]);
exit;
}
$page_title = $current['title'] . " – The Ivory Dental Surgery";
include 'includes/header.php';
include 'includes/navbar.php';
?>
Detailed Service Information