footer {
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 60px 40px 40px;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

/* Panel 1: Logo & Social */
.footer-brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 0 !important;
    transition: transform 0.3s ease;
}

.logo img{

    width: 60px !important;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: black;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    background: #1a1a1a;
    transform: rotate(-5deg);
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: black;
}

.footer-desc {
    color: #666;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}


.mb-20{
    margin-bottom: 20px !important;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: black;
    top: 0;
    left: 0;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.social-icon:hover::after {
    transform: scale(1);
}

.social-icon:hover {
    border-color: black;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icon svg {
    position: relative;
    z-index: 1;
}

/* Panel 2: Links */
.footer-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 193px;
}

.copyright-text {

    padding-top: 40px;
}

.links-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .3px !important;
    color: black;
    margin-bottom: 16px;
}

.links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links-list a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.links-list a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: black;
    transition: width 0.3s ease;
}

.links-list a:hover {
    color: black;
    transform: translateX(4px);
}

.links-list a:hover::before {
    width: 100%;
}

/* Panel 3: CTA */
.footer-cta {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    background: white;
}

.cta-title {
    font-size: 16px;
    font-weight: 700;
    color: black;
    margin-bottom: 8px;
}

.cta-desc {
    color: #666;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}


.select-container {
  display: inline-block;
}

.language-select {
  padding: 10px 35px 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transition: all 0.2s ease;
  min-width: 150px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.language-select:hover {
  border-color: #999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.language-select:focus {
  outline: none;
  border-color: #666;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: black;
    color: white;
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: white;
    color: black;
}

.btn-secondary:hover {
    background: black;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

/* Responsive Styles */
@media only screen and (max-width: 1600px) {
    .footer-content {
        gap: 50px;
    }
}

@media only screen and (max-width: 1440px) {
    footer {
        padding: 50px 30px 30px;
    }

    .footer-content {
        gap: 40px;
    }
}

@media only screen and (max-width: 920px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-brand {
        flex: 1 1 100%;
    }

    .footer-links {
        gap: 0 !important;
        justify-content: space-between;
    }

    .footer-cta {
        flex: 1 1 45%;
    }
}

@media only screen and (max-width: 620px) {
    footer {
        padding: 40px 20px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }

    .footer-brand,
    .footer-links,
    .footer-cta {
        flex: 1 1 100%;
    }

    .footer-links {
        gap: 35px;
    }
}

@media only screen and (max-width: 540px) {
    .logo-text {
        font-size: 24px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .cta-title {
        font-size: 20px;
    }

    .footer-cta {
        padding: 25px;
    }
}

@media only screen and (max-width: 440px) {
    .footer-container {
        width: 100% !important;
    }

    footer {
        padding: 30px 15px 25px;
    }

    .logo-text {
        font-size: 22px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .links-title {
        font-size: 17px;
    }

    .links-list a {
        font-size: 14px;
    }

    .cta-title {
        font-size: 19px;
    }

    .cta-desc {
        font-size: 13px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    .footer-cta {
        padding: 20px;
    }
}