/*
===========================================
  GLOBAL.CSS — Swift Launch Website
  Yeh file SABI pages mein link karni hai
  Navbar + Footer + Common styles yahaan hain
===========================================
*/

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

/* ===== COLORS (Variables) ===== */
:root {
    --blue-dark: #01328E;
    --blue-light: #08A1DD;
    --bg-light: #f4f4f4;
    --text-dark: #000;
    --text-muted: #555;
    --white: #ffffff;
}

/* ============================= */
/*         NAVBAR                */
/* ============================= */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 55px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--blue-light);
}

.nav-links a.active {
    color: var(--blue-light) !important;
    font-weight: 700;
}

.login-btn {
    background: var(--blue-dark);
    color: white;
    padding: 8px 39px;
    border-radius: 30px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    margin-left: 122px;
    transition: 0.3s;
}

.login-btn:hover {
    background: var(--blue-light);
    color: white;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #000;
    border-radius: 5px;
    transition: 0.3s;
}

/* ===== NAVBAR RESPONSIVE ===== */
@media (max-width: 1080px) {
    .nav-container {
        flex-direction: row;
    }

    .nav-links {
        gap: 27px;
    }
}

@media (max-width: 980px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .login-btn {
        margin-left: 0;
    }
}

/* ============================= */
/*     CONTACT + SUBSCRIBE       */
/* ============================= */
.contact-section {
    background: var(--blue-light);
    padding: 50px 20px;
    margin-top: 367px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: stretch;
    margin-top: -365px;
}

.contact-form {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    max-width: 100%;
}

.bottom-tag {
    border: 1px solid var(--blue-dark);
    background: transparent;
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--blue-dark);
    font-size: 12px;
}

.contact-form h2 {
    margin: 15px 0 10px;
    color: var(--blue-dark);
    font-size: 32px;
}

.contact-form p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.field label {
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: none;
    background: #eaeaea;
    font-size: 14px;
    outline: none;
}

textarea {
    height: 100px;
    resize: none;
}

.full {
    margin-top: 5px;
}

.form-btn {
    background: var(--blue-dark);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 500;
    transition: 0.3s ease;
}

.form-btn:hover {
    background: var(--blue-light);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-image {
    position: relative;
    flex: 1;
}

.contact-image img {
    width: 97%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.call-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-bottom {
    margin-top: -3px;
    width: 69px;
    height: 32px;
}

/* CONTACT ANIMATIONS */
.contact-form,
.contact-image,
.subscribe {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease;
}

.contact-form {
    transform: translateX(-80px);
}

.contact-image {
    transform: translateX(80px);
}

.show {
    opacity: 1;
    transform: translate(0, 0);
}

.contact-form input:focus,
.contact-form textarea:focus {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(10, 79, 163, 0.25);
}

/* SUBSCRIBE */
.subscribe {
    max-width: 700px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: white;
    flex-wrap: wrap;
    margin-bottom: 15px;
    transition-delay: 0.3s;
}

.subscribe p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 35px;
}

.subscribe-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscribe-box input {
    border: none;
    padding: 12px 20px;
    outline: none;
    border-radius: 40px;
    width: 273px;
}

.subscribe-box button {
    background: white;
    color: var(--blue-dark);
    border: none;
    padding: 2px 13px;
    cursor: pointer;
    border-radius: 40px;
    transition: 0.3s ease;
    font-size: 27px;
}

.subscribe-box button img {
    height: 10px;
    margin-bottom: 3px;
    transition: 0.3s ease;
}

.subscribe-box button:hover {
    background-color: var(--blue-dark);
}

.subscribe-box button:hover img {
    filter: brightness(0) invert(1);
}

/* CONTACT RESPONSIVE */
@media (max-width: 1140px) {
    .contact-section {
        margin-top: 200px;
    }

    .contact-container {
        margin-top: -250px;
        padding: 0 20px;
    }
}

@media (max-width: 785px) {
    .contact-section {
        margin-top: 80px;
        padding: 30px 15px;
    }

    .contact-container {
        flex-direction: column;
        margin-top: 0;
        gap: 20px;
    }

    .contact-form {
        width: 92%;
    }

    .contact-image img {
        width: 100%;
    }

    .row {
        flex-direction: column;
    }
}

/* ============================= */
/*           FOOTER              */
/* ============================= */

.footer {
    background: var(--blue-dark);
    color: #fff;
    padding: 60px 80px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.bottom img {
    width: 160px;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9;
    cursor: pointer;
}

.footer-col ul li:hover {
    opacity: 1;
}

.footer-col ul li a {
    text-decoration: none;
    color: inherit;
}

.footer-col ul li a:hover {
    text-decoration: none;
    color: inherit;
}

.link {
    text-decoration: underline;
    color: white;
}

.contact {
    margin: 15px 0;
}

.btn-group {
    margin-top: 20px;
}

.button-ten {
    background: #fff;
    color: var(--blue-dark);
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    margin-right: 10px;
    cursor: pointer;
    font-weight: bold;
}

.button-ten:hover {
    background-color: var(--blue-light);
    color: white;
}

.button-seven {
    padding: 8px 14px;
    margin-left: -9px;
    border: none;
    border-radius: 30px;
    color: var(--blue-dark);
    font-size: 16px;
    background: white;
    cursor: pointer;
}

.button-seven:hover {
    background-color: var(--blue-light);
    color: white;
}

.button-seven:hover img {
    filter: brightness(0) invert(1);
}

.button-seven img {
    height: 9px;
}



.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #ccc;
    font-size: 14px;
    gap: 15px;
}

.footer-bottom .links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom .links span {
    cursor: pointer;
    color: white;
}

.footer-bottom .social {
    display: flex;
    gap: 15px;
}

.footer-bottom .social a {
    color: white;
    font-size: 16px;
}

/* FOOTER RESPONSIVE */
@media (max-width: 992px) {
    .footer {
        padding: 50px 40px 20px;
    }

    .footer-container {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px;
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        text-align: left;
        align-items: flex-start;
    }

    .footer-col {
        width: 65%;
        min-width: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom .links,
    .footer-bottom .social {
        justify-content: center;
        flex-wrap: wrap;
    }
}