/* --- RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffff;
}

.main-wrapper {
    width: 95%;
    max-width: 95%;
    margin: 20px auto;
    background: none;
    border-radius: 25px;
    overflow: visible;
    color: #fff;
}

.navbar {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #166647;
    border-radius: 48px;
    height: auto;
    min-height: 138px;
    z-index: 100;
}

.navbar-header {
    display: flex;
    align-items: center;
}

.navbar .logo {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 7px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 137px;
    height: 64px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
}

.navbar .logo img {
    display: block;
    height: 45px;
    width: 93px;
    max-width: 100%;
}

.navbar .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.navbar .logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 12px;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    max-width: 850px;
    height: 64px;
    gap: 8px;
    position: static;
    left: auto;
    transform: none;
    overflow: visible;
    flex-grow: 1;
    margin: 0 20px;
    z-index: 100;
}

.nav-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.nav-wrapper::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    justify-content: center;
    flex-grow: 1;
    transition: all 0.4s ease-in-out;
}

.nav-links .mobile-btn {
    display: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 16px 8px;
    border-radius: 20px;
    opacity: 0.7;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: auto;
    min-width: 90px;
    height: 40px;
    flex-shrink: 0;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    opacity: 1;
    width: auto;
    min-width: 90px;
    height: 40px;
    padding: 16px 8px;
}

.nav-btn {
    background: #1C7F56;
    color: white;
    height: 64px;
    width: 271px;
    flex-shrink: 0;
    padding: 0 68px 0 24px;
    border-radius: 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    gap: 8px;
}

.nav-btn .arrow-icon {
    background: white;
    color: #1C7F56;
    width: 56px;
    height: 56px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn:hover {
    background: #166c41;
}

.hamburger-menu {
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 5px;
    z-index: 1000;
    display: none;
    align-self: center;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .navbar {
        padding: 15px 15px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .navbar .logo {
        margin-right: 5px;
        width: 110px;
        padding: 5px 10px;
    }

    .navbar .logo img {
        width: 70px;
        height: auto;
    }

    .nav-wrapper {
        margin: 0 5px;
        padding: 8px;
        gap: 0;
        max-width: none;
        flex-grow: 1;
        width: auto;
        justify-content: center;
    }

    .nav-links {
        gap: 5px;
        width: 100%;
        justify-content: space-evenly;
    }

    .nav-links a,
    .nav-links a.active {
        font-size: 13px;
        min-width: auto;
        padding: 10px 10px;
        height: 35px;
    }
}

@media (max-width: 1024px) {
    .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        gap: 0;
        padding: 15px 20px;
        min-height: auto;
    }

    .nav-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-links .mobile-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        opacity: 0.7;
        height: 50px;
        width: 100%;
        padding: 0 8px;
        border-radius: 20px;
        text-decoration: none;
        position: relative;
        font-weight: normal;
    }

    .nav-links .mobile-btn:hover {
        opacity: 0.9;
        background: rgba(255, 255, 255, 0.1);
    }

    .navbar .logo {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .desktop-only {
        display: none;
    }

    .nav-wrapper::before,
    .nav-wrapper::after {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: static;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 5px;
        z-index: 1001;
        margin-top: 0;
        margin-bottom: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        transition: all 0.4s ease-in-out;
    }

    .nav-links.open {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        padding: 12px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .nav-links a {
        flex-grow: 1;
        justify-content: center;
        gap: 10px;
        min-width: unset;
        width: 100%;
    }

    .nav-links a.active {
        width: 100%;
        height: 50px;
        font-size: 16px;
        padding: 10px 8px;
        text-align: center;
        margin-bottom: 5px;
    }

    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

.dropdown-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 102, 71, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 10px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    transition: background 0.3s ease;
    text-align: center;
    font-size: 15px;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 1024px) {
    .dropdown-container {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        backdrop-filter: none;
        padding: 0;
        min-width: 100%;
        display: none;
    }

    .dropdown-container:hover .dropdown-menu {
        display: flex;
        transform: none;
    }

    .dropdown-menu a {
        font-size: 14px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 5px;
    }
}


/* --- MAIN CONTENT SECTION --- */
.startups-section {
  width: 85%;           
  max-width: 1200px;    
  height: auto;
  margin: 100px auto;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  background: #E5FAEA;
  color: #1C7F56;
  padding: 12px 24px;
  border-radius: 32px;
  font-size: 16px;
  margin-bottom: 20px;
}

.section-label::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #1C7F56;
  border-radius: 50%;
  margin-right: 10px;
}

.service-title {
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

/* --- FILTER BAR --- */
.filter-bar {
  background: #E5FAEA;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.filter-item {
  background: white;
  border-radius: 30px;
  height: 50px;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 200px;
  position: relative; 
}

.filter-item.search { padding: 0 20px; gap: 10px; }
.filter-item.search input {
  border: none; outline: none; font-size: 14px; color: #777; width: 100%; background: transparent;
}
.filter-item.search i { color: #1C7F56; font-size: 18px; }

.dropdown-wrapper {
    cursor: pointer;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    font-size: 13px;
    color: #555;
    background: transparent;
    border-radius: 30px;
    transition: background 0.3s;
}

.dropdown-trigger:hover {
    background: rgba(0, 0, 0, 0.02);
}

.dropdown-trigger .arrow-icon {
    font-size: 12px;
    color: #1C7F56;
    transition: transform 0.3s ease;
}

.dropdown-trigger.active .arrow-icon {
    transform: rotate(180deg);
}

.dropdown-menu-list {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 10px;
    list-style: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu-list.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-list::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu-list::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-menu-list::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 20px;
}

.dropdown-item {
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 12px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 2px;
    text-align: left;
    line-height: 1.4;
}

.dropdown-item:hover {
    background-color: #E5FAEA;
    color: #1C7F56;
}

.dropdown-item.selected {
    background-color: #1C7F56;
    color: #fff;
}
/* Multi-Select SDG */
.multi-select { cursor: pointer; position: relative; }
.select-btn {
    display: flex; height: 100%; width: 100%; align-items: center;
    justify-content: space-between; padding: 0 20px; font-size: 13px; color: #555;
}
.list-items {
    display: none; position: absolute; top: 55px; left: 0; width: 100%; min-width: 250px;
    background-color: #fff; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px; z-index: 1000; max-height: 300px; overflow-y: auto; border: 1px solid #eee;
}
.filter-item.dropdown-wrapper.multi-select.open .list-items { display: block; }
.item {
    display: flex; align-items: center; font-size: 13px; height: 40px;
    cursor: pointer; padding: 0 10px; border-radius: 8px; transition: 0.2s; color: #333; text-align: left;
}
.item:hover { background-color: #E5FAEA; }
.item input { margin-right: 10px; accent-color: #1C7F56; width: 16px; height: 16px; cursor: pointer; }
.list-items::-webkit-scrollbar { width: 6px; }
.list-items::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

.results-count { text-align: left; font-size: 16px; color: #555; margin: 0 0 10px 0; }

.startups-container {
    background: #1C7F56;
    padding: 28px 28px;
    border-radius: 48px;
    margin: 0 auto;
    margin-top: 60px;
    overflow: visible;
    font-family: 'Poppins', sans-serif;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
    max-width: 100%;
    margin: 30px auto 0;
    font-family: 'Poppins', sans-serif;
}

.startup-card {
    background: #fff;
    padding: 18px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 314px;
    transition: transform .18s, box-shadow .18s;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.startup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.startup-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
}

.startup-logo-emoji {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
}

.card-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    justify-content: center;
    min-height: 60px;
}

.card-meta .startup-name {
    margin: 0 0 6px 0;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.tags {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.tag {
    background: #1C7F56;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    height: auto;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.tag.small {
    background: #f2f2f2;
    color: #666;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.startup-desc {
    color: #666;
    font-size: 15px;
    margin: 12px 0 18px;
    line-height: 1.5;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
    font-family: 'Poppins', sans-serif;
}

.card-cta{
    background: #1C7F56;
    color: #fff;
    padding: 12px 12px;
    border-radius: 32px;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    width: 100%;
    height: 64px;
    gap:12px;
    position: relative;
    font-weight:700;
    flex-shrink: 0;
}

.card-cta .cta-circle{
    background: white;
    color: #1C7F56;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.card-cta:hover {
    background: #166c41;
}

/* Green Checkmark Badge */
.incubated-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #166647; /* Solid Green */
    color: white;             /* White Check */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 20;
    border: 2px solid #ffffff;
}

.incubated-badge:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.pagination-container {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 8px;
          margin-top: 40px;
          margin-bottom: 60px;
          flex-wrap: wrap;
          font-family: 'Poppins', sans-serif;
      }
      
.page-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #1C7F56;
    border: 1px solid rgba(28, 127, 86, 0.2);
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.page-btn i {
    font-size: 16px;
}

.page-btn.active {
    background: #1C7F56;
    color: white;
    border-color: #1C7F56;
}

.page-btn:hover {
    background: rgba(28, 127, 86, 0.1);
}

.page-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 768px) {
    .pagination {
        gap: 8px;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .page-btn {
        width: 45px;
        height: 45px;
        font-size: 15px;
    }

    .page-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 6px;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .page-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .page-btn i {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
.cards-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 768px) {
.startups-container {
padding: 20px;
}
.cards-grid {
grid-template-columns: 1fr;
}
}
/* --- FOOTER SECTION --- */
.closing-section {
  width: 90%;
  max-width: 90%;
  padding: 60px 0;
  box-sizing: border-box;
  margin: 0 auto;
}

.cta-box {
  font-family: 'Poppins', sans-serif; 
  color: white;
  text-align: center;
  padding: 60px 40px;
  border-radius: 48px;
  margin-bottom: 60px;
  height: auto;
  min-height: 459px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: 
    linear-gradient(40deg, 
      rgba(0, 0, 0, 0) 0%,           
      rgba(20, 102, 82, 0.58) 50%,  
      #297B68 100%),               
    url('/graphics/ctaCover.png'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
}

.cta-box h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 24px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0px 0px rgba(255, 255, 255, 0);
  padding: 12px 32px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  width: auto; 
  min-width: 200px; 
  height: 64px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap; 
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-logo-img {
  width: 198px;
  height: 96px;
  display: block;
  margin-bottom: 6px;
}

.logo-placeholder {
  width: 80px;
  height: 50px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 6px;
}

.footer-small {
  font-size: 12px;
  opacity: 0.7;
}

.footer-tagline {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.7;
  margin-right: 20px;
  text-align: right;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .contact-wrapper {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 48px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form {
    min-height: auto;
  }

  .info-block h3 {
    font-size: 28px;
  }

  .info-block p {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .cta-box h2 {
    font-size: 38px;
  }

  .cta-box p {
    font-size: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    font-family: poppins;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    font-family: poppins;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .footer-tagline {
    font-size: 18px;
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .contact-section {
    padding: 40px 0;
  }
  
  .contact-form {
    padding: 20px;
  }

  .form-group {
    margin-bottom: 30px;
  }

  .cta-box h2 {
    font-size: 32px;
  }

  .cta-box {
    padding: 40px 20px;
    margin-bottom: 40px;
    min-height: 350px;
  }
}

.footer-section {
  width: 100%;
  background: white;
  padding: 60px 0;
  box-sizing: border-box;
}

.footer-divider {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-divider.bottom-line {
  margin-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  gap: 40px;
  padding: 40px 0;
}

.footer-column {
  flex-grow: 1;
  min-width: 150px;
  max-width: 250px;
}

.footer-column:last-child {
  flex-grow: 2;
  min-width: 250px;
  max-width: 400px;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 20px;
}

.footer-column ul li a {
  font-size: 20px;
  opacity: 0.4;
  text-decoration: none;
  color: inherit;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-item span {
  margin-right: 6px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1C7F56;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 32px;
  flex-shrink: 0;
}

.social-icon:hover {
  opacity: 1;
}

.map-container {
  width: 100%; 
  height: 224px;
  overflow: hidden;
}

.footer-bottom {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  opacity: 0.4;
  padding-top: 16px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-column,
    .footer-column:last-child {
        max-width: 100%;
        min-width: 100%;
        text-align: center;
    }

    .footer-column ul {
        width: fit-content;
        margin: 0 auto;
    }

    .footer-column h4 {
        margin-bottom: 15px;
    }

    .footer-column ul li a {
        font-size: 18px;
    }

    .social-links {
      justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 40px 0;
    }
    
    .footer-divider.bottom-line {
        margin-top: 40px;
    }

    .social-links {
      justify-content: center;
    }
}