CREATE TABLE `contact` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `page_title` varchar(255) DEFAULT 'Contact Us',
  `page_subtitle` text DEFAULT NULL,
  `form_title` varchar(255) DEFAULT 'Send Us a Message',
  `form_subtitle` text DEFAULT NULL,
  `office_title` varchar(255) DEFAULT 'Our Head Office',
  `office_address` text DEFAULT NULL,
  `phone1` varchar(50) DEFAULT NULL,
  `phone2` varchar(50) DEFAULT NULL,
  `whatsapp` varchar(50) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `map_iframe` text DEFAULT NULL,
  `qr_code` varchar(255) DEFAULT NULL,
  `hero_image` varchar(255) DEFAULT NULL,
  `created_at` datetime DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

INSERT INTO `contact` (`page_title`, `page_subtitle`, `form_title`, `form_subtitle`, `office_title`, `office_address`, `phone1`, `phone2`, `whatsapp`, `email`, `map_iframe`, `qr_code`) VALUES
('Contact Us', 'Get in touch with our team for any queries or assistance.', 'Send Us a Message', 'Fill in the form below and we will get back to you.', 'Our Head Office', 'Manjeera Trinity Corporate, ODC 501, Jntu-Hitech City Road, Kphb, Hyderabad, Telangana 500072', '+91 9848483316', '+91 40 4003 0159', '+91 9848483316', 'info@flystar.in', '', '');
