/* --- THEME COLORS --- */
:root {
  --primary-color: #ffffff;
  --secondary-color: #524d4d;
  --bg-color: #000000;
  --text-color: #ffffff;
  --nav-bg: #000000;
  --section-bg: #000000;
  --footer-bg: #000000;
  --footer-text: #e0f2e9;
  /* WhatsApp Button Color */
  --whatsapp-color: #25d366;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px !important;
  right: 40px !important;
  background-color: var(--whatsapp-color);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 2px 2px 10px #666;
  color: #FFF;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Adjust for mobile */
@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}


/* --- BASIC STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* Offset for sticky header */
  /* HIDDEN SCROLLBAR TRICK START */
  -ms-overflow-style: none;
  /* IE and Edge */
  /* scrollbar-width: none;  Firefox - Commented out */
}

/* Chrome, Safari and Opera (Body Scrollbar Hide) */
body::-webkit-scrollbar {
  display: none;
}

/* END HIDDEN SCROLLBAR TRICK */

/* NEW WRAPPER TO ENSURE SCROLLBAR IS HIDDEN */
#main-wrapper {
  /* This makes sure the content uses the full height */
  min-height: 100vh;
  /* Apply scrollbar hiding specifically to the wrapper element */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  background-color: #ffffff;
}

/* WebKit rule for the wrapper */
#main-wrapper::-webkit-scrollbar {
  display: none;
}

/* END NEW WRAPPER STYLES */

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

/* Updated section logic: Now ALL sections use the fade-in, including the new placement of #stats */
section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(30px);
  /* OPTIMIZED: Faster transition (0.4s) for snappier feel */
  transition: all 0.4s ease-out;
}

section.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- UTILITY CLASSES (FIXED INLINE STYLES) --- */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.form-submit-wrapper {
  margin-top: 10px;
}

/* --- END UTILITY CLASSES --- */

/* --- NAVBAR --- */
nav {
  background: var(--nav-bg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 10px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

nav .logo:hover {
  transform: scale(1.05);
}

nav .logo img {
  width: 60px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-left: 10px;
}

nav ul li a {
  font-weight: 600;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--secondary-color);
}

/* --- DROPDOWN MENU --- */
nav ul li.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--nav-bg);
  padding: 10px 0;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  min-width: 180px;
  z-index: 1000;
  flex-direction: column;
  gap: 0;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  padding: 10px 20px;
  color: white;
  display: block;
  white-space: nowrap;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu li a:last-child {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: var(--secondary-color);
  color: white;
  padding-left: 25px;
  /* Slight indent on hover */
}

/* Show on hover */
nav ul li.dropdown:hover .dropdown-menu {
  display: flex;
}

/* --- NESTED DROPDOWN (SUBMENU) --- */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-menu .submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  /* Fly out to the right */
  margin-top: -5px;
  background-color: var(--nav-bg);
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  min-width: 160px;
  padding: 10px 0;
  flex-direction: column;
}

.dropdown-submenu:hover>.submenu {
  display: flex;
}

/* Mobile Dropdown Fix */
@media(max-width:768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0 0 0 20px;
    background: transparent;
    min-width: 100%;
  }

  .dropdown-menu .submenu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
    /* Deep indentation for nesting */
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    display: flex;
    /* Always show nested items on mobile for simplicity, or keep hover */
  }
}

nav .cta {
  display: flex;
  gap: 25px;
  align-items: center;
}

nav .cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

nav .cta a.call {
  background: var(--secondary-color);
  color: white;
}

nav .cta a.call:hover {
  background: #2d8e47;
  transform: scale(1.05);
}

nav .cta a.quote {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

nav .cta a.quote:hover {
  background: var(--secondary-color);
  color: white;
  transform: scale(1.05);
}

/* --- NEW MOBILE TOGGLE CSS --- */
.menu-toggle {
  display: none;
  /* Hidden by default */
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--secondary-color);
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 101;
  /* Above other nav elements */
}


/* --- HERO --- */
.hero {
  height: 100vh;
  background: center/cover no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* FIX: Remove gap between header and hero */
  margin: 0;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero h1,
.hero p,
.hero a {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  min-height: 80px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  min-height: 60px;
}

.hero a {
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  /* Animating Gradient Background - Darker Theme */
  background: linear-gradient(45deg, #000000, #1a5c2e, #000000);
  background-size: 200% auto;
  animation: gradientMove 3s infinite linear;
  color: white;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.3s ease;
  /* Added transform transition */
}

/* Keyframes for button animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.hero a.show-btn {
  opacity: 1;
}

/* Typing cursor effect */
.typing-cursor {
  display: inline-block;
  width: 3px;
  background-color: var(--secondary-color);
  margin-left: 2px;
  animation: blink 0.7s infinite;
}

@keyframes blink {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

/* --- STATS/COUNTER SECTION (MOVED) --- */
#stats {
  background: var(--bg-color);
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  /* Revert to rounded corners */
  margin: 60px auto;
  /* Revert to standard margin for visibility check */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  padding: 20px 15px;
  margin: 10px;
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 5px;
  display: block;
  display: flex;
  /* Added for icon alignment */
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* Space between icon and number */
}

.stat-number i {
  font-size: 1em;
  /* Icon size relative to number */
}

.stat-description {
  font-size: 1.1rem;
  color: var(--text-color);
}

/* --- ABOUT --- */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.about-text {
  flex: 1;
  min-width: 250px;
}

.about-img {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- PRODUCTS --- */
#products {
  padding-bottom: 60px;
}

/* Warranty Banner */
.warranty-banner {
  background: linear-gradient(135deg, #FFD700, #DAA520);
  color: #000;
  text-align: center;
  padding: 15px;
  margin: 0 auto 30px;
  max-width: 600px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  animation: shine 3s infinite;
}

.warranty-banner i {
  font-size: 1.5rem;
}

@keyframes shine {
  0% {
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
  }

  50% {
    box-shadow: 0 4px 25px rgba(218, 165, 32, 0.8);
  }

  100% {
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
  }
}

/* Style for the Download Button */
/* btn-download removed as it is replaced by product-download-btn */

.product-brand-section {
  margin-bottom: 30px;
}

.product-download-wrapper {
  margin-bottom: 10px;
  text-align: center;
}

.product-brand-title {
  color: white;
  margin-top: 0;
  /* Remove default top margin for tighter spacing */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.foxess-logo-title {
  height: 1.5em;
  width: auto;
  object-fit: contain;
}

/* UPDATED: Product Titles - No Accordion */
.product-category-title {
  color: white;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid var(--secondary-color);
  padding-left: 10px;
  /* Removed cursor pointer since it's no longer clickable */
}

/* ADDED: Subcategory Title Style */
.product-subcategory-title {
  color: #e0e0e0;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  padding-left: 10px;
  border-left: 3px solid var(--secondary-color);
}

.product-divider {
  border: none;
  height: 2px;
  background: white;
  margin: 40px 0;
  opacity: 0.3;
}

/* ADDED: Product Download Button */
.product-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
}

.product-download-btn:hover {
  background-color: #2d8e47;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


/* UPDATED: Product Grid - Always Visible */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  /* Products are now always visible */
  opacity: 1;
  margin-bottom: 20px;
}

.product-card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgb(255, 255, 255);
  background: var(--bg-color);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  text-align: center;
  position: relative;
  /* IMPORTANT for popup positioning */
}

.product-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.7);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px;
}

.product-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
}

.product-card p {
  font-size: 14px;
  color: var(--text-color);
}



/* --- SERVICES --- */
#services {
  padding-bottom: 60px;
}

/* Service grid updated for 3 items */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgb(255, 255, 255);
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s;
  background: var(--bg-color);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  background: rgba(64, 100, 83, 0.2);
}

/* --- CTA --- */
.cta-section {
  text-align: center;
  padding: 50px 20px;
  border-radius: 10px;
  color: white;
  background: linear-gradient(-45deg, #34a853, #0f9d58, #021721, #022f38);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

.cta-section a {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 15px;
  background: #fff;
  color: #000000;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.cta-section a:hover {
  transform: scale(1.05);
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* --- FAQ --- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgb(255, 255, 255);
  background: var(--bg-color);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  /* Ensure content is hidden */
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.7);
}

/* FAQ Header (Question) */
.faq-item h4 {
  position: relative;
  padding-right: 25px;
  /* Space for the arrow */
  margin-bottom: 0;
  transition: color 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
}

.faq-item h4::after {
  content: '\f078';
  /* Down arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 0.8em;
}

/* FAQ Answer (Content) */
.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, margin-top 0.4s ease, opacity 0.3s;
  margin-top: 0;
  padding: 0 5px;
  color: #ccc;
  opacity: 0;
}

/* Active state for animation */
.faq-item.faq-active h4 {
  color: var(--secondary-color);
}

.faq-item.faq-active h4::after {
  transform: translateY(-50%) rotate(180deg);
  /* Rotate up when active */
}

.faq-item.faq-active p {
  margin-top: 10px;
  opacity: 1;
  /* max-height set by JavaScript */
}

/* --- TESTIMONIALS --- */
#testimonials {
  padding-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  border-left: 5px solid var(--secondary-color);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 15px;
  position: relative;
  line-height: 1.4;
  color: #ccc;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
  display: block;
}

.testimonial-author small {
  display: block;
  font-weight: normal;
  color: #999;
}


/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.contact-card,
form {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background: var(--bg-color);
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background: #f0f0f0;
  color: #000000;
}

button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button.submit {
  background: var(--secondary-color);
  color: white;
  font-weight: bold;
}

/* ADDED MAP STYLES */
.map-container {
  width: 100%;
  height: 250px;
  /* Gives the map enough height to be useful */
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* END ADDED MAP STYLES */


/* --- FOOTER --- */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 20px;
  font-size: 14px;
  transition: all 0.5s ease;
}

footer a {
  color: #34a853;
  text-decoration: underline;
}

/* Social Media Links in Footer */
.social-links {
  margin-top: 20px;
  margin-bottom: 20px;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  margin: 0 15px;
  transition: color 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  color: #34a853;
  /* Match theme green */
  transform: scale(1.1);
  /* Slight zoom on hover */
}




/* --- MEDIA QUERIES --- */


/* --- TABLET MEDIA QUERY (New) --- */
@media (max-width: 1024px) {
  section {
    padding: 30px 20px;
    margin: 40px auto;
  }

  .products-grid,
  .services-grid,
  .stats-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for tablet */
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .warranty-banner {
    max-width: 90%;
    font-size: 1rem;
  }
}

/* **GUARDRAIL: Hide popup on medium/small screens** */


@media(max-width:768px) {

  /* Show the toggle button on small screens */
  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
  }

  /* Removed old CTA adjustment */

  /* --- NAVBAR --- */
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    position: relative;
  }

  nav .logo {
    margin-bottom: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 5px;
    display: none;
    /* Hidden by default */
    width: 100%;
    margin-top: 10px;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li a {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav .cta {
    position: absolute;
    top: 15px;
    right: 60px;
    /* Space for menu toggle (20px + width) */
    margin-top: 0;
    width: auto;
    padding-left: 0;
    justify-content: flex-end;
  }

  nav .cta a {
    padding: 6px 12px;
    /* Slightly smaller padding for mobile fit */
    font-size: 0.8rem;
  }

  nav .cta a.quote {
    display: none;
  }

  /* Hide secondary CTA on small screen */

  /* --- HERO --- */
  .hero {
    height: 70vh;
  }

  .hero h1 {
    font-size: 1.8rem;
    min-height: auto;
  }

  .hero p {
    font-size: 0.95rem;
    padding: 0 15px;
    min-height: auto;
  }

  .warranty-banner {
    font-size: 0.9rem;
    padding: 10px;
    width: 95%;
  }

  /* --- SECTIONS --- */
  section {
    margin: 40px auto;
    padding: 30px 15px;
    /* FIX: Force visibility on mobile to prevent "invisible content" bug via JS observer */
    opacity: 1;
    transform: translateY(0);
  }

  .about-content {
    flex-direction: column;
  }

  /* --- STATS --- */
  .stats-grid {
    flex-direction: column;
  }

  .stat-item {
    min-width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  /* --- PRODUCTS --- */
  .products-grid {
    /* Force single column stacking */
    grid-template-columns: 1fr;
  }

  .product-card {
    /* Remove aggressive hover scale on mobile */
    transform: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }

  /* --- CONTACT --- */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 200px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }


}

/* --- FIXES FOR INLINE STYLES --- */
.dropdown-item i {
  float: right;
  font-size: 0.8em;
  margin-top: 3px;
}

.about-full-img {
  margin-top: 30px;
  text-align: center;
}

.about-full-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#phone-number {
  font-size: 1.3rem;
  font-weight: bold;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

.social-links.social-links-left {
  justify-content: flex-start;
  margin-left: -15px;
}