/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
  font-family: 'Outfit', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: #1a1a2e;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar a {
  color: #00d4ff;
}

.top-bar a:hover {
  color: #fff;
}

.top-bar .social a {
  margin-left: 12px;
  font-size: 16px;
}

/* ========== HEADER / NAVBAR ========== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #0d47a1;
}

.logo span {
  color: #ff5722;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: #333;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0d47a1;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0d47a1;
}

.btn-appointment {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: #0d47a1;
  z-index: 1001;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  backdrop-filter: blur(3px);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

@media(max-width:900px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 280px;
    background: #fff;
    padding: 40px 25px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    gap: 20px;
    transition: right 0.4s ease-in-out;
    z-index: 1000;
    align-items: flex-start;
  }

  .nav-links.open {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .btn-appointment {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

.top-bar .social a {
  transition: all 0.3s;
  opacity: 0.7;
}

.top-bar .social a:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #0d47a1 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.hero h1 span {
  color: #ffab40;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-btns a {
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
  background: #ff5722;
  color: #fff;
}

.btn-primary:hover {
  background: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #0d47a1;
}

/* ========== SECTION TITLES ========== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  font-size: 18px;
}

.section-title .underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0d47a1, #ff5722);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ========== WHY CHOOSE US ========== */
.why-us {
  padding: 80px 0;
  background: #f8f9fa;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e8e8e8;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-card .icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 20px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.why-card p {
  color: #666;
  font-size: 15px;
}

/* ========== SERVICES ========== */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card .card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card .card-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.service-card .card-body {
  padding: 25px;
}

.service-card h3 {
  font-size: 20px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.btn-book {
  display: inline-block;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s, transform 0.3s;
}

.btn-book:hover {
  background: linear-gradient(135deg, #ff5722, #ff7043);
  transform: translateY(-2px);
}

/* Sub-service grid inside services page */
.sub-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.sub-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s;
}

.sub-card:hover {
  transform: translateY(-5px);
}

.sub-card .sub-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.sub-card h4 {
  color: #0d47a1;
  margin-bottom: 8px;
}

/* ========== PRICING ========== */
.pricing-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.pricing-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pricing-tabs .tab {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #0d47a1;
  color: #0d47a1;
  background: #fff;
  transition: all 0.3s;
}

.pricing-tabs .tab.active,
.pricing-tabs .tab:hover {
  background: #0d47a1;
  color: #fff;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.pricing-table thead {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #fff;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: center;
}

.pricing-table th {
  font-size: 16px;
  font-weight: 700;
}

.pricing-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}

.pricing-table tbody tr:hover {
  background: #f0f7ff;
}

.pricing-table td {
  font-size: 15px;
}

.price-badge {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
}

.pricing-note {
  text-align: center;
  background: #fff3e0;
  padding: 15px;
  border-radius: 10px;
  color: #e65100;
  font-weight: 600;
  margin-bottom: 30px;
}

/* ========== BRANDS ========== */
.brands-section {
  padding: 60px 0;
  background: #fff;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.brand-item {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.brand-item:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-item span {
  font-weight: 800;
  font-size: 14px;
  color: #555;
  text-align: center;
}

/* ========== BOOKING FORM ========== */
.booking-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  color: #fff;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-form h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ffab40;
}

.form-group select {
  color: #fff;
}

.form-group select option {
  color: #333;
  background: #fff;
}

.captcha-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-group img {
  border-radius: 8px;
  height: 45px;
}

.captcha-group input {
  flex: 1;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: #ff5722;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
  background: #e64a19;
  transform: translateY(-2px);
}

/* ========== RECENT BOOKINGS ========== */
.bookings-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.booking-card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #0d47a1;
}

.booking-card .badge {
  display: inline-block;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.booking-card h4 {
  color: #333;
  margin-bottom: 5px;
}

.booking-card p {
  color: #888;
  font-size: 13px;
}

/* ========== ABOUT PAGE ========== */
.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.about-content h2 {
  font-size: 32px;
  color: #0d47a1;
  margin-bottom: 15px;
}

.about-content p {
  color: #666;
  margin-bottom: 15px;
}

.about-content ul {
  margin-top: 10px;
}

.about-content ul li {
  padding: 6px 0;
  color: #555;
}

.about-content ul li::before {
  content: '✅ ';
}

@media(max-width:768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CONTACT PAGE ========== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 16px;
}

.contact-info-card h3 {
  color: #0d47a1;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-item .c-icon {
  font-size: 28px;
  min-width: 40px;
  text-align: center;
}

.contact-item h4 {
  color: #333;
  font-size: 16px;
}

.contact-item p {
  color: #666;
  font-size: 14px;
}

.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  color: #0d47a1;
  margin-bottom: 20px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #999;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: #0d47a1;
}

@media(max-width:768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CITIES ========== */
.cities-section {
  padding: 50px 0;
  background: #fff;
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.city-tag {
  background: #e3f2fd;
  color: #0d47a1;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}

.city-tag:hover {
  background: #0d47a1;
  color: #fff;
}

/* ========== FOOTER ========== */
.footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #ff5722;
  border-radius: 2px;
}

.footer p {
  font-size: 14px;
  line-height: 1.8;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #aaa;
  font-size: 14px;
  transition: color 0.3s, padding-left 0.3s;
}

.footer ul li a:hover {
  color: #00d4ff;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer-bottom a {
  color: #00d4ff;
}

/* ========== WhatsApp Float ========== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6)
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

/* ========== Call Float ========== */
.call-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
}

.call-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #0d47a1;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 5px 25px rgba(13, 71, 161, 0.4);
  transition: transform 0.3s;
  animation: pulse 2s infinite;
}

.call-float a:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 71, 161, 0.5)
  }

  70% {
    box-shadow: 0 0 0 15px rgba(13, 71, 161, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 71, 161, 0)
  }
}

/* ========== SUCCESS MESSAGE ========== */
.alert {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.alert-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ========== PAGE BANNER ========== */
.page-banner {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 18px;
  opacity: 0.85;
}

/* ========== UTILITIES ========== */
.text-center {
  text-align: center;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-50 {
  margin-top: 50px;
}

/* ========== RESPONSIVE ========== */
@media(max-width:768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px 8px;
    font-size: 13px;
  }
}