/* ===================================
   HOME PAGE SPECIFIC STYLES
   =================================== */

/* Body padding to account for fixed header */
body {
  padding-top: 80px;
}

@media (max-width: 991.98px) {
  body {
      padding-top: 70px;
  }
}

/* FIXED: Home page navbar - ALWAYS white background with DARK hamburger icon */
body .main-navbar,
body .main-navbar.scrolled,
body .main-navbar:not(.scrolled) {
  background-color: var(--white) !important;
}

body .main-navbar .navbar-brand .brand-name,
body .main-navbar.scrolled .navbar-brand .brand-name {
  color: var(--brand-green) !important;
}

body .main-navbar .navbar-brand .brand-tagline,
body .main-navbar.scrolled .navbar-brand .brand-tagline {
  color: var(--gray-500) !important;
}

body .main-navbar .navbar-nav .nav-link,
body .main-navbar.scrolled .navbar-nav .nav-link {
  color: var(--gray-700) !important;
}

body .main-navbar .navbar-toggler,
body .main-navbar.scrolled .navbar-toggler {
  background-color: var(--white) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

/* CRITICAL FIX: Force dark hamburger icon on home page */
body .main-navbar .navbar-toggler-icon,
body .main-navbar.scrolled .navbar-toggler-icon,
body.home-page .navbar-toggler-icon,
.home-page .main-navbar .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(0, 0, 0, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 28px !important;
  height: 22px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  display: block !important;
}

/* ===================================
 HERO SECTION
 =================================== */
 .hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 120px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-section .container {
  max-width: none !important;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  color: var(--white);
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 0 0 100px;
  animation: heroFadeInUp 1s ease-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

@keyframes heroFadeInUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
  text-align: left;
  width: 100%;
  max-width: 900px;
  margin-top: -30px;
  transform: translateX(-5px);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
  color: rgb(0, 0, 0);
  font-weight: var(--fw-normal);
  text-align: left;
  max-width: 650px;
  width: 100%;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  transform: translateX(-5px);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  animation: heroButtonsSlideUp 1s ease-out 0.3s both;
  width: 100%;
  margin-top: var(--spacing-md);
  transform: translateX(-20px);
}

@keyframes heroButtonsSlideUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

.hero-dots .dot.active {
  background-color: var(--secondary-color);
  border-color: var(--white);
  transform: scale(1.2);
}

.hero-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

/* ===================================
 SECTION STYLES
 =================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--gray-800);
  margin-bottom: var(--spacing-md);
  position: relative;
  text-align: center; /* ADDED: Center align title */
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center; /* ADDED: Center align subtitle */
}

/* ===================================
 SERVICES PREVIEW SECTION
 =================================== */
.services-preview-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

.services-preview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.services-preview-section .container {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

/* UPDATED: Service Card - Making it a flexbox container with column direction */
.service-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  /* New flexbox properties to position the Learn More link at the bottom */
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensure all cards have the same height */
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: var(--fs-2xl);
  color: var(--white);
}

.service-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--gray-800);
  margin-bottom: var(--spacing-md);
  text-align: center; /* ADDED: Center align title */
}

.service-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  /* Added flex-grow to push the link to the bottom */
  flex-grow: 1;
  text-align: center; /* ADDED: Center align description */
}

/* UPDATED: Service Link - Position at the bottom of the card */
.service-link {
  color: var(--primary-color);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  /* New styles to ensure consistent positioning */
  margin-top: auto;
  align-self: center;
}

.service-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* ===================================
 FEATURED PROJECTS SECTION
 =================================== */
.featured-projects-section {
  padding: 100px 0;
  background: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.project-card {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  background: var(--white);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(245, 158, 11, 0.8) 0%,
      rgba(5, 150, 105, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info {
  text-align: center;
  color: var(--white);
  padding: var(--spacing-lg);
}

.project-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--spacing-sm);
  text-align: center; /* ADDED: Center align title */
}

.project-category {
  font-size: var(--fs-sm);
  opacity: 0.9;
  margin-bottom: var(--spacing-lg);
  text-align: center; /* ADDED: Center align category */
}

.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition-fast);
}

.project-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: scale(1.1);
}

.projects-cta {
  text-align: center;
}

/* ===================================
 CALL TO ACTION SECTION
 =================================== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23374151" opacity="0.3"/></svg>');
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  margin-bottom: var(--spacing-lg);
  color: var(--white);
  text-align: center; /* ADDED: Center align title */
}

.cta-subtitle {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-align: center; /* ADDED: Center align subtitle */
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  text-align: center; /* ADDED: Center align text */
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--fs-lg);
}

.contact-item div {
  display: flex;
  flex-direction: column;
  text-align: center; /* ADDED: Center align text */
}

.contact-label {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
  text-align: center; /* ADDED: Center align label */
}

.contact-value {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--white);
  text-align: center; /* ADDED: Center align value */
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  justify-content: center; /* ADDED: Center align buttons */
}

/* ===================================
 ANIMATIONS
 =================================== */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
      opacity: 0;
      transform: translateX(-30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
      opacity: 0;
      transform: translateX(30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* ===================================
 RESPONSIVE DESIGN - IMPROVED with HAMBURGER FIX
 =================================== */

/* Large devices (desktops, 992px and up) */
@media (max-width: 991.98px) {
  .hero-section {
    align-items: center;
    padding-top: 50px;
  }
  
  .hero-section .container {
    max-width: 1140px !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero-content {
    text-align: center;
    align-items: center;
    padding: 0 30px;
    transform: none;
  }
  
  .hero-title {
    text-align: center;
    margin-top: 0;
    transform: none;
  }
  
  .hero-subtitle {
    text-align: center;
    max-width: 100%;
    transform: none;
    color: rgba(0, 0, 0, 0.95);
  }
  
  .hero-buttons {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--spacing-md);
      width: 100%;
      transform: none;
  }
  
  .btn {
      min-width: 200px;
      justify-content: center;
  }
  
  .cta-content {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
      text-align: center;
  }
  
  .cta-buttons {
      justify-content: center;
  }
  
  /* FORCE DARK HAMBURGER ICON ON HOME PAGE - MOBILE */
  body .main-navbar .navbar-toggler-icon,
  body.home-page .navbar-toggler-icon,
  .home-page .main-navbar .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(0, 0, 0, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    display: block !important;
    width: 28px !important;
    height: 22px !important;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 767.98px) {
  .hero-section {
      min-height: 500px;
      padding: 0 15px;
      align-items: center;
      padding-top: 80px;
      height: auto;
  }
  
  .hero-section .container {
    max-width: 720px !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero-content {
      padding: 0 20px;
      max-width: 100%;
      text-align: center;
      align-items: center;
      transform: none;
  }
  
  .hero-title {
    text-align: center;
    margin-top: 0;
    transform: none;
  }
  
  .hero-subtitle {
    text-align: center;
    transform: none;
    color: rgba(0, 0, 0, 0.95);
  }
  
  .hero-buttons {
    transform: none;
  }
  
  .services-grid,
  .projects-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-image {
      height: 200px;
  }
  
  .contact-info {
      align-items: center;
  }
  
  .contact-item {
      justify-content: center;
      text-align: center;
      width: 100%;
  }
  
  .floating-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
  }
  
  .footer-floating-elements {
    position: fixed;
    right: 15px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: env(safe-area-inset-bottom, 15px);
  }
  
  /* CRITICAL: Make hamburger icon visible on home page mobile */
  .navbar-toggler {
    padding: 8px;
    background-color: var(--white) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    margin-right: 5px;
  }
  
  /* FORCE DARK HAMBURGER ICON ON HOME PAGE - MOBILE */
  body .main-navbar .navbar-toggler-icon,
  body.home-page .navbar-toggler-icon,
  .home-page .main-navbar .navbar-toggler-icon,
  .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(0, 0, 0, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    display: block !important;
    width: 28px !important;
    height: 22px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  body {
      padding-top: 60px;
  }
  
  .hero-section {
      min-height: 400px;
      padding: 15px;
      align-items: center;
      padding-top: 60px;
  }
  
  .hero-section .container {
    max-width: 540px !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero-content {
      padding: 0 15px;
      max-width: 100%;
      text-align: center;
      align-items: center;
      transform: none;
  }
  
  .hero-title {
      font-size: clamp(1.8rem, 6vw, 2.5rem);
      line-height: 1.2;
      text-align: center;
      margin-top: 0;
      margin-bottom: var(--spacing-md);
      transform: none;
  }
  
  .hero-subtitle {
      font-size: clamp(0.9rem, 3vw, 1.1rem);
      text-align: center;
      transform: none;
      margin-bottom: var(--spacing-xl);
      color: rgba(0, 0, 0, 0.95);
  }
  
  .hero-buttons {
      gap: var(--spacing-sm);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      transform: none;
  }
  
  .btn {
      padding: 12px 20px;
      font-size: var(--fs-sm);
      min-width: 180px;
      width: 100%;
      max-width: 280px;
  }
  
  .service-card {
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
  }
  
  .services-preview-section,
  .featured-projects-section,
  .cta-section {
      padding: 60px 0;
  }
  
  .service-icon {
      width: 60px;
      height: 60px;
      margin-bottom: var(--spacing-md);
  }
  
  .service-icon i {
      font-size: var(--fs-xl);
  }
  
  .section-header {
      margin-bottom: var(--spacing-2xl);
  }
  
  .projects-grid {
      gap: var(--spacing-md);
  }
  
  .cta-section {
    padding: 50px 0;
  }
  
  .cta-title {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
  }
  
  .cta-subtitle {
    font-size: var(--fs-md);
  }
  
  .contact-item {
    flex-direction: row;
    padding: 12px;
  }
  
  .contact-item i {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .contact-value {
    font-size: var(--fs-md);
    word-break: break-word;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  /* CRITICAL: FORCE hamburger icon visibility on small screens */
  .navbar-toggler {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    background-color: var(--white) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
  }
  
  /* FORCE DARK HAMBURGER ICON */
  body .main-navbar .navbar-toggler-icon,
  body.home-page .navbar-toggler-icon,
  .home-page .main-navbar .navbar-toggler-icon,
  .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(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    display: block !important;
    width: 26px !important;
    height: 20px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }
  
  .hero-dots {
    bottom: 20px;
  }
  
  .hero-dots .dot {
    width: 10px;
    height: 10px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 374.98px) {
  .hero-content {
      padding: 0 10px;
      text-align: center;
      transform: none;
  }
  
  .hero-title {
      font-size: clamp(1.5rem, 7vw, 2rem);
      text-align: center;
      margin-top: 0;
      transform: none;
  }
  
  .hero-subtitle {
      font-size: clamp(0.8rem, 4vw, 1rem);
      text-align: center;
      transform: none;
      color: rgba(0, 0, 0, 0.95);
  }
  
  .hero-buttons {
    transform: none;
  }
  
  .btn {
      min-width: 160px;
      padding: 10px 16px;
  }
  
  .footer-floating-elements {
    right: 10px;
    bottom: 20px;
    gap: 10px;
  }
  
  .floating-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  /* FORCE HAMBURGER ICON VISIBILITY */
  .navbar-toggler-icon {
    width: 24px !important;
    height: 18px !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }
  
  .contact-item {
    padding: 10px;
  }
  
  .contact-item i {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .contact-value {
    font-size: var(--fs-sm);
  }
}

/* Additional fixes for mobile menu and navigation bar */
@media (max-width: 767.98px) {
  /* CRITICAL: Fix hamburger menu button on home page */
  .navbar-toggler {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--white) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    margin-right: 5px;
    padding: 8px;
    z-index: 1030;
  }
  
  .navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  }
  
  /* CRITICAL: Force dark hamburger icon on home page */
  body .navbar-toggler-icon,
  body.home-page .navbar-toggler-icon,
  .home-page .main-navbar .navbar-toggler-icon,
  .main-navbar .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(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 26px !important;
    height: 20px !important;
    display: block !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }
  
  .footer-floating-elements {
    position: fixed;
    right: 15px;
    bottom: 30px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: env(safe-area-inset-bottom, 15px);
  }
  
  .cta-section .container {
    padding: 0 15px;
  }
  
  .cta-content {
    text-align: center;
  }
  
  .contact-item a {
    color: white;
    text-decoration: none;
  }
  
  .navbar-nav {
    background-color: rgba(33, 37, 41, 0.95);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    margin-top: 10px;
  }
  
  .navbar-nav .nav-item {
    padding: 0;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 20px;
    text-align: center;
  }
  
  @supports (-webkit-overflow-scrolling: touch) {
    .footer-floating-elements {
      bottom: max(30px, env(safe-area-inset-bottom, 30px));
    }
  }
}