/*--------------------------------------------------------------
# Fix Footer Overlap Issue
--------------------------------------------------------------*/
.main {
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact.section {
  margin-bottom: 0;
  padding-bottom: 60px;
}

.footer {
  margin-top: 0 !important;
  clear: both;
  position: relative !important;
  z-index: 1;
}

/* Ensure footer columns display properly */
.footer .row {
  display: flex;
  flex-wrap: wrap;
}

.footer .col-lg-4,
.footer .col-lg-3,
.footer .col-lg-5 {
  display: block;
  position: relative;
}

/**
* YUGA INFOTECH - Custom Enhancements
* Modern design improvements and custom styling
*/

/*--------------------------------------------------------------
# Enhanced Color Scheme
--------------------------------------------------------------*/
:root {
  /* YUGA INFOTECH Brand Colors - Based on Logo */
  --primary-orange: #ff8c42;
  --primary-dark: #3e4447;
  --primary-light: #5a5d60;
  --secondary-orange: #ff7a28;
  --accent-orange: #ff8c42;
  --success-green: #28a745;
  --warning-yellow: #ffc107;
  --text-dark: #3e4447;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-dark: #3e4447;
  --bg-gradient-start: #3e4447;
  --bg-gradient-end: #5a5d60;
  --orange-gradient-start: #ff8c42;
  --orange-gradient-end: #ff7a28;
  
  /* Update existing variables to match YUGA theme */
  --accent-color: #ff8c42;
  --heading-color: #3e4447;
  --default-color: #495057;
  --nav-hover-color: #ff8c42;
}

/*--------------------------------------------------------------
# Modern Typography Enhancements
--------------------------------------------------------------*/
body {
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Enhanced Hero Section
--------------------------------------------------------------*/
.hero {
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  min-height: 80vh;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(62, 68, 71, 0.05) 100%);
  pointer-events: none;
}

.hero h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero h1 span {
  color: var(--accent-orange);
  text-shadow: 2px 2px 4px rgba(255, 140, 66, 0.3);
}

.hero p {
  font-size: 1.25rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started {
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--orange-gradient-start) 0%, var(--orange-gradient-end) 100%);
  border: none;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
  transition: all 0.4s ease;
}

.hero .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6);
  background: linear-gradient(135deg, var(--orange-gradient-end) 0%, var(--orange-gradient-start) 100%);
}

.hero .hero-img {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Enhanced About Section
--------------------------------------------------------------*/
.about {
  background-color: #ffffff;
}

.about .who-we-are {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about h2 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.about img {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about .read-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--orange-gradient-start) 0%, var(--orange-gradient-end) 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.about .read-more:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.5);
  background: linear-gradient(135deg, var(--orange-gradient-end) 0%, var(--orange-gradient-start) 100%);
}

.about .read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.about .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Enhanced Services Section
--------------------------------------------------------------*/
.services {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services .service-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.services .service-item h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.services .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services .service-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.services .service-list li:last-child {
  border-bottom: none;
}

.services .service-list li:hover {
  padding-left: 10px;
  color: var(--accent-color);
}

.services .service-list li i {
  color: var(--accent-orange);
  font-size: 1.2rem;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.services img {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.15) 0%, rgba(62, 68, 71, 0.1) 100%);
  pointer-events: none;
}

.why-us .why-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 140, 66, 0.3);
  height: 100%;
}

.why-us .why-box:hover {
  background: rgba(255, 140, 66, 0.2);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
  border-color: var(--accent-orange);
}

.why-us .why-box i {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(255, 140, 66, 0.5);
  display: inline-block;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.why-us .why-box:hover i {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.2);
}

.why-us .why-box h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.why-us .why-box p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0;
}

/*--------------------------------------------------------------
# Enhanced Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: #f8f9fa;
}

.contact .info-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(255, 140, 66, 0.2);
}

.contact .info-item i {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 15px;
  display: inline-block;
  padding: 9px;
  background: rgba(255, 140, 66, 0.1);
  border-radius: 50%;
  line-height: 1;
  text-align: center;
  transition: all 0.3s ease;
}

.contact .info-item:hover i {
  background: rgba(255, 140, 66, 0.2);
  transform: scale(1.1);
}

.contact .info-item h3 {
  font-size: 1.25rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact .info-item p {
  margin: 5px 0;
  color: var(--text-light);
}

.contact .info-item a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact .info-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.contact .php-email-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.15);
  outline: none;
}

.contact .php-email-form button[type="submit"] {
  background: linear-gradient(135deg, var(--orange-gradient-start) 0%, var(--orange-gradient-end) 100%);
  border: none;
  padding: 14px 40px;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.contact .php-email-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.5);
  background: linear-gradient(135deg, var(--orange-gradient-end) 0%, var(--orange-gradient-start) 100%);
}

.contact iframe {
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact .info-item .address-line {
  margin: 3px 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.contact .info-item .address-line:first-of-type {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1.05rem;
  margin-top: 10px;
  margin-bottom: 8px;
}

/*--------------------------------------------------------------
# Enhanced Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: rgba(255, 255, 255, 0.8);
}

.footer .sitename {
  color: white;
  font-size: 1.75rem;
}

.footer h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-color);
}

.footer .social-links a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.3);
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 140, 66, 0.4);
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Enhanced Header
--------------------------------------------------------------*/
.header {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: linear-gradient(to right, rgba(62, 68, 71, 0.02) 0%, rgba(255, 140, 66, 0.02) 100%);
}

.scrolled .header {
  box-shadow: 0 4px 20px rgba(255, 140, 66, 0.15);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.header .logo h1 {
  background: linear-gradient(135deg, var(--yuga-dark-gray) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.header .logo:hover h1 {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--yuga-dark-gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*--------------------------------------------------------------
# Smooth Animations
--------------------------------------------------------------*/
.fade-in {
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.shadow {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
  border-radius: 15px !important;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*--------------------------------------------------------------
# Responsive Enhancements
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .why-us .why-box {
    margin-bottom: 30px;
  }
  
  .services .service-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 120px 0 40px 0;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .contact .info-item {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Loading States
--------------------------------------------------------------*/
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 102, 204, 0.3);
  border-radius: 50%;
  border-top-color: var(--accent-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Success/Error Messages
--------------------------------------------------------------*/
.sent-message {
  background: linear-gradient(135deg, var(--success-green) 0%, #20c997 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 15px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.error-message {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 15px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/*--------------------------------------------------------------
# Print Styles
--------------------------------------------------------------*/
@media print {
  .header,
  .footer,
  .scroll-top,
  .btn-get-started {
    display: none !important;
  }
  
  body {
    background: white;
  }
  
  .section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Logo Styling
--------------------------------------------------------------*/
.header .logo img {
  max-height: 50px;
  width: auto;
  margin-right: 12px;
  transition: transform 0.3s ease;
}

.header .logo:hover img {
  transform: scale(1.05);
}

.header .logo h1 {
  margin: 0;
}

@media (max-width: 768px) {
  .header .logo img {
    max-height: 40px;
  }
  
  .header .logo h1 {
    font-size: 1.25rem;
  }
}

.footer .logo img {
  max-height: 45px;
  width: auto;
  margin-right: 12px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.footer .logo:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.footer .sitename {
  margin: 0;
}

/*--------------------------------------------------------------
# Enhanced Modern Footer Design
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}

/* Wave Decoration */
.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  fill: #f8f9fa;
}

/* Footer Top Section */
.footer-top {
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}

.footer .footer-about {
  padding-right: 20px;
}

.footer .logo {
  margin-bottom: 20px;
}

.footer .logo img {
  max-height: 50px;
  filter: brightness(0) invert(1);
  margin-right: 15px;
}

.footer .sitename {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

/* Contact Items */
.footer-contact {
  margin-top: 20px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.footer-contact .contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.footer-contact .contact-item i {
  font-size: 1.5rem;
  color: #00a896;
  margin-right: 15px;
  margin-top: 3px;
  min-width: 25px;
}

.footer-contact .contact-item strong {
  display: block;
  color: white;
  margin-bottom: 5px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact .contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact .contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
  color: #00a896;
}

/* Footer Links */
.footer-links h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #0066cc, #00a896);
}

.footer-links h4 i {
  color: #00a896;
  font-size: 1.2rem;
}

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

.footer-links ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-links ul li:hover {
  padding-left: 10px;
}

.footer-links ul li i {
  color: #00a896;
  font-size: 0.8rem;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.footer-links ul li:hover i {
  transform: translateX(5px);
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00a896;
}

/* Business Hours */
.business-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item .day {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hours-item .time {
  color: #00a896;
  font-weight: 600;
}

.hours-item.closed .time {
  color: #ff6b6b;
}

/* Footer CTA */
.footer-cta {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(0, 168, 150, 0.2));
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(0, 168, 150, 0.3);
}

.footer-cta h5 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.btn-footer-cta {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #0066cc, #00a896);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 168, 150, 0.3);
}

.btn-footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 150, 0.4);
  color: white;
}

/* Social Media Bar */
.footer-social {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
}

.footer-social .social-links {
  gap: 15px;
}

.footer-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer-social .social-links a:hover {
  background: linear-gradient(135deg, #0066cc, #00a896);
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 168, 150, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Copyright Bar */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom strong {
  color: white;
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #00a896;
}

.footer-bottom-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-top {
    padding: 60px 0 30px;
  }
  
  .footer-links,
  .footer-newsletter {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .footer-wave svg {
    height: 40px;
  }
  
  .footer-top {
    padding: 50px 0 20px;
  }
  
  .footer-social .social-links {
    justify-content: center !important;
    margin-top: 15px;
  }
  
  .footer-bottom-links {
    margin-top: 10px;
    flex-wrap: wrap;
  }
  
  .footer-contact .contact-item {
    padding: 12px;
  }
  
  .business-hours {
    padding: 15px;
  }
}

/* Footer Animation */
@keyframes footerFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-about,
.footer-links,
.footer-newsletter {
  animation: footerFadeIn 0.6s ease-out;
}

.footer-links {
  animation-delay: 0.1s;
}

.footer-newsletter {
  animation-delay: 0.2s;
}