/* === Base Layout === */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f8f8f8;
  color: #111;
}
a {
  text-decoration: none;
  color: inherit;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

/* === Header === */
.site-header {
  background: #1a2238;
  color: #fff;
  padding: 1rem;
  position: relative;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo a {
  font-size: 1.5rem;
  color: #fff;
}

/* === Desktop Nav === */
.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}


.desktop-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  line-height: 1;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #fff;
  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  color: #f0f0f0;
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* Desktop Dropdown */
.desktop-nav .has-dropdown {
  position: relative;
}

.desktop-nav .has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%; 
  left: 0;
  background: #1a2238; 
  color: #fff;
  padding: 0.5rem 0;
  list-style: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  z-index: 999;
  border-radius: 4px;
}

.desktop-nav .has-dropdown:hover .dropdown {
  display: block;
}

.desktop-nav .has-dropdown .dropdown li {
  padding: 0;
  margin: 0;
}

.desktop-nav .has-dropdown .dropdown li a {
  color: #fff;
  font-weight: 500;
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}

.desktop-nav .has-dropdown .dropdown li a:hover {
  background: #2a2f4a; /* subtle hover shade */
  color: #fff;
}

.desktop-nav .has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.desktop-nav .has-dropdown:hover > a i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.header-phone {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
}

.header-phone a {
  color: #1a2238;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.header-phone a:hover {
  color: #1a2238;
}

.header-phone i {
  font-size: 1rem;
  color: #1a2238;
}

/* === Mobile Nav (Custom Toggle System) === */
.mobile-nav {
  display: none;
}

#menuToggle {
  display: none;
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

  #menuToggle {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
  }

  #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 3;
  }

  #menuToggle span {
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 5px;
    background: #fff;
    border-radius: 2px;
    position: relative;
    z-index: 2;
    transform-origin: 5px 0px;
    transition: transform 0.5s ease, opacity 0.5s ease, background 0.5s ease;
  }

  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }

  #menuToggle input:checked ~ span {
    transform: rotate(45deg) translate(-2px, -1px);
    background: #36383F;
  }

  #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }

  #menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    height: 100vh;
    margin: 0;
    padding: 80px 0 0 0;
    background: #f5f6fa;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1;
    overflow-y: auto;
  }

  #menuToggle input:checked ~ #menu {
    transform: translateX(0);
  }

  .mobile-menu-header {
    text-align: center;
    background: transparent;
    position: relative;
    top: 0;
    width: 100%;
  }

  .mobile-menu-logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a1a1a;
    display: inline-block;
  }

  #menu ul {
    padding: 20px 0 10px;
    margin: 0;
  }

  #menu li {
    list-style: none;
    padding: 14px 20px;
    border-bottom: 1px solid #ccc;
  }

  #menu li:first-child {
    border-top: 1px solid #ccc;
  }

  #menu li:last-child {
    border-bottom: 1px solid #ccc;
  }

  #menu a {
    display: block;
    width: 100%;
    color: #1E1E23;
    font-weight: 500;
    font-size: 1.2rem;
    transition: opacity 0.2s ease;
  }

  #menu a:hover {
    opacity: 0.6;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-call-link {
    padding: 10px 20px;
    text-align: center;
  }

  .mobile-call-link a {
    color: #1a1a1a;
    padding: 10px 0;
    border: 1px solid black;
    border-radius: 10px;
    background: #f5f6fa;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    text-decoration: none;
  }

  /* Mobile Dropdown */
  .mobile-nav .has-submenu > .submenu {
    display: none;
    padding-left: 1rem;
  }

  .mobile-nav .has-submenu.active > .submenu {
    display: block;
  }

  .mobile-nav .has-submenu i {
    transition: transform 0.3s ease;
    float: right;
  }

  .mobile-nav .has-submenu.active > a i {
    transform: rotate(180deg);
  }
}

/* == Front Page == */

/* Hero Section */

.hero {
  background: #1a2238;
  background-image: url('/wp-content/uploads/2025/07/hero-two.jpg');
  background-repeat: no-repeat; 
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 2rem 1rem 4rem;
}

@media (max-width: 768px) {
  .hero {
    background-image: none !important;
  }
}

.hero-flex {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
 max-width: 50%;
 text-align: left;
}

.hero .page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #eaeaea;
  text-align: left;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #eaeaea;
}

.hero-form {
 width: 400px;
}

/* Responsive */
@media (max-width: 900px) {

  .hero-text {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  .hero .page-title {
    text-align: center;
    font-size: 2rem;
  }

  .hero-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

}


/* Form */

.sa-hero-form { 
  flex: 1; 
  max-width: 425px;
  min-width: 350px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (max-width: 450px) {
  .sa-hero-form {
    width: 100%;
    min-width: 350px;
  }
}

@media (max-width: 350px) {
  .sa-hero-form {
    min-width: 250px;
  }
}

.sa-form-box {
  background: #f9f9f9;
  color: #1a2238;
  padding: 1.5rem 2rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sa-form-box h2 {
  text-align: center;
  font-size: 1.75rem;
  margin: .5rem 1rem 1.5rem;
  color: #1a2238;
}

/* Hide labels since placeholders are used */
.sa-form-box label {
  display: none;
}

.sa-input-icon {
  position: relative;
  margin-top: 1rem;
}

.sa-input-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
  pointer-events: none;
}

.sa-form-box input,
.sa-form-box textarea {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
  color: #1a2238;
  box-sizing: border-box;
}

.sa-form-box input:focus,
.sa-form-box textarea:focus {
  border-color: #1a2238;
  outline: none;
}

.sa-form-button-wrapper { 
  text-align: center; 
}

.sa-form-box button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #1a2238;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sa-form-box button:hover { 
  background: #4da3e1; 
}

.sa-success-message {
  border-radius: 6px;
  font-weight: 600;
}


/* === FLEX SERVICES SECTION === */

.services-flex-section {
  background-color: #f0f4f9;
  padding: 3rem 1rem;
  text-align: center;
}

.services-flex-container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-flex-heading {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  color: #1a2238;
}

.services-flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.services-flex-card {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  background: #f0f4f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-flex-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.services-flex-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #1a2238;
}

.services-flex-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #1a2238;
}

.services-flex-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.services-flex-card.wider {
  max-width: 400px;
  flex: 1 1 45%;
}

@media (max-width: 1050px) {
  .services-flex-row {
    flex-direction: column;
  }

  .services-flex-card,
  .services-flex-card.wider {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    text-align: center;
  }

  .services-flex-card h3,
  .services-flex-card p {
    text-align: center;
  }
}



/* Divider */

.section-divider {
  line-height: 0;
  position: relative;
  overflow: hidden;
  height: 100px;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Default: vertical flip (as used on most dividers) */
.section-divider svg {
  transform: rotate(180deg);
}

/* Flip horizontally (for Hero → Services divider) */
.section-divider.flipped-horizontal svg {
  transform: scaleX(-1);
}

/* NO flip (for Damages → Why Choose Us) */
.section-divider.no-flip svg {
  transform: none;
}


/* Claim IMG Section */

.claim-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
}

@media (max-width: 600px) {
  .claim-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.claim-tile {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
  display: block;
  text-decoration: none;
}

.claim-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.claim-tile:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 34, 56, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.overlay span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

/* CTA Button */
.claim-grid-cta {
  text-align: center;
  margin-bottom: 4rem;
}

.view-all-button {
  display: inline-block;
  background: #1a2238;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.view-all-button:hover {
  background: #2c3556;
}



/* Damage Section */

.damage-types {
  background: #f0f4f9;
  padding: 1rem 1rem;
  text-align: center;
}

.damage-types h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a2238;
}

.damage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.damage-grid li {
  background: #f0f4f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.damage-grid li:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: #0077cc;
}

.damage-grid i {
  font-size: 2rem;
  color: #1a2238;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.damage-grid li:hover i {
  color: #0077cc;
}

.damage-grid span {
  font-weight: 500;
  font-size: 1rem;
  color: #1a2238;
}

/* View All Button */
.view-all-damage {
  margin-top: 2.5rem;
  text-align: center;
}

.view-all-button {
  background: #1a2238;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.view-all-button:hover {
  background: #0077cc;
}

/* Responsive Grid Columns */
@media (min-width: 480px) {
  .damage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .damage-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .damage-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Why Chose Us */

.why-section {
  background: #f8f8f8;
  color: #1a2238;
  padding: 0 0 2rem;
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.why-headline {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  color: #1a2238;
}

.why-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.why-benefits i {
  color: #1a2238;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.why-benefits li:hover i {
  transform: scale(1.15);
  color: #2c3f75;
}

.why-benefits p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  color: #1a2238;
}

.why-benefits strong {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2238;
  margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
  .why-benefits p {
    font-size: 1.25rem;
  }

  .why-benefits strong {
    font-size: 1.5rem;
  }
}


/* === Page == */

.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-weight: 600;
  text-align: center;
}

.page-content {
  line-height: 1.7;
  font-size: 1.1rem;
  color: #333;
}

.page-content h2,
.page-content h3 {
  margin-top: 2rem;
  font-weight: 600;
  color: #1a1a1a;
}

.page-content p {
  margin-bottom: 1.2rem;
}

.page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}


/* === Contact Page === */

.contact-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form-wrapper {
  width: 55%;
}

.contact-info-wrapper {
  width: 40%;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.form-heading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.custom-contact-form {
  max-width: 100%;
  box-sizing: border-box;
}

.custom-contact-form .form-group {
  margin-bottom: 1rem;
}

.custom-contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.custom-contact-form input,
.custom-contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.custom-contact-form .form-row {
  display: flex;
  column-gap: 1.25rem;
}

.custom-contact-form .form-name .form-group {
  flex: 1 1 50%;
}

/* Style the robot checkbox to match form layout */
.custom-contact-form .form-group input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.custom-contact-form .form-group label {
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}


.custom-contact-form .btn {
  display: inline-block;
  background: #1a2238;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info-item i {
  color: #1a2238;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.contact-info-item a {
  text-decoration: none;
  color: inherit;
}

.map-container {
  margin-top: 1rem;
  border-radius: 4px;
  overflow: hidden;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-form-wrapper,
  .contact-info-wrapper {
    margin-top: 1rem;
    width: 100%;
  }

  .custom-contact-form .form-row {
    flex-direction: column;
    row-gap: 1rem;
  }
}

/* === Single === */

.single-main {
  padding: 1rem;
  background: #f9f9f9;
}

.single-main h1 {
  margin: 0;
}

.single-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .single-main {
    padding: 1rem .5rem;
  }
  .single-container {
    padding: 1rem .5rem;
  }
}

.single-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #222;
}

.single-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.single-author a {
  text-decoration: none;
  color: #333;
}

.single-author a:hover {
  text-decoration: underline;
}

.single-timestamp {
  margin-top: 0;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 1rem;
}

.single-featured-img {
  margin: 1rem 0 2rem 0;
}

.single-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.single-caption {
  color: #999;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* === Single Archieve == */

.archive-main {
  padding: 2rem 1rem;
}

.archive-container {
  max-width: 1100px;
  margin: 0 auto;
}

.archive-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
  text-align: center;
}

.archive-post {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.archive-post-image {
  flex-shrink: 0;
  width: 240px;
}

.archive-post-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.archive-post-content {
  flex: 1;
}

.archive-post-content h2 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: #222;
}

.archive-post-content .excerpt-desktop {
  display: block;
}

.archive-post-content .excerpt-mobile {
  display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .archive-post {
    flex-direction: column;
  }

  .archive-post-image {
    width: 100%;
  }

  .archive-post-content .excerpt-desktop {
    display: none;
  }

  .archive-post-content .excerpt-mobile {
    display: block;
  }
}

.archive-post-content a.read-more {
  font-weight: bold;
  text-decoration: none;
  color: #0073aa;
}

.archive-post-content a.read-more:hover {
  text-decoration: underline;
}

.archive-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.archive-pagination a,
.archive-pagination span {
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #0073aa;
  font-size: 0.95rem;
}

.archive-pagination a:hover {
  background-color: #f0f0f0;
}

.archive-pagination .current {
  background: #0073aa;
  color: #fff;
  font-weight: bold;
}

/* === Footer === */
.site-footer {
  background: 
    linear-gradient(rgba(26, 34, 56, 0.9), rgba(26, 34, 56, 0.9)),
    url('/wp-content/uploads/2025/07/footer-background.jpg') center/cover no-repeat;
  color: #ccc;
  text-align: left;
  padding: 1.5rem 1rem 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 4-column layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Contact info icons */
.contact-info li {
  color: #ccc;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.contact-info i {
  color: #66ccff;
  font-size: 1rem;
}

/* Bottom nav section */
.footer-bottom-nav {
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.footer-bottom-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.footer-bottom-nav a {
  color: #ccc;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-bottom-nav a:hover {
  color: #fff;
}

/* Copyright line */
.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

/* === Responsive Footer Columns === */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr); /* Forces 2 columns even at smallest size */
  }
}


/* Floating Call button */

.floating-call-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: none;
  align-items: center;
  z-index: 1;
}

.floating-call-button {
  background-color: #66ccff;
  color: #fff;
  font-size: 22px;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.floating-call-button:hover {
  background-color: #4da3e1;
}

.floating-call-label {
  margin-left: 12px;
  font-size: 15px;
  background-color: #202527;
  padding: 6px 12px;
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .floating-call-wrapper {
    display: flex;
  }
}