
  .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 20px 0;
    color:#E6B122;
  }

  .social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border: 2px solid #E6B122;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
  }

  .social-links a:hover {
    transform: scale(1.1);
  }

  /* ================= FLOATING BUTTONS ================= */

/* Left side buttons (WhatsApp + Phone) */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  left: 25px;
  display: flex;
  gap: 10px;
  z-index: 9999;
}

/* Common button style */
.floating-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: 0.3s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

/* Individual colors */
.whatsapp-btn { background-color: #25D366; }
.phone-btn { background-color: #E6B122; }

/* ================= RIGHT SIDE CONTACT BUTTON ================= */

.contact-btn {
  position: fixed;          /* 🔥 KEY */
  bottom: 25px;
  right: 25px;              /* 🔥 right corner */
  background: #1a2f78;
  z-index: 10001;
}

/* Hover */
.contact-btn:hover {
  transform: scale(1.1);
}

/* ================= MOBILE ADJUSTMENTS ================= */
@media (max-width: 600px) {
  .floating-buttons {
    bottom: 15px;
    left: 15px;
  }

  .floating-buttons a,
  .contact-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .contact-btn {
    bottom: 15px;
    right: 15px;
  }
}



/* ================= CHAT-STYLE CONTACT POPUP ================= */

.contact-popup {
  display: none;
  position: fixed;
  inset: auto 20px 90px auto; /* bottom-right */
  width: 380px;
  max-width: calc(100% - 40px);
  z-index: 10000;
}

/* Chat-style box */
.popup-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  padding: 22px;
  position: relative;
  animation: slideIn 0.35s ease;
}

/* Slide animation */
@keyframes slideIn {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close button like chatbot */
.close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 20px;
  cursor: pointer;
  color: #555;
}
.popup-content h3 {
  margin: 0 0 15px;
  font-size: 18px;
  color: #1a2f78;
  text-align: left;
}



.popup-content form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-content input, 
.popup-content select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  transition: 0.3s;
}

.popup-content input:focus,
.popup-content select:focus {
  outline: none;
  border-color: #1a2f78;
  box-shadow: 0 0 5px rgba(26,47,120,0.3);
}

/* Phone row */
.popup-content .form-row {
  display: flex;
  gap: 10px;
}

.popup-content .form-row select {
  width: 35%;
}

.popup-content .form-row input {
  width: 65%;
}

/* Submit button */
.send-btn {
  background: #1a2f78;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  background: #122054;
}

@media (max-width: 768px) {
  .popup-content {
    left: 50%;
    right: auto;
    transform: translate(-50%, -5%);
    width: 92%;
    max-width: 360px;
    padding: 20px;
 
  }
}

/* ===== FIX intl-tel-input DROPDOWN ALIGNMENT ===== */

#contactPopup .iti {
  width: 100%;
}

/* Country dropdown */
/* ===== Increase country dropdown width slightly ===== */

#contactPopup .iti__country-list {
  width: 120% !important;        /* 👈 increase width */
  min-width: 280px;              /* safe minimum */
  max-width: 320px;              /* prevents too wide */
  left: 0 !important;
  box-sizing: border-box;
  z-index: 10001;
}

/* Prevent overflow outside popup */
#contactPopup .popup-content {
  overflow: visible;
}

#contactPopup .iti__country-list {
  max-height: 220px;
  overflow-y: auto;
}

@media (max-width: 768px) {
  #contactPopup .iti__country-list {
    width: 100% !important;
    left: 0 !important;
  }
}

/* ===== POPUP PHONE FIELD FULL WIDTH FIX ===== */

#contactPopup .form-row {
  width: 100%;
}

#contactPopup .form-row .iti {
  width: 100% !important;
  display: block !important;
}

/* Force input to fill entire popup width */
#contactPopup .iti input {
  width: 100% !important;
  height: 48px;
  padding-left: 95px !important;  /* space for flag + code */
  border-radius: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 14px;
}

/* Ensure wrapper does not shrink */
#contactPopup .iti__flag-container {
  height: 48px;
  display: flex;
  align-items: center;
}

/* Prevent width conflicts */
#contactPopup .popup-content .form-row {
  display: block !important;
}

/* Mobile safety */
@media (max-width: 480px){
  #contactPopup .iti input{
    padding-left: 85px !important;
  }
}
/* ===== reCAPTCHA MOBILE OVERFLOW FIX ===== */

/* Center captcha inside popup */
#contactPopup .g-recaptcha {
  display: flex;
  justify-content: center;
}

/* Scale captcha on small screens */
@media (max-width: 480px) {
  #contactPopup .g-recaptcha {
    transform: scale(0.85);        /* 👈 keeps it inside */
    transform-origin: center;
  }
}

/* ===== FOOTER CONTACT ALIGNMENT FIX ===== */

/* ===== FOOTER CONTACT – PERFECT ALIGNMENT ===== */

.footer-contact p {
  display: flex;
  align-items: center;        /* 🔥 key change */
  gap: 12px;
  margin: 12px 0;
  line-height: 1.7;
  color: #fff;
}

/* Icon fine-tuning */
.footer-contact p i {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;             /* prevents vertical drift */
  position: relative;
  top: -1px;                  /* 🔥 tiny nudge (adjust -1 / 0 / 1px if needed) */
}

/* Text block */
.footer-contact p span {
  display: block;
}



/* ================= MOBILE FOOTER CENTER ALIGN ================= */
@media (max-width: 768px) {

  /* Overall footer */
  .footer {
    text-align: center;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Logo + tagline */
  .footer-left {
    align-items: center;
  }

  .footer-left p {
    text-align: center;
    margin: 0 auto;
    font-size: 13px;
  }

  /* Social icons */
  .social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  /* Section headings */
  .footer-links h4,
  .footer-contact h4,
  .footer-hours h4 {
    text-align: center;
  }

  /* Quick links */
  .footer-links ul {
    padding: 0;
    margin: 0;
  }

  .footer-links ul li {
    list-style: none;
    margin: 8px 0;
  }

  .footer-links ul li a {
    display: inline-block;
  }

  /* ================= CONTACT CENTER FIX ================= */

  .footer-contact p {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    margin: 14px 0;
  }

  .footer-contact i {
    font-size: 16px;
  }

  .footer-contact span {
    display: block;
    text-align: center;
    line-height: 1.7;
  }

  /* Divider between address & phone */
  .footer-contact p:first-of-type {
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
  }

  /* Office hours */
 .footer-hours h4 {
  color: #E6B122;
  margin-bottom: 12px;
}

.footer-hours p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.footer-hours i {
  color: #E6B122;
  font-size: 15px;
}


  /* Footer bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 24px;
  }

  /* Floating buttons spacing */
  .floating-buttons {
    left: 12px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    left: 12px;
    gap: 8px;
  }

  .floating-buttons a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
/* Make popup draggable */
.contact-popup {
  cursor: grab;
}

.contact-popup.dragging {
  cursor: grabbing;
}
/* =========================
   QUICK LINKS – 3 PER ROW (MOBILE)
========================= */

@media (max-width: 768px) {

  /* Turn UL into grid */
  .footer-links ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 🔥 3 in a row */
    gap: 10px 8px;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .footer-links ul li {
    list-style: none;
    margin: 0;
  }

  .footer-links ul li a {
    display: block;
    font-size: 13.5px;
    padding: 6px 4px;
    line-height: 1.3;
    white-space: nowrap;
  }

  /* Heading spacing */
  .footer-links h4 {
    margin-bottom: 12px;
    text-align: center;
  }
}

/* ================= VERY SMALL MOBILE ================= */

@media (max-width: 420px) {

  .footer-links ul {
    grid-template-columns: repeat(6, 1fr); /* fallback for very small phones */
  }

  .footer-links ul li a {
    font-size: 13px;
  }
}

/* =========================
   CONTACT – SINGLE LINE (MOBILE)
========================= */

@media (max-width: 768px) {

  /* Contact wrapper */
  .footer-contact {
    text-align: center;
  }

  .footer-contact h4 {
    margin-bottom: 10px;
  }

  /* Make each row single-line */
  .footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 6px 0;
    font-size: 13.5px;
    line-height: 1.4;
    white-space: nowrap;
  }

  /* Address → force single line */
  .footer-contact p:first-of-type span {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    font-size: 14px;
  }

  /* Remove <br> breaks visually */
  .footer-contact p span br {
    display: none;
  }



  /* Icons alignment */
  .footer-contact i {
    font-size: 14px;
    flex-shrink: 0;
  }

  /* Office hours inline */
  .footer-hours {
    text-align: center;
    margin-top: 8px;
  }

  .footer-hours h4 {
    margin-bottom: 4px;
  }

  .footer-hours p {
    font-size: 13.5px;
    margin: 0;
  }
}
/* =====================================
   FOOTER CONTACT – BEAUTIFIED (MOBILE)
===================================== */

@media (max-width: 768px) {

  .footer-contact {
    background: rgba(255,255,255,0.05);
    padding: 16px 14px;
    border-radius: 14px;
    max-width: 95%;
    margin: 0 auto;
  }

  .footer-contact h4 {
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 0.4px;
  }

  /* Each contact row */
  .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
  }

  /* Icons */
  .footer-contact i {
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
  }

  /* Address styling */
  .footer-contact p:first-of-type span {
    display: -webkit-box;
    -webkit-line-clamp: 2;      /* 🔥 max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
  }

  /* Remove <br> visually */
  .footer-contact span br {
    display: none;
  }

  /* Phone numbers – inline & clean */
  .footer-contact p:nth-of-type(2) span {
    display: inline;
    font-size: 14px;
  }

 

  /* Email */
  .footer-contact p:last-of-type span {
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size:14px;
  }

  /* Office hours polish */
  .footer-hours {
    margin-top: 14px;
  }

  .footer-hours h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .footer-hours p {
    font-size: 13.5px;
    opacity: 0.9;
  }
}

/* ================= SMALL PHONES ================= */

@media (max-width: 420px) {

  .footer-contact p {
    font-size: 13.5px;
  }

  .footer-contact i {
    font-size: 14px;
  }
}

/* ================= SMALL MOBILE SAFETY ================= */

@media (max-width: 420px) {

  .footer-contact p {
    font-size: 13px;
    flex-wrap: wrap; /* allow wrap only if absolutely needed */
    white-space: normal;
  }
}
/* =====================================
   FOOTER CONTACT – ICON COLUMN ALIGN
===================================== */

@media (max-width: 768px) {

  .footer-contact p {
    display: grid;
    grid-template-columns: 22px 1fr; /* 🔥 fixed icon column */
    align-items: start;
    column-gap: 10px;
    margin: 12px 0;
    text-align: left;               /* 🔥 important */
  }

  /* Icon column */
  .footer-contact p i {
    font-size: 15px;
    line-height: 1;
    margin-top: 4px;                /* aligns with first text line */
  }

  /* Text column */
  .footer-contact p span {
    display: block;
    line-height: 1.5;
  }

  /* Remove forced center alignment */
  .footer-contact {
    text-align: center;
  }

  /* Keep card centered but text left */
  .footer-contact > * {
    margin-left: auto;
    margin-right: auto;
  }

  /* Remove <br> gaps visually */
  .footer-contact span br {
    display: none;
  }
}
.footer-compliance-inner {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-compliance-inner h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-compliance-inner p {
  font-size: 18px;
  margin: 6px 0;
}
/* =====================================
   FOOTER MOBILE RESET (kills conflicts)
===================================== */
@media (max-width: 768px) {

  .footer-contact p,
  .footer-hours p,
  .footer-links ul {
    all: unset;
  }
}


