/* Global Font Size Adjustments */
/* Slightly reduce font sizes across the website */

/* Base font size reduction */
html {
  font-size: 15px; /* Slightly reduced from default 16px */
}

body {
  font-size: 15px; /* Slightly reduced from 16px */
  line-height: 1.7; /* Maintained good line height */
}

/* Heading font size reductions */
h1, .h1 {
  font-size: 42px !important; /* Reduced from 36px */
  line-height: 1.2;
}

h2, .h2 {
  font-size: 32px !important; /* Reduced from 30px */
  line-height: 1.3;
}

h3, .h3 {
  font-size: 24px !important; /* Reduced from 24px */
  line-height: 1.3;
}

h4, .h4 {
  font-size: 19px !important; /* Reduced from 20px */
  line-height: 1.4;
}

h5, .h5 {
  font-size: 17px !important; /* Reduced from 18px */
  line-height: 1.4;
}

h6, .h6 {
  font-size: 15px !important; /* Reduced from 16px */
  line-height: 1.4;
}

/* Paragraph and text elements */
p {
  font-size: 15px !important; /* Slightly reduced from 16px */
  line-height: 1.7;
}

/* Navigation menu font size */
.ltn__main-menu ul li a {
  font-size: 15px !important; /* Slightly reduced navigation font size */
}

/* Button font size adjustments */
.btn, .theme-btn-1, .theme-btn-2 {
  font-size: 14px !important; /* Slightly reduced button font size */
  padding: 10px 18px !important; /* Adjusted padding accordingly */
}

/* Form elements */
input, textarea, select {
  font-size: 14px !important; /* Slightly reduced form element font size */
}

/* Card and content areas */
.ltn__feature-item h6,
.ltn__feature-item h5,
.ltn__feature-item h4 {
  font-size: 17px !important; /* Slightly reduced feature item headings */
}

.ltn__feature-item p {
  font-size: 14px !important; /* Slightly reduced feature item text */
}

/* Footer text */
footer p, footer a, footer span {
  font-size: 14px !important; /* Slightly reduced footer text */
}

/* Widget and sidebar text */
.widget-title {
  font-size: 17px !important; /* Slightly reduced widget titles */
}

.widget-content p, .widget-content a {
  font-size: 14px !important; /* Slightly reduced widget content */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  html {
    font-size: 14px; /* Slightly reduced for mobile */
  }
  
  body {
    font-size: 14px;
  }
  
  h1, .h1 {
    font-size: 28px !important;
  }
  
  h2, .h2 {
    font-size: 24px !important;
  }
  
  h3, .h3 {
    font-size: 20px !important;
  }
  
  .ltn__main-menu ul li a {
    font-size: 14px !important;
  }
}

/* Fixed Contact Icons */
.fixed-contact-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fixed-contact-icons a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.fixed-contact-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-icon {
  background-color: #25D366;
}

.whatsapp-icon:hover {
  background-color: #128C7E;
}

.call-icon {
  background-color: #007bff;
}

.call-icon:hover {
  background-color: #0056b3;
}

@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);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .fixed-contact-icons {
    bottom: 15px;
    right: 15px;
  }
  
  .fixed-contact-icons a {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Fixed Social Icons */
.fixed-social-icons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fixed-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  opacity: 0.9;
}

.fixed-social-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.facebook-icon {
  background-color: #1877F2;
}

.facebook-icon:hover {
  background-color: #166FE5;
}

.instagram-icon {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.instagram-icon:hover {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  filter: brightness(1.1);
}

.twitter-icon {
  background-color: #000000;
}

.twitter-icon:hover {
  background-color: #333333;
}

.x-icon {
  font-weight: bold;
  font-size: 18px;
  font-family: Arial, sans-serif;
}

/* Mobile responsive for social icons */
@media (max-width: 768px) {
  .fixed-social-icons {
    right: 15px;
    gap: 10px;
  }
  
  .fixed-social-icons a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
