/* ================= FOOTER BASE ================= */
.footer {
position: relative;
background: url("../images/chooseus1.jpg") center/cover no-repeat;
color: white;
padding: 60px 20px 0;
overflow: hidden;
}

/* OVERLAY */
.footer-glass-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
rgba(6, 71, 28, 0.92),
rgba(27, 94, 32, 0.96)
);
z-index: 0;
}

.footer-container {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
gap: 40px;
max-width: 1300px;
margin: 0 auto;
}

/* ================= HEADINGS ================= */
.footer-col h2.footer-logo {
font-family: 'Sora', sans-serif;
font-size: 28px;
font-weight: 700;
margin-bottom: 20px;
}

.footer-heading {
font-family: 'Sora', sans-serif;
font-size: 18px;
font-weight: 600;
margin-bottom: 25px;
position: relative;
display: inline-block;
}

/* UNDERLINE */
.footer-heading::after {
content: "";
position: absolute;
left: 0;
bottom: -8px;
width: 30px;
height: 2px;
background: #9fd1a9;
}

/* TEXT */
.footer-col p {
font-size: 14px;
line-height: 1.8;
opacity: 0.85;
}

/* ================= LINKS ================= */
.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: rgba(255, 255, 255, 0.75);
text-decoration: none;
font-size: 14px;
transition: 0.3s;
}

.footer-links a:hover {
color: #ffffff;
padding-left: 6px;
}

/* ================= CONTACT ================= */
.contact-item {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 15px;
}

.contact-item i {
color: #9fd1a9;
margin-top: 4px;
}

.contact-item a {
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
}

.contact-item a:hover {
color: #ffffff;
}

/* STATUS BADGE */
.status-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255, 255, 255, 0.12);
padding: 8px 15px;
border-radius: 50px;
font-size: 12px;
margin-top: 10px;
border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ================= SOCIAL ================= */
.footer-social {
display: flex;
gap: 12px;
margin-top: 25px;
}

.social-icon {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.2);

display: flex;
align-items: center;
justify-content: center;

border-radius: 12px;
color: white;
text-decoration: none;

transition: 0.3s ease;
}

.social-icon:hover {
background: #1B5E20;
transform: translateY(-4px);
border-color: #9fd1a9;
}

/* ================= BOTTOM BAR ================= */
.footer-bottom {
position: relative;
z-index: 1;
border-top: 1px solid rgba(255, 255, 255, 0.1);
margin-top: 20px;
padding: 20px 0;
}

.footer-bottom-content {
max-width: 1300px;
margin: 0 auto;

display: flex;
justify-content: space-between;
align-items: center;

padding: 0 20px;
font-size: 13px;

color: rgba(255,255,255,0.8); /* 🔥 better readability */
}

/* ================= DEV CREDIT ================= */
.dev-credit {
display: flex;
align-items: center;
gap: 8px;
}

/* LOGO */
.dev-logo {
width: 22px;
height: 22px;
object-fit: contain;
}

/* LINK */
.dev-credit a {
text-decoration: none;
font-weight: 600;
color: #9fd1a9;
transition: 0.3s;
}

/* HOVER */
.dev-credit a:hover {
color: #ffffff;
text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
.footer-container {
grid-template-columns: 1fr 1fr;
gap: 50px;
}
}

@media (max-width: 600px) {
.footer {
padding: 60px 15px 0;
text-align: center;
}

.footer-container {
grid-template-columns: 1fr;
}

.footer-heading::after {
left: 50%;
transform: translateX(-50%);
}

.footer-social {
justify-content: center;
}

.contact-item {
justify-content: center;
}

.footer-bottom-content {
flex-direction: column;
gap: 12px;
text-align: center;
}

.dev-credit {
justify-content: center;
}
}

/* LOCATION BLOCK FIX */
.locations-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loc-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.loc-row i {
  color: var(--primary);
  font-size: 14px;
  margin-top: 3px;
}

.loc-row a {
  font-size: 14px;
  line-height: 1.4;
  color: inherit;
}
/* 🔥 FIX LOCATION ALIGNMENT FOR MOBILE */
@media (max-width: 600px) {

  .locations-block {
    align-items: center;
  }

  .loc-row {
    justify-content: center;   /* center horizontally */
    text-align: center;
  }

  .loc-row a {
    text-align: center;
  }
}
