body {
  margin: 0;
  font-family: sans-serif;
}

   /* Accents */
    .header-top, .header-bottom {
      height: 5px;
      background: linear-gradient(90deg, #fb923c, #dc2626);
      box-shadow: 0 2px 5px rgba(252, 165, 0, 0.5);
      border-radius: 3px;
      margin-bottom: 0.5rem;
    }
    .header-bottom {
      margin-top: 0.5rem;
      margin-bottom: 2rem;
    }

    /* Header Info Section */
:root {
  --orange: #ff6b00;
  --dark-navy: #1c2a44;
  --text-muted: #4b5563;
  --light-bg: #f8fafc;
}



.site-header {
  border-top: 4px solid var(--orange);
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background-color: white;
  color: var(--dark-navy);
  font-size: 14px;
  padding: 0.3rem 2rem;
  text-align: right;
}

.top-bar .contact span {
  margin-left: 20px;
  font-weight: 500;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 2rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 60px;
  height: 60px;
}

.logo-text h1 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--dark-navy);
}

.logo-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hamburger {
  display: none;
  font-size: 30px;
  color: var(--dark-navy);
  cursor: pointer;
  margin-left: auto;
}

.navbar {
  display: block;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: var(--dark-navy);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--orange);
}

.navbar ul li a.active::after,
.navbar ul li a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--orange);
}

/* Responsive */
@media (max-width: 980px) {
  .hamburger {
    display: block;
  }

  .navbar {
    display: none;
    width: 100%;
  }

  .navbar.show {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    background-color: white;
    border-top: 1px solid #ddd;
  }

  .navbar ul li a {
    padding: 0.5rem 2rem;
  }

  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .top-bar {
    font-size: 12px;
    text-align: left;
  }
}
  /* nav section ended here  */





/* Quote Form Section Start From here  css */
.quote-form-section {
  position: relative;
  background: url("images/movers-background.jpeg") center/cover no-repeat;
  padding: 4rem 1rem;
  color: white;
}

.quote-form-section .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.form-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  padding: 1rem;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 1.1rem;
  color: #f0f0f0;
}

.form-box {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .full-width {
    grid-column: span 2;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-group input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: #e53e3e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2);
}

button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background: linear-gradient(to right, #e53e3e, #f97316);
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

button:hover {
  background: linear-gradient(to right, #c53030, #ea580c);
  transform: scale(1.03);
}
/* quote form section ended here css  */

/* here quote section starts from here  / */

/* Hero Quote Section */
.hero-quote {
  background: linear-gradient(to right, #ea580c, #b91c1c); /* from-orange-600 to-red-700 */
  padding: 4rem 1.5rem;
  color: white;
  text-align: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-container h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-container h2 {
    font-size: 2.5rem;
  }
}

.hero-container p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 2.5rem;
  max-width: 600px;
}

/* Trust Indicators */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 768px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  text-align: center;
}

.trust-value {
  font-size: 1.875rem;
  font-weight: bold;
  color: #facc15; /* text-yellow-400 */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.trust-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}* 

/* from here quote section ended  */ */




/* main page content starts from here  */
.container {
  max-width: 1200px;
  padding: 4rem 1rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.section-header p {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 768px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 4rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.icon-circle {
  width: 64px;
  height: 64px;
  background-color: #dc2626;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #6b7280;
}
/* main page content ended from here  */

/* About section starts from here  */
.about-section {
  background-color: #ffffff;
  padding: 4rem 1rem;
}

/* Responsive Flex Container */
.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .about-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

/* Image Styling */
.about-image {
  width: 100%;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Text Column */
.about-text {
  width: 100%;
}

.about-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #dc2626; /* orange-700 */
  margin-bottom: 1rem;
}

.highlight {
  font-size: 1.125rem;
  color: #374151; /* neutral-700 */
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-text p {
  font-size: 1rem;
  color: #4b5563; /* gray-600 */
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* CTA Button */
.learn-button {
  display: inline-block;
  background-color: #dc2626; /* red-600 */
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.learn-button:hover {
  background-color: #b91c1c; /* hover darker red */
  transform: translateY(-2px);
}
/* about section ended from here */

/* service section starts from here  */
    .section-title {
      text-align: center;
      color: #b91c1c;
      font-size: 2.5rem;
      margin-bottom: 40px;
    }
    .services-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: 0.3s;
      display: flex;
      flex-direction: column;
    }
    .card:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }
    .card-image {
      height: 160px;
      background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }
    .card-body {
      padding: 20px;
      flex-grow: 1;
      text-align: center;
      display: flex;
      flex-direction: column;
    }
    .card-title {
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
      font-size: 1.1rem;
    }
    .card-desc {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .card-btn {
      background: #dc2626;
      color: white;
      border: none;
      padding: 10px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s;
    }
    .card-btn:hover {
      background: #b91c1c;
    }
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      z-index: 1000;
    }
    .hidden {
      display: none;
    }
    .modal-box {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 900px;
      position: relative;
    }
    .mobile-dropdown-wrapper {
      display: block;
    }
    .mobile-dropdown-wrapper select {
      width: 100%;
      padding: 15px;
      background: #f3f3f3;
      border: none;
      font-size: 1rem;
      outline: none;
    }
    .sidebar {
      display: none;
    }
    .sidebar h3 {
      margin: 20px;
      font-size: 1.1rem;
      font-weight: bold;
      color: #444;
    }
    .sidebar ul {
      list-style: none;
      padding: 0;
      margin: 0 20px 20px;
      max-height: 300px;
      overflow-y: auto;
    }
    .sidebar li {
      padding: 10px;
      cursor: pointer;
      border-radius: 6px;
      margin-bottom: 4px;
      user-select: none;
    }
    .sidebar li:hover,
    .sidebar li.active {
      background: #fee2e2;
      color: #b91c1c;
      font-weight: bold;
    }
    .modal-content {
      padding: 20px;
      position: relative;
    }
    .close-btn {
      position: absolute;
      right: 15px;
      top: 15px;
      background: none;
      border: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: #666;
      user-select: none;
    }
    .close-btn:hover {
      color: #000;
    }
    .modal-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .modal-title {
      color: #b91c1c;
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    .modal-desc {
      color: #444;
      font-size: 1rem;
      margin-bottom: 20px;
    }
    .quote-btn {
      background: #dc2626;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    .quote-btn:hover {
      background: #b91c1c;
    }
    @media(min-width: 768px) {
      .modal-box {
        flex-direction: row;
      }
      .sidebar {
        display: block;
        width: 30%;
        background: #f3f4f6;
      }
      .modal-content {
        width: 70%;
      }
      .mobile-dropdown-wrapper {
        display: none;
      }
    }
/* service section ended from here  */


/* free quote section started from here  */
.quote-section {
    background: linear-gradient(135deg, #ff6b00, #f97e29);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
  }

  .quote-container {
    max-width: 800px;
    margin: auto;
  }

  .quote-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .quote-description {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

  .quote-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #fff;
    color: #ff6b00;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
  }

  .quote-button:hover {
    background-color: #f3f3f3;
    color: #e05e00;
  }

  @media (max-width: 600px) {
    .quote-title {
      font-size: 1.8em;
    }

    .quote-description {
      font-size: 1em;
    }

    .quote-button {
      padding: 12px 24px;
      font-size: 0.95em;
    }
  }
/* free quote section ended from here  */

/* location section starts from here  */

    .locations-section {
      padding: 3rem 1rem;
      background: linear-gradient(to right, #ea580c, #b91c1c); /* orange-600 to red-700 */
    }

    .locations-title {
      color: white;
      text-align: center;
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 2rem;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (min-width: 640px) {
      .grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 768px) {
      .grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .grid {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    .location-box {
      font-size: 0.875rem;
      font-weight: 500;
      text-align: center;
      background-color: white;
      color: #1f2937; /* gray-800 */
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: background 0.2s ease-in-out;
      cursor: pointer;
    }

    .location-box:hover {
      background-color: #f3f4f6; /* gray-100 */
    }
/* location section ended from here  */

/* free quote section starts from here  */

    /* Accents */
    .header-top, .header-bottom {
      height: 5px;
      background: linear-gradient(90deg, #fb923c, #dc2626);
      box-shadow: 0 2px 5px rgba(252, 165, 0, 0.5);
      border-radius: 3px;
      margin-bottom: 0.5rem;
    }
    .header-bottom {
      margin-top: 0.5rem;
      margin-bottom: 2rem;
    }

    /* Header Info Section */
    .header-info {
      background: #fff;
      box-shadow: 0 8px 30px rgb(252 165 0 / 0.15);
      padding: 1.5rem 0;
      border-radius: 10px;
      transition: box-shadow 0.3s ease;
    }
    .header-info:hover {
      box-shadow: 0 12px 40px rgb(252 165 0 / 0.3);
    }
    .info-flex {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      align-items: center;
      justify-content: space-between;
    }
    @media (min-width: 768px) {
      .info-flex {
        flex-direction: row;
      }
    }

    /* Logo */
    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }
    .logo-circle {
      width: 64px;
      height: 64px;
      background: #f97316; /* orange-500 */
      color: #fff;
      font-weight: 900;
      font-size: 1.6rem;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgb(251 146 60 / 0.6);
      user-select: none;
      transition: transform 0.3s ease;
      cursor: default;
    }
    .logo-circle:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgb(251 146 60 / 0.8);
    }
    .logo-wrap h1 {
      font-size: 1.75rem;
      font-weight: 800;
      color: #1e293b;
      user-select: none;
      letter-spacing: 0.03em;
    }
    .logo-wrap p {
      color: #6b7280;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      margin-top: 0.1rem;
    }

    /* Contact Info */
    .contact-info {
      font-size: 0.95rem;
      color: #475569;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      align-items: center;
      text-align: center;
    }
    @media (min-width: 768px) {
      .contact-info {
        align-items: flex-end;
        text-align: right;
      }
    }
    .contact-info div,
    .contact-info a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
      user-select: text;
      transition: color 0.25s ease;
    }
    .contact-info a:hover {
      color: #fbbf24;
    }
    .contact-info svg {
      stroke-width: 1.5;
      stroke-linejoin: round;
      stroke-linecap: round;
      width: 20px;
      height: 20px;
      color: inherit;
      flex-shrink: 0;
      transition: color 0.3s ease;
    }
    .contact-info a:hover svg {
      color: #fbbf24;
    }

    /* Navigation */
    .navbar {
      background: linear-gradient(90deg, #f97316, #ea580c, #dc2626);
      border-radius: 10px;
      box-shadow: 0 8px 40px rgb(252 165 0 / 0.3);
      margin-top: 2rem;
      padding: 0.75rem 0;
      position: relative;
      z-index: 100;
    }
    .nav-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
      display: flex;
      align-items: center;
      justify-content: flex-end; /* changed from space-between to flex-end */
    }

    /* Removed menu-title styles because it’s gone */

    .nav-toggle {
      font-size: 1.9rem;
      color: white;
      cursor: pointer;
      user-select: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease;
      border-radius: 5px;
      padding: 0.1rem;
      background-color: rgba(255 255 255 / 0.1);
      margin-left: auto; /* push toggle to the left on mobile */
    }
    .nav-toggle:hover {
      background-color: rgba(255 255 255 / 0.25);
      transform: scale(1.1);
    }
    .nav-toggle:focus {
      outline: 2px solid #fbbf24;
      outline-offset: 2px;
    }

    /* Desktop Nav */
    .nav-links {
      display: none;
      gap: 2.5rem;
      font-weight: 600;
      font-size: 1rem;
      user-select: none;
      flex-wrap: nowrap;
    }
    .nav-links a {
      position: relative;
      color: white;
      transition: color 0.3s ease;
    }
    .nav-links a:hover,
    .nav-links a:focus {
      color: #fbbf24;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 0;
      height: 3px;
      width: 0;
      background-color: #fbbf24;
      border-radius: 4px;
      transition: width 0.3s ease;
    }
    .nav-links a:hover::after,
    .nav-links a:focus::after {
      width: 100%;
    }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 1rem;
      margin-top: 0.8rem;
      padding-bottom: 0.8rem;
      font-weight: 600;
      font-size: 1rem;
      user-select: none;
      border-top: 1.5px solid rgba(255 255 255 / 0.3);
      max-width: 100%;
      overflow: hidden;
      animation: fadeInDown 0.3s ease forwards;
    }
    .mobile-menu a {
      color: white;
      padding: 0.3rem 0;
      border-radius: 6px;
      transition: background-color 0.25s ease, color 0.3s ease;
    }
    .mobile-menu a:hover,
    .mobile-menu a:focus {
      background-color: #fbbf24;
      color: #1f2937;
      outline: none;
    }

    /* Animations */
    @keyframes fadeInDown {
      0% {
        opacity: 0;
        transform: translateY(-15px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (min-width: 768px) {
      .nav-toggle {
        display: none;
      }
      .nav-links {
        display: flex;
      }
      .mobile-menu {
        display: none !important;
      }
    }
/* free quote section ended from here  */




/* footer sectioin start from here  */
.footer {
  background-color: #111827;
  padding: 4rem 1.5rem;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

/* Brand & Company Info */
.brand {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.brand-icon {
  background-color: #dc2626;
  color: white;
  font-weight: bold;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.brand-title {
  font-size: 1.5rem;
  color: #ef4444;
  font-weight: bold;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

.tagline {
  color: #facc15;
  font-style: italic;
  margin-bottom: 1rem;
}

.description {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Stats Boxes */
.stats {
  display: flex;
  gap: 1rem;
}

.stat-box {
  flex: 1;
  text-align: center;
  background: #1f2937;
  border-radius: 0.5rem;
  padding: 1rem;
}

.stat-box i {
  color: #facc15;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: bold;
}

.stat-label {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Footer links */
.footer-column h4 {
  color: #facc15;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #facc15;
}

/* Contact Info */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  background-color: #dc2626;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: #ffffff;
}

.contact-item p,
.contact-item a {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
  display: block;
  text-decoration: none;
}

.contact-item a:hover {
  color: #facc15;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
}

.floating-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.floating-button.call {
  background-color: #f97316;
}

.floating-button.call:hover {
  background-color: #ea580c;
  transform: scale(1.1);
}

.floating-button.whatsapp {
  background-color: #22c55e;
}

.floating-button.whatsapp:hover {
  background-color: #16a34a;
  transform: scale(1.1);
}
/* footer section ended from here  */