/* Google Fonts Import - Preload for Performance */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Dancing+Script:wght@400;600;700&family=Montserrat:wght@400;500;600;700;800&family=Crimson+Text:wght@400;600;700&display=swap");

/* Critical CSS for Above-the-Fold Performance */
/* Custom CSS for PetPuja Cloud - Logistics & SEO Optimized */
:root {
  --primary-color: #1b5e20;
  --secondary-color: #ff6f00;
  --accent-color: #c62828;
  --success-color: #2e7d32;
  --light-bg: #f1f8e9;
  --dark-bg: #1b5e20;
  --gold-accent: #ffc107;
  --pure-green: #388e3c;
  --maroon-accent: #8e24aa;

  /* Performance optimizations */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Global Performance Styles */
* {
  scroll-behavior: smooth;
  /* Optimize rendering performance */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2e2e2e;
  font-weight: 400;
  /* Improve text rendering */
  text-rendering: optimizeLegibility;
  font-display: swap;
}

/* Critical Above-the-fold Styles */
.navbar {
  will-change: transform;
  transform: translateZ(0);
}

/* Ensure Bootstrap Icons load properly */
[class^="bi-"]::before,
[class*=" bi-"]::before {
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Premium Typography */
h1 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.3px;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--primary-color);
}

p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.8;
}

.lead {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.7;
}

.script-font {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  color: var(--secondary-color);
}

.premium-text {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-style: italic;
}

.brand-subtitle {
  font-size: 0.7rem;
  line-height: 1;
}

/* Custom Bootstrap Color Overrides */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--dark-bg);
  border-color: var(--dark-bg);
}

/* Enhanced Navigation */
.navbar-brand {
  font-family: "Playfair Display", serif !important;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar-brand:hover img {
  transform: rotate(5deg) scale(1.05);
}

.navbar {
  transition: all 0.5s ease;
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(27, 94, 32, 0.1);
  border-bottom: 1px solid rgba(27, 94, 32, 0.1);
}

.navbar-nav .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--primary-color) !important;
  position: relative;
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(27, 94, 32, 0.1),
    rgba(46, 125, 50, 0.1)
  );
  transition: all 0.3s ease;
  z-index: -1;
}

.navbar-nav .nav-link:hover::before {
  left: 0;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.2);
}

.navbar-nav .nav-link.active {
  background: linear-gradient(
    135deg,
    rgba(27, 94, 32, 0.1),
    rgba(46, 125, 50, 0.1)
  ) !important;
  box-shadow: 0 2px 10px rgba(27, 94, 32, 0.15);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
}

.navbar.scrolled {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 249, 250, 0.95)
  ) !important;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  box-shadow: 0 8px 40px rgba(27, 94, 32, 0.15);
  padding: 0.5rem 0;
}

.navbar-toggler {
  border: none !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.25);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgba(248, 249, 250, 0.98)
    );
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 8px 30px rgba(27, 94, 32, 0.1);
  }

  .navbar-nav .nav-link {
    margin: 0.25rem 0;
    text-align: center;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
      135deg,
      rgba(27, 94, 32, 0.85),
      rgba(46, 125, 50, 0.85)
    ),
    url("images/tiffin/bowl-with-spice-powder-near-rice-dishes.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
}

.hero-section h1 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.hero-overlay {
  position: relative;
  z-index: 2;
}

.hero-buttons .btn {
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-image img {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Service Cards */
.service-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(27, 94, 32, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--gold-accent)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px) rotateY(5deg);
  box-shadow: 0 25px 50px rgba(27, 94, 32, 0.2);
  border-color: rgba(27, 94, 32, 0.1);
}

.card-img-wrapper {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.card-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(27, 94, 32, 0.05) 100%
  );
  pointer-events: none;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.service-card:hover .card-img-wrapper img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.1);
}

.service-card .card-body {
  padding: 2.5rem;
  position: relative;
}

.service-card .card-title {
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.service-card .btn {
  border-radius: 25px;
  padding: 12px 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.service-card .btn:hover::before {
  left: 100%;
}

/* Feature Items */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-item i {
  display: block;
  margin-bottom: 1rem;
}

/* Map */
.map-container {
  height: 400px;
  width: 100%;
  background-color: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
}

.map-wrapper {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  border: none;
  border-radius: 10px;
}

.map-info {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-info:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-marker {
  font-size: 0.9rem;
  font-weight: 600;
  animation: mapMarkerPulse 2s infinite;
}

@keyframes mapMarkerPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Location Info */
.location-info {
  height: 100%;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Social Links */
.social-links a {
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--secondary-color) !important;
}

/* Pricing Tables */
.pricing-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
  position: relative;
}

.pricing-card.featured {
  border: 3px solid var(--secondary-color);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-header {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
  color: white;
  padding: 2rem;
  text-align: center;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
}

.price-period {
  font-size: 1rem;
  opacity: 0.8;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 85, 48, 0.8),
    rgba(38, 70, 83, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Menu Items */
.menu-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 2rem;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item-content {
  padding: 1.5rem;
}

.menu-item-price {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 85, 48, 0.25);
}

/* Universal Contact Widget */
.universal-contact-widget {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-main-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  position: relative;
  overflow: hidden;
}

.contact-main-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.contact-main-btn:hover::before {
  animation: shine 1.5s ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6),
      0 0 0 10px rgba(102, 126, 234, 0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  }
}

.contact-main-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.contact-main-btn.active {
  transform: scale(1.1) rotate(135deg);
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.contact-options {
  position: absolute;
  bottom: 80px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.contact-option {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  transform: translateX(-100px);
  opacity: 0;
}

.contact-options.active .contact-option {
  transform: translateX(0);
  opacity: 1;
}

.contact-options.active .contact-option:nth-child(1) {
  transition-delay: 0.1s;
}
.contact-options.active .contact-option:nth-child(2) {
  transition-delay: 0.2s;
}
.contact-options.active .contact-option:nth-child(3) {
  transition-delay: 0.3s;
}
.contact-options.active .contact-option:nth-child(4) {
  transition-delay: 0.4s;
}
.contact-options.active .contact-option:nth-child(5) {
  transition-delay: 0.5s;
}

.contact-option:hover {
  transform: translateX(5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.contact-option-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.contact-option-text {
  display: flex;
  flex-direction: column;
}

.contact-option-label {
  font-size: 0.75rem;
  color: #666;
  line-height: 1;
}

.contact-option-value {
  font-size: 0.9rem;
  color: #333;
  font-weight: 600;
  line-height: 1.2;
}

.phone-1 .contact-option-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.phone-2 .contact-option-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.email .contact-option-icon {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.whatsapp-1 .contact-option-icon {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-2 .contact-option-icon {
  background: linear-gradient(135deg, #20bf6b 0%, #26d0ce 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .universal-contact-widget {
    bottom: 20px;
    right: 20px;
  }

  .contact-main-btn {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .contact-option {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .contact-option-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}

/* Testimonials */
.testimonial {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--secondary-color);
  font-family: serif;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    text-align: center;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 576px) {
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .service-card .card-body {
    padding: 1.5rem;
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Page Transitions */
.page-transition {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.page-transition.loaded {
  opacity: 1;
}

/* Step Numbers */
.step-number {
  width: 60px;
  height: 60px;
}

/* Contact Info Cards */
.contact-info-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-info-card .icon-wrapper {
  display: flex;
}

/* Beautiful Premium Footer */
.premium-footer {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-bg) 50%,
    #0d4b14 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.premium-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, var(--gold-accent), #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
}

.footer-tagline {
  font-family: "Dancing Script", cursive;
  font-size: 1.3rem;
  color: var(--gold-accent);
  margin-bottom: 2rem;
  font-weight: 600;
}

.footer-section h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.footer-section a:hover {
  color: var(--gold-accent);
  padding-left: 10px;
}

.footer-section a::before {
  content: "→";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section a:hover::before {
  opacity: 1;
  left: -10px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--gold-accent);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
  color: var(--primary-color);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  margin: 2rem 0;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  margin: 0 2rem 2rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.footer-bottom::before,
.footer-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--gold-accent),
    rgba(255, 193, 7, 0.3),
    transparent
  );
  opacity: 0.6;
  z-index: 1;
}

.footer-bottom::before {
  left: 0;
  border-radius: 0 50px 50px 0;
}

.footer-bottom::after {
  right: 0;
  background: linear-gradient(
    -45deg,
    var(--gold-accent),
    rgba(255, 193, 7, 0.3),
    transparent
  );
  border-radius: 50px 0 0 50px;
}

.footer-bottom .container {
  position: relative;
  z-index: 2;
}

.corner-accent-left,
.corner-accent-right {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.corner-accent-left {
  left: 0;
  background: linear-gradient(
    45deg,
    var(--gold-accent) 0%,
    rgba(255, 193, 7, 0.4) 50%,
    transparent 100%
  );
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  border-radius: 25px 0 0 25px;
}

.corner-accent-right {
  right: 0;
  background: linear-gradient(
    -45deg,
    var(--gold-accent) 0%,
    rgba(255, 193, 7, 0.4) 50%,
    transparent 100%
  );
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 0 25px 25px 0;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 0.95rem;
  background: none !important;
  text-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.footer-heart {
  color: var(--accent-color);
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.emergency-contact {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-bg);
}

/* Developer Credit Animated Heart */
.developer-heart {
  color: #e91e63;
  font-size: 1.2em;
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.2);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.developer-credit {
  color: #666;
  font-size: 0.9rem;
  margin-top: 10px;
}

.developer-credit a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.developer-credit a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Map Toggle Buttons */
.map-toggle-buttons {
  margin-bottom: 20px;
}

.map-toggle-buttons .btn-group .btn {
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #007bff;
}

.map-toggle-buttons .btn-group .btn:first-child {
  margin-right: 10px;
}

.map-toggle-buttons .btn-group .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.map-toggle-buttons .btn-primary {
  background: linear-gradient(45deg, #007bff, #0056b3);
  border-color: #007bff;
  color: white;
}

.map-toggle-buttons .btn-outline-primary {
  background: white;
  color: #007bff;
  border-color: #007bff;
}

.map-toggle-buttons .btn-outline-primary:hover {
  background: #007bff;
  color: white;
}

/* Map Container Animations */
.map-container {
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.map-container iframe {
  transition: all 0.3s ease;
}

.map-container:hover iframe {
  transform: scale(1.02);
}

/* Street View Specific Styling */
#streetView {
  animation: fadeIn 0.5s ease-in-out;
}

#regularMap {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for map buttons */
@media (max-width: 768px) {
  .map-toggle-buttons .btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .map-toggle-buttons .btn-group .btn {
    margin-right: 0;
    width: 100%;
  }
}
