/* ===============================
   Tours & Travels Footer Styles
   =============================== */

#site-footer {
    background: #0b1c2d;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px 0;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Headings */
#site-footer h3,
#site-footer h4 {
    color: #ff6a10;
    margin-bottom: 15px;
}

/* Text */
#site-footer p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Links */
#site-footer a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

#site-footer a:hover {
    color: #ff6a10;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

/* Subscribe Section */
.footer-subscribe form {
    margin-top: 10px;
}

.footer-subscribe input[type="email"] {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    outline: none;
    margin-bottom: 10px;
}

.footer-subscribe input[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #ff6a10;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    transition: background 0.3s ease;
}

.footer-subscribe input[type="submit"]:hover {
    background: #ff6a10;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 40px;
    background: #081421;
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        padding-top: 40px;
    }

    .footer-grid {
        gap: 20px;
    }
}


/* MODAL */
.callback-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.callback-modal.active {
    display: block;
}

/* Overlay */
.callback-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

/* Box */
.callback-box {
    position: relative;
    background: #fff;
    max-width: 420px;
    margin: 4% auto;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,.3);
    animation: pop .3s ease;
}

@keyframes pop {
    from { transform: scale(.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Close */
.callback-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* Heading */
.callback-box h3 {
    margin-bottom: 6px;
}

.callback-product {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* Form */
/* CF7 INSIDE MODAL */
.callback-box form {
    margin-top: 10px;
}

.callback-box input,
.callback-box textarea {
    width: 90%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.callback-box textarea {
    resize: none;
    height: 90px;
}

.callback-box input:focus,
.callback-box textarea:focus {
    outline: none;
    border-color: #ff6a00;
}

/* Submit button */
.callback-box input[type="submit"] {
    background: #ff6a00;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    cursor: pointer;
}


.callback-form button {
    width: 100%;
    padding: 14px;
    background: #ff6a00;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.wpcf7-spinner {
        margin:0px !important;
}
