* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}



body {
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* //////////////////////////////////////////////// */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    z-index: 99999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
    animation: slideIn .3s ease;
}

.toast-success {
    background: #000000;
}

.toast-error {
    background: #dc3545;
}

.toast.hide {
    animation: slideOut .3s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* ////////////////////////////////////////////////// */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, .75);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo i {
    font-size: 24px;
}

.logo h3 {
    font-size: 18px;
    letter-spacing: 2px;
}

.logo span {
    font-size: 11px;
    color: #999;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;
}

.nav-links a:hover {
    color: #ccc;
}

.whatsapp-btn {
    text-decoration: none;
    color: black;
    background: white;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* ////////////////////////////////// */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: #000;
    overflow: hidden;
}

.hero-container {
    max-width: 1300px;
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 12px 18px;
    border-radius: 999px;
    color: #ddd;
    font-size: 14px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 25px;
    font-family: Georgia, serif;
    font-weight: 600;
}

.hero p {
    color: #b8b8b8;
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary {
    background: white;
    color: black;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.btn-secondary {
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 16px 28px;
    border-radius: 14px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat h3 {
    font-size: 30px;
    margin-bottom: 6px;
}

.stat span {
    color: #999;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
}

.floating-card {
    position: absolute;
    bottom: 50px;
    left: -40px;
    background: rgba(20, 20, 20, .95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 24px;
    border-radius: 16px;
}

.floating-card span {
    display: block;
    color: #aaa;
    font-size: 13px;
    margin-bottom: 5px;
}

.floating-card strong {
    font-size: 18px;
}

/* ////////////How it works////////////////////// */
.how-it-works {
    padding: 120px 20px;
    background: #050505;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #111;
    border-radius: 50px;
    color: #999;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.section-header p {
    color: #999;
    line-height: 1.8;
}

.steps-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step-card {
    position: relative;
    padding: 40px 30px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 24px;
    transition: .4s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, .15);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    font-weight: 700;
    color: rgba(255, 255, 255, .05);
}

.step-card i {
    font-size: 40px;
    margin-bottom: 25px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step-card p {
    color: #9d9d9d;
    line-height: 1.8;
}

/* ////////////////////////////////// */
.airlines {
    max-width: 1300px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    color: #666;
    font-weight: 600;
    letter-spacing: 2px;
}

.services {
    padding: 120px 20px;
    background: #000;
}

.services-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    padding: 40px;
    border-radius: 28px;
    background: linear-gradient(180deg,
            #111,
            #090909);
    border: 1px solid rgba(255, 255, 255, .06);
    overflow: hidden;
    transition: .4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, .18);
}

.service-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .03);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #151515;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 28px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-card p {
    color: #999;
    line-height: 1.9;
}

.premium-card {
    background: linear-gradient(135deg,
            #ffffff,
            #d9d9d9);
    color: #000;
}

.premium-card p {
    color: #444;
}

.premium-card .service-icon {
    background: #fff;
}

/* ////////////////////////////////// */

.why-us {
    padding: 120px 20px;
    background: #050505;
}

.why-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-size: 58px;
    line-height: 1.2;
    margin: 20px 0;
    font-family: Georgia, serif;
}

.why-content>p {
    color: #9d9d9d;
    line-height: 1.9;
    margin-bottom: 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    gap: 18px;
    padding: 25px;
    border-radius: 20px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, .06);
}

.trust-item i {
    font-size: 24px;
    margin-top: 4px;
}

.trust-item h4 {
    margin-bottom: 8px;
}

.trust-item p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
}

.why-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    padding: 35px;
    border-radius: 28px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: .4s;
}

.feature-card:hover {
    transform: translateX(10px);
}

.feature-card span {
    display: inline-block;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.feature-card p {
    color: #999;
    line-height: 1.8;
}

/* ////////////////////////////////// */

.quote-section {
    padding: 120px 20px;
    background: #000;
}

.quote-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-content h2 {
    font-size: 60px;
    line-height: 1.15;
    margin: 20px 0;
    font-family: Georgia, serif;
}

.quote-content p {
    color: #9b9b9b;
    line-height: 1.9;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #0d0d0d;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.contact-card i {
    font-size: 24px;
}

.contact-card h4 {
    margin-bottom: 6px;
}

.contact-card span {
    color: #999;
}

.quote-form-wrapper {
    background: #0d0d0d;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    width: 100%;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 18px;
    border: none;
    outline: none;
    background: #151515;
    color: #fff;
    border-radius: 14px;
    font-size: 15px;
}

.input-group textarea {
    resize: none;
    height: 120px;
}

.full-width {
    grid-column: span 2;
}

.submit-btn {
    grid-column: span 2;
    border: none;
    background: #fff;
    color: #000;
    padding: 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* ///////////////////////////////// */
.cta-section {
    margin: auto;
    padding: 20px;
}

.cta-strip {
    max-width: 1300px;
    margin: 0 auto 100px;
    padding: 60px 40px;
    background: #fff;
    color: #000;
    border-radius: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .03);
    top: -150px;
    right: -100px;
}

.cta-strip h2 {
    font-size: 48px;
    line-height: 1.2;
    max-width: 700px;
    font-family: Georgia, serif;
    position: relative;
    z-index: 2;
}

.cta-strip a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.cta-strip a:hover {
    transform: translateY(-3px);
}

/* ///////////////////////////////// */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 80px;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns:
        1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 24px;
}

.footer-logo h3 {
    font-size: 18px;
    letter-spacing: 2px;
}

.footer-logo span {
    font-size: 11px;
    color: #888;
}

.footer-brand p {
    color: #9d9d9d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    background: #111;
    border-radius: 12px;
    transition: .3s;
}

.social-links a:hover {
    background: white;
    color: black;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    text-decoration: none;
    color: #999;
    transition: .3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    gap: 12px;
    color: #999;
    margin-bottom: 18px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 25px 20px;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #777;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    text-decoration: none;
    color: #777;
}

/* ////////////////////////////////// */
@media(max-width:900px) {
    .menu-toggle {
        display: block;
    }

    .whatsapp-btn {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: .4s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .nav-links a {
        display: block;
        padding: 18px 24px;
    }
}

/* ./////////////////////////////////////////// */
@media(max-width:992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero p {
        margin: auto auto 35px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        margin-bottom: 40px;
    }

    .hero-image {
        order: -1;
    }

    .floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}

@media(max-width:576px) {
    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat h3 {
        font-size: 22px;
    }
}

/* /////////////how it works/////////////// */
@media(max-width:992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 42px;
    }
}

@media(max-width:576px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 34px;
    }
}

/* //////////////////////////////// */
@media(max-width:992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ///////////////////////////////////////// */
@media(max-width:992px) {
    .why-container {
        grid-template-columns: 1fr;
    }

    .why-content h2 {
        font-size: 42px;
    }
}

@media(max-width:576px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .why-content h2 {
        font-size: 34px;
    }
}

/* ////////////////////////////////////////////// */
@media(max-width:992px) {
    .cta-strip {
        grid-template-columns: 1fr;
    }

    .cta-strip h2 {
        font-size: 42px;
    }

}

@media(max-width:576px) {
    .cta-strip h2 {
        font-size: 34px;
    }
}

/* ////////////////////////////////////////////// */
@media(max-width:992px) {
    .quote-container {
        grid-template-columns: 1fr;
    }

    .quote-content h2 {
        font-size: 42px;
    }
}

@media(max-width:576px) {
    .quote-form {
        grid-template-columns: 1fr;
    }

    .full-width,
    .submit-btn {
        grid-column: span 1;
    }

    .quote-content h2 {
        font-size: 34px;
    }
}

/* /////////////////////////////////// */
@media(max-width:992px) {
    .footer-container {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}