:root {
    --primary: #1098ad;
    --primary-gradient: linear-gradient(90deg, #1098ad 0%, #43e97b 100%);
    --secondary: #43e97b;
    --dark: #1a2433;
    --light: #f7fafc;
    --success: #3ad29f;
    --danger: #e57373;
    --warning: #fbc02d;
    --gray-100: #f7fafc;
    --gray-200: #e3eaf1;
    --gray-300: #cfd8dc;
    --gray-400: #b0bec5;
    --gray-500: #90a4ae;
    --gray-600: #78909c;
    --gray-700: #5a6270;
    --gray-800: #455a64;
    --gray-900: #1a2433;
    --card-radius: 13px;
    --card-shadow: 0 2px 12px rgba(16, 152, 173, 0.06);
    --transition: 0.18s cubic-bezier(.4,1.6,.6,1);
}

body, html {
  font-family: 'Montserrat', 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: var(--light);
  color: var(--dark);
  font-size: 0.97rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.55;
  max-width: 100vw;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.6em;
}

header.navbar, .bg-primary {
  background: var(--primary-gradient) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(16,152,173,0.12);
  padding: 0.6rem 1rem !important;
  transition: background var(--transition), box-shadow var(--transition);
}

.card, .section {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 2.2rem 1.2rem;
  margin-bottom: 1.5rem;
}

.container, .container-fluid, .main-content {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

a, .nav-link {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
  font-size: 0.97rem;
}
a:hover, .nav-link:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.btn, .btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.5em 1.4em;
  box-shadow: 0 1px 4px rgba(16,152,173,0.09);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn:hover, .btn-primary:hover {
  background: linear-gradient(90deg, #0d7a8c 0%, #28b485 100%);
  box-shadow: 0 2px 10px rgba(16,152,173,0.17);
  transform: translateY(-1.5px) scale(1.03);
}

input, textarea, select {
  border: 1.2px solid var(--gray-300);
  border-radius: 6px;
  padding: 0.5em 0.9em;
  font-size: 0.96rem;
  background: #fff;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1.5px rgba(16,152,173,0.13);
  outline: none;
}

.section {
  padding: 2.2rem 0;
}

::-webkit-scrollbar {
  width: 6px;
  background: var(--gray-200);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

/* Hero Section */
.hero-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f6ff 0%, #f6fcfa 100%);
  padding: 3rem 0 2.5rem 0; /* Reduced desktop padding */
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}
.hero-headline {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-anim-text {
  color: var(--secondary);
  font-weight: 700;
}
.hero-cta {
  margin-top: 2rem;
}
.lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gray-700);
}

/* Header and Navigation */
.navbar-brand {
  font-weight: 700;
  color: var(--primary) !important;
}
.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}
.nav-link.active, .nav-link:focus, .nav-link:hover {
  color: var(--primary) !important;
}
#citySelector {
  border-radius: 20px;
  background: #f0f7ff;
  border-color: var(--gray-300);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

/* Topbar Dropdown Hover */
.topbar-hover { position: relative; }
.topbar-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: #fff;
  color: #222;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  padding: 8px 16px;
  font-size: 0.97rem;
  white-space: nowrap;
  z-index: 20;
  border: 1px solid #e4e4e4;
  font-weight: 500;
}
.topbar-hover:hover .topbar-dropdown,
.topbar-hover:focus-within .topbar-dropdown {
  display: block;
  animation: fadeInTopbar .15s cubic-bezier(.4,1.6,.6,1);
}
@keyframes fadeInTopbar {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 991.98px) {
  .topbar-dropdown {
    left: auto;
    right: 0;
    transform: none;
    min-width: 150px;
    font-size: 0.95rem;
  }
}

/* WhatsApp Vertical Pill Button - Compact & Eye-catching */
.whatsapp-chat-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1200;
  background: linear-gradient(135deg, #36d1c4 0%, #5b86e5 100%);
  border-radius: 18px 0 0 18px;
  padding: 7px 4px;
  width: 40px;
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.whatsapp-chat-btn .wa-icon {
  background: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.whatsapp-chat-btn .wa-icon i {
  color: #15dd5e;
  font-size: 1rem;
}
.whatsapp-chat-btn span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  margin-top: 0;
  user-select: none;
}
.whatsapp-chat-btn:hover {
  background: linear-gradient(135deg, #5b86e5 0%, #36d1c4 100%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
  transform: translateY(-50%) scale(1.07);
}
@media (max-width: 575.98px) {
  .whatsapp-chat-btn {
    width: 32px;
    min-height: 54px;
    padding: 4px 2px;
  }
  .whatsapp-chat-btn .wa-icon {
    width: 18px;
    height: 18px;
    margin-bottom: 3px;
  }
  .whatsapp-chat-btn .wa-icon i {
    font-size: 0.8rem;
  }
  .whatsapp-chat-btn span {
    font-size: 0.68rem;
  }
}

/* Customer Reviews Section */
.customer-reviews-section {
    background: var(--light);
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.reviews-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
}

.review-card {
    display: none;
    position: relative;
    padding: 2rem;
    border-radius: var(--card-radius);
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.review-card.active {
    display: block;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.reviewer-location {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.review-rating {
    display: flex;
    gap: 0.2rem;
    color: #ffd700;
}

.review-content {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.review-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.reviews-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.nav-btn:hover {
    transform: scale(1.1);
    background: var(--secondary);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .reviews-container {
        padding: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Footer Styles - Modern, Full-width, Accessible */
footer {
  background: #16202a;
  color: #fff;
  padding: 0.6rem 0 0.4rem 0;
  width: 100%;
  border-top: 1px solid #e3eaf1;
}
footer, footer *, footer a, footer .footer-links a, footer .footer-social a, footer .copyright {
  color: #fff !important;
  fill: #fff !important;
}
footer a:hover, footer .footer-links a:hover, footer .footer-social a:hover {
  color: #43e97b !important;
}
footer .footer-logo {
  margin-bottom: 0.3rem;
}
footer .footer-links, footer .footer-social {
  margin-bottom: 0.2rem;
}
footer .footer-links a, footer .footer-social a {
  margin-right: 0.5rem;
  font-weight: 500;
  font-size: 0.82rem !important;
}
footer .footer-links a:last-child, footer .footer-social a:last-child {
  margin-right: 0;
}
footer .copyright {
  margin-top: 0.3rem;
  font-size: 0.69rem;
}
@media (max-width: 768px) {
  body, html {
    font-size: 0.93rem;
  }
  .card, .section {
    padding: 1.1rem 0.6rem;
    margin-bottom: 1rem;
  }
  .section {
    border-radius: 7px;
    padding: 1.1rem 0;
  }
  footer {
    padding: 0.4rem 0 0.2rem 0;
    font-size: 0.82rem;
  }
  .footer-links a, .footer-social a {
    margin: 0 0.2rem 0.2rem 0;
    font-size: 0.82rem;
  }
}

/* Responsive Footer & Layout for Mobile */
@media (max-width: 768px) {
  footer {
    padding: 0.5rem 0 0.3rem 0;
    font-size: 0.85rem;
    text-align: center;
  }
  .footer-links a, footer .footer-social a {
    margin: 0 0.3rem 0.3rem 0;
    font-size: 0.85rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 2.5rem 0 2rem 0; /* Tablet padding */
    min-height: 55vh;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0 1.5rem 0; /* Updated mobile padding */
    min-height: 50vh; /* Increased height for better image visibility */
    position: relative;
  }
  .hero-section::before {
    width: 60%; /* Increased image width for mobile */
    opacity: 0.15; /* Slightly more visible on mobile */
    background-size: cover;
    background-position: center right;
  }
  .hero-headline {
    font-size: 1.7rem;
  }
  .section {
    border-radius: 10px;
    padding: 1.3rem 0;
    margin-bottom: 1.1rem;
  }
  footer {
    padding: 0.5rem 0 0.3rem 0;
    font-size: 0.85rem;
    text-align: center;
  }
}

/* Responsive Top Bar & Header */
@media (max-width: 991.98px) {
  .rounded-top-4 {
    border-radius: 0 !important;
  }
  .skip-link:focus {
    left: 8px;
    top: 8px;
    padding: 8px 8px;
  }
  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .nav.justify-content-center {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .bg-primary.text-white.py-2 {
    flex-direction: column !important;
    text-align: left;
    padding: 1rem 0.5rem !important;
  }
  .container-fluid.px-lg-5 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .d-flex.align-items-center.gap-3 {
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
  }
  .d-flex.align-items-center.justify-content-between {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
  .btn.btn-warning.ms-3 {
    margin-left: 0 !important;
    margin-top: 0.5rem !important;
  }
}

/* Fix: Top bar mobile layout and hamburger visibility */
@media (max-width: 991.98px) {
  .bg-primary.text-white.py-2 > .container-fluid {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .bg-primary.text-white.py-2 .d-flex.align-items-center.justify-content-between {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.5rem !important;
    width: 100%;
  }
  .bg-primary.text-white.py-2 .d-flex.align-items-center.gap-3 {
    justify-content: flex-start !important;
    width: 100%;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }
  .bg-primary.text-white.py-2 .dropdown.ms-3 {
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }
  .bg-primary.text-white.py-2 .btn.btn-warning.ms-3 {
    margin-left: 0 !important;
    margin-top: 0.5rem !important;
    width: 100%;
  }
  .navbar-toggler {
    display: block !important;
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    z-index: 1100;
  }
}

@media (max-width: 575.98px) {
  .bg-primary.text-white.py-2 .fw-bold, .bg-primary.text-white.py-2 .dropdown {
    font-size: 1rem !important;
  }
  .bg-primary.text-white.py-2 .btn.btn-warning {
    font-size: 0.95rem !important;
    padding: 6px 12px !important;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .top-bar-logo {
    font-size: 1rem !important;
  }
  .btn.btn-warning {
    font-size: 0.95rem !important;
    padding: 6px 12px !important;
  }
  .dropdown-menu {
    font-size: 0.97rem !important;
  }
  .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Hamburger for nav on mobile */
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block !important;
  }
  nav.bg-white {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}

#main-content {
  flex: 1 0 auto;
}

@media (max-width: 575.98px) {
  .bg-primary.text-white.py-2 .container-fluid {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .bg-primary.text-white.py-2 .d-flex.align-items-center.justify-content-between {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.5rem !important;
    width: 100%;
  }
  .bg-primary.text-white.py-2 .d-flex.align-items-center.gap-2 {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    justify-content: flex-start !important;
    width: 100%;
  }
  .bg-primary.text-white.py-2 .dropdown {
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }
  .bg-primary.text-white.py-2 .btn {
    width: auto;
    min-width: 40px;
    padding: 6px 8px !important;
    font-size: 1rem !important;
  }
  .bg-primary.text-white.py-2 .fw-bold {
    font-size: 1rem !important;
  }
  .bg-primary.text-white.py-2 .dropdown-menu {
    font-size: 0.97rem !important;
  }
}

/* Enhanced Mobile Top Bar Styles */
@media (max-width: 991.98px) {
  .mobile-green-bar {
    background: linear-gradient(90deg, #1976d2 60%, #26c6da 100%); /* Professional blue gradient */
    box-shadow: 0 2px 16px 0 rgba(25,118,210,0.14), 0 1.5px 6px 0 rgba(0,0,0,0.04);
    border-radius: 0 0 18px 18px;
  }
  .mobile-green-bar .topbar-logo {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }
  .mobile-green-bar .city-btn {
    font-size: 0.92rem;
    font-weight: 500;
    color: #222;
    background: #f5f5f5;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .mobile-green-bar .circle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: 0 2px 8px 0 rgba(52,199,89,0.11);
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    margin-left: 2px;
    margin-right: 2px;
    position: relative;
  }
  .mobile-green-bar .circle-btn i {
    font-size: 20px;
    color: #34C759;
    transition: color 0.2s;
  }
  .mobile-green-bar .circle-btn:active,
  .mobile-green-bar .circle-btn:focus,
  .mobile-green-bar .circle-btn:hover {
    background: #eafbee;
    box-shadow: 0 4px 16px 0 rgba(52,199,89,0.18);
    transform: translateY(-2px) scale(1.06);
  }
  .mobile-green-bar .circle-btn:active i,
  .mobile-green-bar .circle-btn:focus i,
  .mobile-green-bar .circle-btn:hover i {
    color: #00C389;
  }
}

.bg-primary {
  background: linear-gradient(90deg, #1fa5b2 0%, #26c6da 100%) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  padding: 1rem 1.2rem !important;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar-brand, .navbar .nav-link {
  color: #fff !important;
}
.navbar .nav-link:hover {
  color: #fffcc0 !important;
}

/* Stats Section */
#site-stats {
  background: #fff;
  border-radius: 18px;
  margin: 0 0 2.5rem 0;
  box-shadow: 0 2px 18px rgba(16, 152, 173, 0.06);
}
#site-stats .stat-animate {
  font-size: 2.2rem;
  color: var(--primary);
  letter-spacing: 0.01em;
  font-weight: 700;
}
#site-stats .fa-2x {
  font-size: 2.1rem;
  opacity: 0.85;
}
#site-stats .text-muted {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  #site-stats .stat-animate {
    font-size: 1.4rem;
  }
  #site-stats .fa-2x {
    font-size: 1.4rem;
  }
  #site-stats .p-4 {
    padding: 1.1rem !important;
  }
}

/* Modern Service Card Styles */
.service-card {
  border-radius: 22px;
  box-shadow: 0 6px 28px 0 rgba(80, 80, 160, 0.12);
  background: linear-gradient(135deg, #fff 70%, #f7f5ff 100%);
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #e7e3fa;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  min-height: 410px;
}
.service-card:hover {
  box-shadow: 0 12px 36px 0 rgba(80, 80, 160, 0.20);
  transform: translateY(-6px) scale(1.025);
  border-color: #b197fc;
}
.service-card .card-title {
  color: #4b2996;
  font-weight: 800;
  font-size: 1.22rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}
.service-card .fw-bold.fs-5.text-primary {
  color: #6f42c1 !important;
  font-size: 1.26rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.service-card .text-decoration-line-through {
  font-size: 1.1rem;
  margin-left: 0.25rem;
}
.service-card .btn-primary {
  background: linear-gradient(90deg, #6f42c1 60%, #b197fc 100%);
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}
.service-card .btn-primary:hover {
  background: linear-gradient(90deg, #5f2fa3 60%, #a085e6 100%);
}
.service-card .btn-outline-primary {
  border: 2px solid #b197fc;
  color: #6f42c1;
  font-weight: 700;
  background: #f7f5ff;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  border-radius: 10px;
  font-size: 1.08rem;
}
.service-card .btn-outline-primary:hover {
  background: #b197fc;
  color: #fff;
  border-color: #6f42c1;
}
.service-card .position-absolute.bg-danger {
  background: linear-gradient(90deg, #f857a6 0%, #ff5858 100%) !important;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 16px;
  top: 18px !important;
  right: 18px !important;
  padding: 6px 18px !important;
  z-index: 2;
  box-shadow: 0 2px 8px 0 rgba(248, 87, 166, 0.13);
}
.service-card .card-img-top {
  border-radius: 18px 18px 0 0;
  background: #f7f5ff;
  margin-bottom: 1rem;
  min-height: 160px;
  max-height: 180px;
  object-fit: cover;
}
.service-card .card-text {
  font-size: 1.01rem;
  margin-bottom: 1.1rem !important;
  color: #6c6a8a;
  text-align: center;
}
.service-card .d-flex.align-items-center.mb-3.justify-content-center {
  margin-bottom: 0.7rem !important;
}
@media (max-width: 991.98px) {
  .service-card {
    min-height: 430px;
    padding: 1.2rem 0.8rem 1rem 0.8rem;
  }
}
@media (max-width: 767.98px) {
  .service-card {
    min-height: 0;
    padding: 0.7rem 0.7rem 1rem 0.7rem;
  }
  .service-card .btn {
    font-size: 1rem;
    padding: 0.55rem 1rem;
    margin-bottom: 0.3rem;
  }
  .service-card .card-title {
    font-size: 1.08rem;
  }
  .service-card .fw-bold.fs-5.text-primary {
    font-size: 1.1rem;
  }
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #ff5858 0%, #f857a6 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 3px 10px;
  min-width: 44px;
  min-height: 22px;
  border-radius: 12px 12px 12px 12px / 15px 15px 10px 10px;
  box-shadow: 0 2px 8px 0 rgba(248, 87, 166, 0.13);
  letter-spacing: 0.01em;
  border: 1px solid #fff;
  margin-bottom: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  animation: badgePop 0.9s cubic-bezier(0.23, 1, 0.32, 1) 1;
}
.animate-bounce {
  animation: badgeBounce 1.2s infinite alternate cubic-bezier(0.5, 1.6, 0.4, 0.7);
}
@keyframes badgePop {
  0% { transform: scale(0.7); opacity: 0; }
  80% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes badgeBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@media (max-width: 767.98px) {
  .discount-badge {
    font-size: 0.82rem;
    min-width: 34px;
    min-height: 18px;
    padding: 2px 7px !important;
    top: 7px !important;
    right: 7px !important;
  }
}

.review-screenshot-card {
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 4px 18px 0 rgba(60,60,90,0.13);
  padding: 1.1rem 1.1rem 0.9rem 1.1rem;
  transition: box-shadow 0.22s, transform 0.22s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  min-width: 180px;
  max-width: 350px;
  margin: 0 auto;
  border: 1px solid #ececec;
  position: relative;
  overflow: hidden;
}
.review-screenshot-card img {
  box-shadow: 0 2px 10px 0 rgba(60,60,90,0.09);
  border-radius: 0.9rem;
  background: #f8f9fa;
}
.review-screenshot-card:hover {
  box-shadow: 0 8px 32px 0 rgba(60,60,90,0.14);
  transform: translateY(-4px) scale(1.025);
}
.review-author {
  font-size: 1.05rem;
  color: #f857a6;
  font-family: 'Montserrat', sans-serif;
  margin-top: 0.7rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(248, 87, 166, 0.07);
}
.swiper-slide {
  filter: none;
  opacity: 1;
  transition: none;
}
.swiper-slide.swiper-slide-active {
  filter: none;
  opacity: 1;
  z-index: 3;
}

/* Smart Top Bar Customization */
.smart-city-dropdown .dropdown-toggle {
  background: rgba(255,255,255,0.88);
  color: #1976d2;
  border: 1.5px solid #e0f6ff;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(52,199,89,0.11);
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.smart-city-dropdown .dropdown-toggle:focus,
.smart-city-dropdown .dropdown-toggle:hover {
  background: #e0f6ff;
  color: #1976d2;
  border: 1.5px solid #34c759;
}
.smart-city-dropdown .dropdown-menu {
  min-width: 150px;
  border-radius: 14px;
  box-shadow: 0 6px 32px 0 rgba(25,118,210,0.13);
  margin-top: 0.3rem;
}
.smart-city-dropdown .dropdown-item {
  font-weight: 500;
  color: #1976d2;
  border-radius: 8px;
  margin: 2px 0;
  transition: background 0.2s, color 0.2s;
}
.smart-city-dropdown .dropdown-item.active,
.smart-city-dropdown .dropdown-item:focus,
.smart-city-dropdown .dropdown-item:hover {
  background: #e0f6ff;
  color: #34C759;
}
.smart-city-dropdown .dropdown-item.disabled {
  color: #aaa !important;
  background: none !important;
}
.desktop-circle-btn {
  background: #fff;
  border: 1.5px solid #e0f6ff;
  box-shadow: 0 2px 8px 0 rgba(52,199,89,0.11);
  margin-left: 0.5rem;
  transition: border 0.2s, box-shadow 0.2s;
}
.desktop-circle-btn:hover {
  border: 1.5px solid #34c759;
  box-shadow: 0 4px 16px 0 rgba(52,199,89,0.16);
}
.btn.btn-warning.ms-3 {
  font-weight: 600;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(52,199,89,0.09);
  letter-spacing: 0.02em;
  padding: 0.5rem 1.5rem;
}
.btn.btn-warning.ms-3:hover {
  background: #34c759;
  color: #fff;
  border-color: #34c759;
}
/* Responsive adjustments for header bar */
@media (max-width: 991.98px) {
  .desktop-green-bar {
    border-radius: 0 0 14px 14px;
    padding: 0.5rem 0 !important;
  }
  .desktop-green-bar .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .desktop-logo-text {
    font-size: 1.05rem;
  }
}

/* --- Professional Header Bar Enhancements (Finalized) --- */
.desktop-green-bar {
  box-shadow: 0 8px 32px 0 rgba(25,118,210,0.09), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  border-radius: 0 0 24px 24px;
  background: linear-gradient(90deg, #1976d2 0%, #34c759 100%);
  position: relative;
  z-index: 10;
  border-bottom: 2px solid #e0f6ff;
}
.desktop-green-bar .container-fluid {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}
.desktop-green-bar .d-flex.align-items-center {
  gap: 2.5rem !important;
}
.desktop-logo-text {
  letter-spacing: 0.08em;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(25,118,210,0.12);
}
.smart-city-dropdown .dropdown-toggle {
  background: rgba(255,255,255,0.95);
  color: #1976d2;
  border: 1.5px solid #e0f6ff;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(52,199,89,0.11);
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.smart-city-dropdown .dropdown-toggle:focus,
.smart-city-dropdown .dropdown-toggle:hover {
  background: #e0f6ff;
  color: #1976d2;
  border: 1.5px solid #34c759;
}
.smart-city-dropdown .dropdown-menu {
  min-width: 170px;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(25,118,210,0.13);
  margin-top: 0.3rem;
}
.smart-city-dropdown .dropdown-item {
  font-weight: 500;
  color: #1976d2;
  border-radius: 8px;
  margin: 2px 0;
  transition: background 0.2s, color 0.2s;
}
.smart-city-dropdown .dropdown-item.active,
.smart-city-dropdown .dropdown-item:focus,
.smart-city-dropdown .dropdown-item:hover {
  background: #e0f6ff;
  color: #34C759;
}
.smart-city-dropdown .dropdown-item.disabled {
  color: #aaa !important;
  background: none !important;
}
.desktop-circle-btn {
  background: #fff;
  border: 1.5px solid #e0f6ff;
  box-shadow: 0 2px 8px 0 rgba(52,199,89,0.11);
  margin-left: 0.5rem;
  transition: border 0.2s, box-shadow 0.2s;
}
.desktop-circle-btn:hover {
  border: 1.5px solid #34c759;
  box-shadow: 0 4px 16px 0 rgba(52,199,89,0.16);
}
.btn.btn-warning.ms-3 {
  font-weight: 600;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(52,199,89,0.09);
  letter-spacing: 0.02em;
  padding: 0.5rem 1.5rem;
}
.btn.btn-warning.ms-3:hover {
  background: #34c759;
  color: #fff;
  border-color: #34c759;
}
@media (max-width: 991.98px) {
  .desktop-green-bar {
    border-radius: 0 0 14px 14px;
    padding: 0.5rem 0 !important;
  }
  .desktop-green-bar .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .desktop-logo-text {
    font-size: 1.05rem;
  }
}

/* Ensure medical-footer is always visible and styled */
.medical-footer {
  background: #16202a !important; /* Added !important */
  color: #fff;
  padding: 1.5rem 0;
  width: 100%;
  border-top: 1px solid #e3eaf1;
  position: relative;
  z-index: 1000; /* Increased z-index */
  clear: both; /* Added to handle float issues */
}

footer.medical-footer {
    display: block !important;
}

@media (max-width: 768px) {
  .medical-footer {
    padding: 0.5rem 0 0.3rem 0;
    font-size: 0.85rem;
    text-align: center;
  }
}

/* Enhanced Footer Styles */
.footer-enhanced {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.footer-bg-element {
  position: absolute;
  pointer-events: none;
}

.footer-bg-circle {
  width: 200px;
  height: 200px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.footer-bg-dots {
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(52, 152, 219, 0.2) 2px, transparent 2px);
  background-size: 20px 20px;
  bottom: 20px;
  left: 20px;
}

.footer-cta {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  color: white;
}

.footer-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.footer-cta-subtitle {
  font-size: 1rem;
  margin-bottom: 0;
  opacity: 0.9;
}

.footer-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-cta-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-cta-btn-primary {
  background: white;
  color: #3498db;
}

.footer-cta-btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  color: #3498db;
}

.footer-cta-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.footer-cta-btn-outline:hover {
  background: white;
  color: #3498db;
  transform: translateY(-2px);
}

.footer-top {
  padding: 3rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-logo-container {
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  border-radius: 8px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ecf0f1;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bdc3c7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(52, 152, 219, 0.2);
  color: #ecf0f1;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: #3498db;
  color: white;
  transform: translateY(-2px);
}

.footer-column-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ecf0f1;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #3498db;
}

.footer-links a i {
  margin-right: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(52, 152, 219, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.footer-contact-icon i {
  color: #3498db;
  font-size: 1rem;
}

.footer-contact-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bdc3c7;
}

.footer-contact-text strong {
  color: #ecf0f1;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 0.9rem;
  color: #bdc3c7;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-link {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: #3498db;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: white;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 90px;
  right: 20px;
  background-color: #4ecdc4;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #36b1a8;
  color: white;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-cta-buttons {
    justify-content: center;
  }
  
  .footer-top {
    padding: 2rem 0 1.5rem;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
