
    /* ================= ROOT VARIABLES ================= */
    :root {
      --primary-orange: #ff6b35;
      --primary-orange-light: #ff8c5a;
      --primary-orange-dark: #e54e1e;
      --secondary-dark: #1a1a1a;
      --secondary-light: #2d2d2d;
      --text-light: #ffffff;
      --text-light-grey: #b7b4b4;
      --text-dark: #333333;
      --text-gray: #888888;
      --bg-dark: #0a0a0a;
      --bg-light: #f8f9fa;
      --bg-overlay: rgba(0, 0, 0, 0.7);
      --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.1);
      --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
      --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.2);
      --shadow-orange: 0 5px 20px rgba(255, 107, 53, 0.3);
      --transition-fast: 0.3s ease;
      --transition-medium: 0.5s ease;
      --transition-slow: 0.8s ease;
      --border-radius-sm: 8px;
      --border-radius-md: 15px;
      --border-radius-lg: 30px;
      --border-radius-xl: 50px;
      --font-primary: 'Poppins', sans-serif;
      --font-heading: 'Montserrat', sans-serif;
    }

    /* ================= GLOBAL STYLES ================= */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


/* ================= PILL-SHAPED BLACK NAVBAR WITH DROP SHADOW ================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --nav-bg: #1e1e1e;
  --nav-text: #b0b0b0;
  --nav-text-light: #d0d0d0;
  --nav-accent: #FF681F;
  --nav-border: rgba(255, 107, 53, 0.15);
}

/* Navbar Base - Pill Shaped */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 60px; /* Pill shape */
  padding: 0.8rem 1.8rem;
  z-index: 1000;
  /* Enhanced box shadow for better depth */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
  max-width: 1400px;
  padding: 0 0.5rem;
}

/* ===== LOGO ===== */
.navbar-brand {
  padding: 0;
  margin-right: 2rem;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* ===== NAVIGATION LINKS ===== */
.navbar-nav {
  gap: 0.2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--nav-text) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.7rem 1.3rem !important;
  letter-spacing: 0.3px;
  border-radius: 40px;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Sliding background effect on hover */
.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
  z-index: -1;
  border-radius: 40px;
}

.nav-link:hover::before {
  left: 0;
}

/* Text color change on hover */
.nav-link:hover {
  color: var(--nav-accent) !important;
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--nav-accent) !important;
  font-weight: 500;
}

/* ===== DROPDOWN SPECIAL EFFECTS ===== */
.nav-item.dropdown {
  position: relative;
}

/* Pulsing dot indicator for dropdown */
.nav-item.dropdown::after {
  content: '';
  position: absolute;
  bottom: 5px;
  right: 15px;
  width: 6px;
  height: 6px;
  background: var(--nav-accent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-item.dropdown:hover::after {
  opacity: 1;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--nav-border);
  border-radius: 25px;
  padding: 0.8rem 0;
  margin-top: 0.8rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.1);
  animation: dropdownFade 0.3s ease;
  transform-origin: top center;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  color: var(--nav-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  padding: 0.6rem 2rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Slide in effect for dropdown items */
.dropdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.15), transparent);
  transition: left 0.4s ease;
  z-index: -1;
}

.dropdown-item:hover::before {
  left: 0;
}

.dropdown-item:hover {
  color: var(--nav-accent);
  background: transparent;
  padding-left: 2.5rem;
  transform: translateX(5px);
}

/* Icon hover effect for dropdown items */
.dropdown-item i {
  margin-right: 8px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.dropdown-item:hover i {
  opacity: 1;
  transform: scale(1.2);
  color: var(--nav-accent);
}

/* ===== PHONE NUMBER ===== */
.phone-text {
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  color: var(--nav-text) !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  padding: 0.5rem 1.3rem !important;
  margin-left: 0.5rem !important;
  white-space: nowrap;
  border-radius: 40px; /* Pill shape */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Shine effect on hover */
.phone-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
}

.phone-text:hover::before {
  left: 0;
}

.phone-text:hover {
  color: var(--nav-accent) !important;
  transform: translateY(-2px);
}

.phone-text i {
  color: var(--nav-text);
  font-size: 0.95rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.phone-text:hover i {
  color: var(--nav-accent) !important;
  opacity: 1;
  transform: rotate(10deg);
}

/* ===== SOCIAL ICONS ===== */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.5rem !important;
  padding-left: 0;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--nav-text) !important;
  font-size: 1.1rem;
  text-decoration: none;
  opacity: 0.8;
  border-radius: 50%;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  position: relative;
  overflow: hidden;
}

/* Ripple effect on hover */
.nav-social a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.nav-social a:hover::before {
  width: 70px;
  height: 70px;
}

.nav-social a:hover {
  color: var(--nav-accent) !important;
  transform: translateY(-3px) scale(1.1);
  opacity: 1;
}

/* ===== TOGGLER BUTTON ===== */
.navbar-toggler {
  border: 1px solid rgba(255, 107, 53, 0.2) !important;
  padding: 0.6rem !important;
  border-radius: 30px !important;
  background: transparent !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  border-color: rgba(255, 107, 53, 0.4) !important;
  transform: scale(1.05);
}

.navbar-toggler:focus {
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
  border-color: rgba(255, 107, 53, 0.3) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 107, 53, 0.6)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 1.4rem;
  height: 1.4rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
  opacity: 1;
}

/* ===== DROPDOWN TOGGLE ARROW ===== */
.dropdown-toggle::after {
  border-top-color: var(--nav-text) !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  border-top-color: var(--nav-accent) !important;
  transform: rotate(180deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .navbar {
    width: 96%;
    padding: 0.7rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(255, 107, 53, 0.15);
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem !important;
  }
  
  .phone-text {
    font-size: 0.9rem !important;
    padding: 0.5rem 1.2rem !important;
  }
  
  .navbar-brand img {
    height: 45px;
  }
  
  .nav-social a {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .navbar {
    top: 15px;
    border-radius: 40px;
    padding: 0.6rem 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(255, 107, 53, 0.15);
  }
  
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  }
  
  .navbar-nav {
    gap: 0;
    align-items: flex-start;
    width: 100%;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    padding: 0.8rem 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }
  
  .nav-link:hover {
    color: var(--nav-accent) !important;
    transform: translateX(5px);
  }
  
  .nav-link.active {
    color: var(--nav-accent) !important;
  }
  
  .nav-item.dropdown::after {
    right: 25px;
  }
  
  .dropdown-menu {
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    margin: 0;
    width: 100%;
  }
  
  .dropdown-item {
    color: #a0a0a0;
    padding: 0.6rem 1rem;
    white-space: normal;
  }
  
  .dropdown-item:hover {
    color: var(--nav-accent);
    background: transparent;
    padding-left: 1.5rem;
    transform: translateX(5px);
  }
  
  .dropdown-item::before {
    display: none; /* Remove animation on mobile for performance */
  }
  
  .navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .navbar-brand {
    order: 1;
    margin-right: 0;
  }
  
  .navbar-toggler {
    order: 3;
    margin-left: auto;
  }
  
  .navbar-collapse {
    order: 4;
    width: 100%;
  }
  
  .phone-text,
  .nav-social {
    display: flex !important;
    margin: 1rem 0 0 0 !important;
    padding: 0 !important;
    border-left: none !important;
    justify-content: center;
    width: 100%;
  }
  
  .phone-text {
    margin-top: 1rem !important;
  }
  
  .phone-text:hover {
    color: var(--nav-accent) !important;
  }
  
  .nav-social {
    gap: 0.8rem;
    padding: 0.5rem 0 !important;
  }
  
  .nav-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
  }
  
  .nav-social a:hover {
    color: var(--nav-accent) !important;
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.05) !important;
  }
  
  .dropdown-toggle::after {
    float: right;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: 94%;
    padding: 0.5rem 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 3px 10px rgba(255, 107, 53, 0.15);
  }
  
  .navbar-brand img {
    height: 40px;
  }
  
  .navbar-toggler {
    padding: 0.5rem !important;
  }
  
  .navbar-toggler-icon {
    width: 1.3rem;
    height: 1.3rem;
  }
}

@media (max-width: 576px) {
  .navbar {
    top: 12px;
    width: 96%;
    padding: 0.4rem 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(255, 107, 53, 0.15);
  }
  
  .navbar-brand img {
    height: 38px;
  }
  
  .navbar-toggler {
    padding: 0.4rem !important;
  }
  
  .phone-text span {
    font-size: 0.85rem;
  }
  
  .nav-social a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ===== REDUCED MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
  .nav-link,
  .nav-link::before,
  .dropdown-menu,
  .dropdown-item,
  .dropdown-item::before,
  .phone-text,
  .phone-text::before,
  .nav-social a,
  .nav-social a::before,
  .navbar-toggler,
  .dropdown-toggle::after {
    animation: none !important;
    transition: none !important;
  }
  
  .nav-link:hover,
  .dropdown-item:hover,
  .phone-text:hover,
  .nav-social a:hover {
    transform: none !important;
  }
}

/* ===== FLOATING BUTTONS - SLIM & ELEGANT ===== */
.float-btn {
  position: fixed;
  right: 20px; /* Reduced from 30px */
  width: 45px; /* Reduced from 55px */
  height: 45px; /* Reduced from 55px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem; /* Reduced from 1.5rem */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); /* Lighter shadow */
  transition: all 0.2s ease;
  z-index: 9999;
  border: none; /* Removed border */
}

/* Tooltip - Smaller */
.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 55px; /* Adjusted from 70px */
  background: #333333; /* Dark grey instead of black */
  color: white;
  padding: 5px 12px; /* Reduced padding */
  border-radius: 20px; /* Smaller radius */
  font-size: 0.75rem; /* Smaller font */
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  border: none; /* Removed border */
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.float-btn:hover::before {
  opacity: 1;
  visibility: visible;
  right: 60px; /* Adjusted from 80px */
}

/* Call Button */
.call-btn {
  bottom: 90px; /* Adjusted from 100px */
  background: #ff6b35; /* Solid color instead of gradient */
}

.call-btn:hover {
  transform: scale(1.05); /* Smaller scale */
  background: #e54e1a; /* Darker on hover */
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4); /* Lighter shadow */
}

/* WhatsApp Button */
.whatsapp-btn {
  bottom: 25px; /* Adjusted from 30px */
  background: #25D366; /* Solid color instead of gradient */
}

.whatsapp-btn:hover {
  transform: scale(1.05); /* Smaller scale */
  background: #128C7E; /* Darker on hover */
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); /* Lighter shadow */
}

/* Optional: Add a second style - even smaller for very minimal look */
.float-btn.minimal {
  width: 40px;
  height: 40px;
  font-size: 1rem;
  opacity: 0.9;
}

.float-btn.minimal:hover {
  opacity: 1;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .float-btn {
    width: 42px; /* Slightly smaller on mobile */
    height: 42px;
    font-size: 1.1rem;
    right: 15px;
  }
  
  .call-btn {
    bottom: 80px;
  }
  
  .whatsapp-btn {
    bottom: 20px;
  }
  
  /* Hide tooltips on mobile to save space */
  .float-btn::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .float-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    right: 12px;
  }
  
  .call-btn {
    bottom: 70px;
  }
  
  .whatsapp-btn {
    bottom: 18px;
  }
}
/* ================= FOOTER - MATCHING NAVBAR EXACTLY ================= */

.footer {
  background: #000000;
  color: var(--nav-text, #b0b0b0);
  font-family: 'Montserrat', sans-serif;
  border-top: 1px solid rgba(255, 107, 53, 0.15);
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 clamp(1rem, 3vw, 3rem);
}

.footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  width: 100%;
}

/* ===== FOOTER GRID ===== */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
  gap: clamp(2rem, 4vw, 4rem);
  padding: 4rem 0 2rem;
}

/* ===== FOOTER TITLES - MATCHING NAVBAR LINK STYLE ===== */
.footer-title {
  color: var(--nav-text, #b0b0b0);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  position: relative;
  text-transform: none;
}

.footer-heading {
  color: var(--nav-text, #b0b0b0);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  position: relative;
  text-transform: none;
}

/* Orange underline under headings */
.footer-heading::after,
.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--nav-accent, #ff6b35);
  border-radius: 1px;
  transition: width 0.2s ease;
  opacity: 0.8;
}

.footer-heading:hover::after,
.footer-title:hover::after {
  width: 45px;
}

/* ===== ABOUT TEXT ===== */
.footer-about {
  color: var(--nav-text, #b0b0b0);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
  letter-spacing: 0.3px;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.footer-links li {
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: var(--nav-text, #b0b0b0);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  position: relative;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--nav-accent, #ff6b35) !important;
  background: transparent;
}

/* Optional arrow indicator */
.footer-links a::before {
  content: '›';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: opacity 0.2s ease, left 0.2s ease;
  color: var(--nav-accent, #ff6b35);
  font-size: 1rem;
  font-weight: 300;
}

.footer-links a:hover::before {
  opacity: 1;
  left: -10px;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  gap: 0.3rem;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--nav-text, #b0b0b0) !important;
  font-size: 1.1rem;
  text-decoration: none;
  opacity: 0.8;
  border-radius: 50%;
  transition: none !important;
  background: transparent;
  border: none;
}

.social-icons a:hover {
  color: var(--nav-text, #b0b0b0) !important;
  background: transparent !important;
  transform: none !important;
  opacity: 0.8;
  border: none;
  box-shadow: none;
}

.social-icons a::before {
  display: none;
}

/* ===== CONTACT SERVICE TEXT ===== */
.footer-service {
  color: var(--nav-text, #b0b0b0);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.8;
  margin-bottom: 15px;
  transition: none;
}

.footer-service a {
  color: var(--nav-text, #b0b0b0);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-service a:hover {
  color: var(--nav-accent, #ff6b35) !important;
}

.footer-service i {
  margin-right: 8px;
  color: var(--nav-accent, #ff6b35);
  opacity: 0.7;
  font-size: 0.95rem;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--nav-text, #b0b0b0);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  color: var(--nav-text, #b0b0b0);
}

.designer {
  font-size: 0.85rem;
  opacity: 0.8;
}

.designer a {
  color: var(--nav-text, #b0b0b0);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px dotted transparent;
  padding-bottom: 2px;
}

.designer a:hover {
  color: var(--nav-accent, #ff6b35) !important;
  border-bottom-color: var(--nav-accent, #ff6b35);
}

/* ===== RESPONSIVE - TWO COLUMNS ON ALL SCREENS BELOW 1200px ===== */

/* Large Desktop (1200px and above) - 4 columns */
@media (min-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Desktop (992px to 1199px) - 2 COLUMNS */
@media (max-width: 1199px) and (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-col {
    width: 100%;
  }
  
  .footer-about {
    max-width: 100%;
  }
}

/* Tablet Landscape (768px to 991px) - 2 COLUMNS */
@media (max-width: 991px) and (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
  
  .footer-col {
    width: 100%;
  }
  
  .footer-about {
    max-width: 100%;
  }
}

/* Mobile Landscape (576px to 767px) - 2 COLUMNS */
@media (max-width: 767px) and (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    padding: 3rem 0 1.5rem;
  }
  
  .footer-col {
    width: 100%;
  }
  
  .footer-title,
  .footer-heading,
  .footer-about,
  .footer-links a,
  .footer-service,
  .footer-service a {
    font-size: 0.9rem;
  }
  
  .footer-about {
    max-width: 100%;
  }
}

/* Mobile Portrait (426px to 575px) - 2 COLUMNS */
@media (max-width: 575px) and (min-width: 426px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-col {
    width: 100%;
  }
  
  .footer-title,
  .footer-heading {
    text-align: left;
    font-size: 0.9rem;
  }
  
  .footer-heading::after,
  .footer-title::after {
    left: 0;
    transform: none;
  }
  
  .footer-about {
    text-align: left;
    max-width: 100%;
    font-size: 0.85rem;
  }
  
  .footer-links {
    text-align: left;
  }
  
  .footer-links a {
    font-size: 0.85rem;
    white-space: normal;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .footer-service {
    text-align: left;
    font-size: 0.85rem;
  }
  
  .social-icons {
    justify-content: flex-start;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* Small Mobile (up to 425px) - 2 COLUMNS */
@media (max-width: 425px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
    padding: 2rem 0 1rem;
  }
  
  .footer-col {
    width: 100%;
  }
  
  .footer-title,
  .footer-heading {
    text-align: left;
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  
  .footer-heading::after,
  .footer-title::after {
    width: 25px;
    bottom: -6px;
    left: 0;
    transform: none;
  }
  
  .footer-about {
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: 100%;
  }
  
  .footer-links {
    text-align: left;
  }
  
  .footer-links li {
    margin-bottom: 6px;
  }
  
  .footer-links a {
    font-size: 0.8rem;
    white-space: normal;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .footer-service {
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .footer-service i {
    font-size: 0.8rem;
    margin-right: 5px;
  }
  
  .social-icons {
    justify-content: flex-start;
    gap: 0.2rem;
    margin-top: 10px;
  }
  
  .social-icons a {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    padding: 18px 0;
    font-size: 0.8rem;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .designer {
    font-size: 0.75rem;
  }
  
  .designer a {
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile (up to 320px) - 2 COLUMNS */
@media (max-width: 320px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 8px;
  }
  
  .footer-title,
  .footer-heading {
    font-size: 0.8rem;
  }
  
  .footer-about,
  .footer-links a,
  .footer-service {
    font-size: 0.75rem;
  }
  
  .social-icons a {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .footer *,
  .footer::before,
  .footer::after,
  .footer-heading::after,
  .footer-title::after,
  .footer-bottom::before,
  .footer-links a,
  .footer-service a,
  .designer a {
    transition: none !important;
    animation: none !important;
  }
  
  .footer-links li:hover {
    transform: none;
  }
  
  .footer-heading:hover::after,
  .footer-title:hover::after {
    width: 30px;
  }
}/* ===== MUTE TOGGLE BUTTON - LEFT SIDE, GREY, NO ANIMATION ===== */
.mute-toggle {
  position: absolute;
  bottom: 30px;
  left: 30px; /* Changed from right to left */
  z-index: 10;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(156, 141, 141, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #cd3f07; /* Grey color */
  box-shadow: none;
  outline: none;
  padding: 0;
  transition: none; /* No animation */
}

.mute-toggle i {
  font-size: 1.3rem;
  color: #cd3f07;; /* Grey color */
}

/* Muted state - same grey */
.mute-toggle.muted i {
  color:  #cd3f07;; /* Keep grey when muted */
}

/* No hover effects */
.mute-toggle:hover,
.mute-toggle:hover i,
.mute-toggle.muted:hover,
.mute-toggle.muted:hover i {
  color:  #cd3f07;; /* Stay grey on hover */
  background: rgba(0, 0, 0, 0.5); /* No background change */
  transform: none; /* No transform */
  border-color: rgba(255, 255, 255, 0.1); /* No border change */
}

/* Remove all animations */
.mute-toggle,
.mute-toggle *,
.mute-toggle::before,
.mute-toggle::after {
  animation: none !important;
  transition: none !important;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .mute-toggle {
    width: 40px;
    height: 40px;
    bottom: 25px;
    left: 25px;
  }
  
  .mute-toggle i {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .mute-toggle {
    width: 38px;
    height: 38px;
    bottom: 20px;
    left: 20px;
  }
  
  .mute-toggle i {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .mute-toggle {
    width: 35px;
    height: 35px;
    bottom: 15px;
    left: 15px;
  }
  
  .mute-toggle i {
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
  .mute-toggle {
    width: 32px;
    height: 32px;
    bottom: 12px;
    left: 12px;
  }
  
  .mute-toggle i {
    font-size: 0.9rem;
  }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
  .mute-toggle {
    bottom: max(30px, env(safe-area-inset-bottom));
    left: max(30px, env(safe-area-inset-left));
  }
}
