/* =========================
   FOOTER SECTION
========================= */
.footer-section,
.footer-section * {
    box-sizing: border-box;
}

.footer-section {
    position: relative;
    padding: 40px 15px 30px;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   MAIN FOOTER BOX
========================= */
.footer-shell {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 92px 58px 40px;
    border-radius: 28px;
    overflow: hidden;

    background: var(--footer-shell-bg);   /* <-- background-color ki jagah */
    background-size: cover;
    background-position: center;

    box-shadow: var(--footer-shell-shadow);
}

/* soft glow overlay */
.footer-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 28% 18%, var(--footer-glow-blue-1), transparent 24%),
        radial-gradient(circle at 52% 50%, var(--footer-glow-white), transparent 26%),
        radial-gradient(circle at 80% 20%, var(--footer-glow-blue-2), transparent 22%);
    pointer-events: none;
    z-index: 1;
}

.footer-tagline{
    margin-bottom:12px;
    font-size:12px;
    font-weight:500;
    color:rgba(255,255,255,.82);
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
}

/* =========================
   TOP GRID
========================= */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.75fr 0.9fr 1fr;
    gap: 54px;
    align-items: start;
    margin-bottom: 78px;
}

/* =========================
   BRAND COLUMN
========================= */
.footer-brand {
    max-width: 355px;
}

.footer-logo{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 16px;
    background:#fff;
    border-radius:12px;
    margin-bottom:10px;
}

.footer-logo-img{
    height:70px;
    width:auto;
    display:block;
    object-fit:contain;
}

.footer-brand p {
    margin: 0;
    max-width: 340px;
    color: var(--footer-text-strong);
    font-size: 16px;
}

.footer-brand-divider {
    width: 100%;
    max-width: 325px;
    height: 1px;
    margin: 24px 0 26px;
    background: var(--footer-divider);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--footer-social-border);
    border-radius: 50%;
    background: var(--footer-social-bg);
    color: var(--white);
    font-size: 17px;
    text-decoration: none;
    transition: all var(--transition-default);
}

.footer-social a:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

/* =========================
   COMMON COLUMN STYLES
========================= */
.footer-col h4 {
    margin: 0 0 30px;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}

/* links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-links li {
    position: relative;
    padding-left: 18px;
    color: var(--white);
}

.footer-links li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
}

.footer-links a {
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: color var(--transition-default);
}

.footer-links a:hover {
    color: var(--footer-link-hover);
}

/* =========================
   WORKING HOURS
========================= */
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-hours-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.footer-hours-row span {
    color: var(--white);
    font-size: 16px;
}

.footer-hours-row span:first-child {
    font-weight: 700;
    white-space: nowrap;
}

.footer-hours-row span:last-child {
    white-space: nowrap;
}

/* =========================
   BOTTOM ROW
========================= */
.footer-bottom {
    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    gap: 42px;
    align-items: center;
    margin-bottom: 42px;
}

/* =========================
   NEWSLETTER
========================= */
.footer-newsletter h3 {
    margin: 0 0 24px;
    color: var(--white);
    font-size: 23px;
    font-weight: 700;
}

.footer-newsletter-form {
    position: relative;
    max-width: 430px;
}

.footer-newsletter-form input {
    width: 100%;
    height: 62px;
    padding: 0 74px 0 20px;
    border: none;
    outline: none;
    border-radius: 14px;
    background: var(--footer-input-bg);
    color: var(--white);
    font-size: 16px;
    box-shadow: none;
}

.footer-newsletter-form input::placeholder {
    color: var(--footer-placeholder);
}

.footer-newsletter-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    border-radius: 12px;
    background: var(--accent-blue);
    color: var(--white);
    font-size: var(--heading-sm);
    cursor: pointer;
    transition: all var(--transition-default);
    box-shadow: var(--footer-newsletter-btn-shadow);
}

.footer-newsletter-btn:hover {
    transform: translateY(-1px);
    background: var(--accent-blue-hover);
}

/* =========================
   CONTACT CARD
========================= */
.footer-contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    padding: 36px 40px;
    border-radius: 24px;
    background: var(--footer-contact-box-bg);
    backdrop-filter: blur(3px);
}

.footer-contact-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-contact-item:first-child::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    width: 1px;
    height: 56px;
    transform: translateY(-50%);
    background: var(--footer-contact-divider);
}

.footer-contact-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-blue);
    color: var(--white);
    font-size: 22px;
    box-shadow: var(--footer-contact-icon-shadow);
}

.footer-contact-text span {
    display: block;
    margin-bottom: 7px;
    color: var(--footer-text-soft);
    font-size: 15px;
}

.footer-contact-text h5 {
    margin: 0;
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
}

.footer-established{
    display: inline-block;
    margin: 12px 0 16px;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: rgba(255,255,255,.08);
}

.footer-established strong{
    color: var(--primary-color);
}

/* =========================
   COPYRIGHT
========================= */
.footer-copyright{
    padding-top: 24px;
    border-top: 1px solid var(--footer-divider);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copy-left,
.footer-copy-right{
    color: var(--white);
    font-size: 15px;
}

.footer-copy-right{
    text-align: right;
}

.footer-copy-right a{
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.footer-copy-right a:hover{
    color: var(--primary-color);
}

.footer-copyright p {
    margin: 0;
    color: var(--white);
    font-size: 15px;
}



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1399px) {
    .footer-top {
        gap: 40px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1199px) {
    .footer-section {
        padding: 25px 22px 25px;
    }

    .footer-shell {
        padding: 72px 34px 34px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 42px 34px;
        margin-bottom: 58px;
    }

    .footer-contact-box {
        grid-template-columns: 1fr;
    }

    .footer-contact-item:first-child::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .footer-section {
        padding: 20px 12px 20px;
    }

    .footer-shell {
        padding: 60px 22px 28px;
        border-radius: 22px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 46px;
    }

    .footer-col h4 {
        margin-bottom: 22px;
        font-size: 21px;
    }

    .footer-bottom {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-contact-box {
        padding: 26px 22px;
        border-radius: 20px;
    }
}

@media (max-width: 767px) {
.footer-section{
    padding:16px 10px;
}

.footer-container{
    width:100%;
}

    .footer-shell {
        padding: 48px 16px 24px;
        border-radius: 18px;
    }

.footer-top{
    gap:28px;
    margin-bottom:34px;
}

.footer-brand{
    max-width:100%;
}

.footer-brand p{
    max-width:100%;
}

.footer-logo-img{
    height:56px;
}

.footer-logo{
    padding:10px 14px;
}
    .footer-brand p,
    .footer-links a,
    .footer-hours-row span {
        font-size: 15px;
    }

    .footer-col h4 {
        font-size: 20px;
    }
    
    .footer-links{
    gap:2px;
}

.footer-links li{
    padding-left:16px;
}

.footer-links a{
    line-height:1.5;
}

    .footer-newsletter h3 {
        margin-bottom: 18px;
        font-size: 20px;
    }

    .footer-newsletter-form input {
        height: 56px;
        padding: 0 68px 0 16px;
        font-size: 15px;
    }
    
.footer-newsletter-form{
    max-width:100%;
}

    .footer-newsletter-btn {
        width: 46px;
        height: 46px;
        font-size: 16px;
    }

    .footer-contact-box {
        padding: 22px 16px;
        gap: 20px;
    }

.footer-contact-item{
    align-items:flex-start;
    gap:14px;
    flex-wrap:wrap;
}

    .footer-contact-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: var(--heading-sm);
    }

    .footer-contact-text h5 {
        font-size: 15px;
    }

.footer-contact-text{
    flex:1;
    min-width:0;
}

.footer-contact-text h5{
    word-break:break-word;
    line-height:1.5;
}

.footer-contact-text span{
    font-size:13px;
}

    .footer-copyright p {
        font-size: 14px;
    }

    .footer-hours-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
.footer-hours-row span:last-child{
    white-space:normal;
}
}


@media (max-width:575px){

.footer-shell{
    padding:38px 14px 18px;
}

.footer-logo-img{
    height:48px;
}

.footer-col h4{
    font-size:18px;
    margin-bottom:16px;
}

.footer-brand p,
.footer-links a,
.footer-hours-row span{
    font-size:14px;
}

.footer-newsletter h3{
    font-size:18px;
}

.footer-newsletter-form input{
    height:52px;
    font-size:14px;
}

.footer-newsletter-btn{
    width:42px;
    height:42px;
}

.footer-contact-box{
    padding:18px 14px;
    border-radius:16px;
}

.footer-contact-icon{
    width:42px;
    height:42px;
    min-width:42px;
    font-size:18px;
}

.footer-contact-text h5{
    font-size:14px;
}

.footer-established{
    font-size:12px;
    padding:5px 12px;
}

.footer-copyright{
    flex-direction:column;
    text-align:center;
    gap:10px;
}

.footer-copy-left,
.footer-copy-right{
    width:100%;
    text-align:center;
    font-size:13px;
}
}