/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    scroll-behavior: smooth;
    /* Prevent random horizontal scrollbars on small screens */
    overflow-x: hidden;
}

/* ================= LOADER ================= */
#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 9999;
    transition: opacity 0.5s ease;


}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid #f59e0b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* ================= BANNER HEADER (Transparent on Banner) ================= */
.banner-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    box-shadow: none;
    z-index: 990;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-header.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.banner-header .navbar a {
    color: #ffffff;
}

.banner-header .hamburger-btn span {
    background: #ffffff;
}

/* ================= MAIN HEADER (White Header After Banner) ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    box-shadow: none;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    transform: translateY(0);
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 48px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Banner header - white text */
.banner-header .navbar a {
    color: #ffffff;
}

/* Main header - dark text when scrolled */
.header .navbar a {
    color: #111;
}

.header.scrolled .navbar a {
    color: #111;
}

.navbar a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: #f59e0b;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

/* ================= HAMBURGER BUTTON ================= */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 900;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Banner header hamburger - white */
.banner-header .hamburger-btn span {
    background: #ffffff;
}

/* Main header hamburger - dark */
.header .hamburger-btn span {
    background: #0f172a;
}

.header.scrolled .hamburger-btn span {
    background: #0f172a;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ================= OFFCANVAS MENU ================= */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    transform: translateZ(0); /* Hardware acceleration */
}

.offcanvas-menu.active {
    right: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.offcanvas-header .logo img {
    height: 40px;
}

.close-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #0f172a;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #f59e0b;
}

.offcanvas-nav {
    padding: 20px 0;
}

.offcanvas-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-nav li {
    border-bottom: 1px solid #f1f5f9;
}

.offcanvas-nav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.offcanvas-nav a:hover,
.offcanvas-nav a.active {
    background: #fff7ed;
    color: #f59e0b;
    padding-left: 25px;
}

/* ================= RESPONSIVE HEADER ================= */
@media (max-width: 992px) {
    .navbar {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }
}

/* ================= BANNER ================= */
.banner {
    height: 100vh;
    background: url("../assests/img/banner.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(2,6,23,0.9),
        rgba(2,6,23,0.4)
    );
}

.banner-content {
    position: relative;
    color: #fff;
    max-width: 850px;
}

.banner h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.banner h1 span {
    display: block;
    font-size: 26px;
    color: #fbbf24;
}

.banner p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ================= BUTTONS ================= */
.banner-buttons {
    margin-top: 60px;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #f59e0b, #ea580c);
    color: #fff;
    box-shadow: 0 10px 25px rgba(245,158,11,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* ================= ANIMATIONS ================= */
.animate {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.7s; }
.delay-3 { animation-delay: 1s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ================= ABOUT / INTRO ================= */
.about-us {
    padding: 100px 0;
    background: #f8fafc;
}

.about-heading {
    text-align: center;
    margin-bottom: 40px;
}

.about-heading h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    color: #0f172a;
}

.about-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 90px;
    height: 4px;
    background: linear-gradient(45deg, #f59e0b, #ea580c);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 18px;
    padding: 0 5px;
    text-align: center;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.06);
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .about-flex,
    .why-choose-flex {
        flex-direction: column;
    }

    .about-image,
    .why-choose-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Banner adjustments for mobiles & tablets */
    .banner {
        height: auto;
        padding: 100px 0 70px;
        align-items: flex-start;
    }

    .banner-content {
        text-align: center;
        max-width: 100%;
    }

    .banner h1 {
        font-size: 32px;
    }

    .banner h1 span {
        font-size: 20px;
    }

    .banner p {
        font-size: 16px;
    }

    .banner-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 24px;
    }

    .banner-buttons .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        margin-right: 0;
    }

    /* About section stacks nicely on small screens */
    .about-flex {
        flex-direction: column;
    }

    .about-content h2 {
        font-size: 28px;
    }

    /* Slightly reduce about image height on mobile/tablet */
    .about-image img {
        max-height: 320px;
    }

    /* Slightly reduce "Why Choose Us" image height on mobile/tablet */
    .why-choose-image img {
        max-height: 320px;
    }

    .about-us {
    padding: 50px 0;
}
.about-heading h2 {
    font-size: 24px;
    /* position: relative;
    display: inline-block;
    color: #0f172a; */
}
}

/* ================= PACKAGES SECTION ================= */
.packages {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 38px;
    color: #0f172a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 90px;
    height: 4px;
    background: linear-gradient(45deg, #f59e0b, #ea580c);
}

.section-header p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

/* ================= GRID ================= */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================= CARD ================= */
.package-card {
    background: #f8fafc;
    border-radius: 22px;
    padding: 35px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.package-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #020617;
}

.duration {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #ea580c;
    margin-bottom: 15px;
}

/* Center headings and sub-headings inside package cards */
.package-card h3,
.package-card .duration {
    text-align: center;
    width: 100%;
}

.package-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 16px;
    text-align: center;
}

.package-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.package-card ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #334155;
}

/* ================= BUTTON ================= */
.card-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 50px;
    background: linear-gradient(45deg, #f59e0b, #ea580c);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Center card buttons inside each package card */
.package-card .card-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.card-btn:hover {
    transform: scale(1.05);
}

/* ================= FEATURED CARD ================= */
.package-card.highlight {
    background: linear-gradient(180deg, #fff7ed, #ffffff);
    border: 2px solid #fed7aa;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .package-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }
    .packages {
    padding: 50px 0;
}
}

/* ================= WHY CHOOSE US ================= */
.why-choose-us {
    padding: 100px 0;
    background: #f8fafc;
    /* border: 1px solid red; */
}

/* FLEX ROW */
.why-choose-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.why-choose-image {
    flex: 1;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
    transition: transform 0.6s ease;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.why-choose-content {
    flex: 1;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    background: #f8fafc;
    padding: 20px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.why-list li:hover {
    transform: translateX(10px);
}

.why-list .icon {
    font-size: 26px;
    flex-shrink: 0;
}

.why-list strong {
    color: #020617;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .why-choose-flex {
        flex-direction: column;
    }
}
/* ================= STATS SECTION ================= */
.stats-section {
    background: #ffffff;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-box {
    padding: 20px 10px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
}

.stat-icon {
    font-size: 26px;
    margin-bottom: 8px;
}

.stat-box h3 {
    font-size: 26px;
    font-weight: 700;
    color: #dc2626; /* red like your screenshot */
    margin-bottom: 4px;
}

.stat-box p {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= ITINERARY OVERVIEW SECTION ================= */
.why-choose-us {
    padding: 50px 0;
}
.itinerary-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

/* ---------- ITINERARY GRID ---------- */
.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 950px;
    margin: 80px auto;
    padding: 0px 8px;
}

/* ---------- ITINERARY CARD ---------- */
.itinerary-card {
    background: #ffffff;
    padding: 22px 26px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
}

.itinerary-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

/* ---------- DAY BADGE ---------- */
.itinerary-card .day {
    min-width: 72px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    background: linear-gradient(45deg, #f59e0b, #ea580c);
    padding: 12px 0;
    border-radius: 12px;
    flex-shrink: 0;
}

/* ---------- CONTENT + ICON ---------- */
.itinerary-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.itinerary-content .icon {
    font-size: 24px;
    line-height: 1;
}

.itinerary-content p {
    font-size: 16px;
    color: #334155;
    line-height: 1.6;
}

.itinerary-content p strong {
    color: #0f172a;
}

/* ---------- DHAM SPECIAL STYLE ---------- */
.itinerary-card.dham {
    border-left: 5px solid #f59e0b;
    background: linear-gradient(180deg, #ffffff, #fff7ed);
}

.itinerary-card.dham:hover {
    box-shadow: 0 28px 55px rgba(245, 158, 11, 0.25);
}

/* ---------- SCROLL ANIMATION SUPPORT ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .itinerary-grid {
        grid-template-columns: 1fr;
        margin: 40px 0;
    }

    .itinerary-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 24px;
    }

    .itinerary-content p {
        font-size: 15px;
    }

    .itinerary-content .icon {
        font-size: 22px;
    }
}

/* ================= FAQ SECTION ================= */

.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

/* ---------- FAQ ITEM ---------- */
.faq-item {
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item.active {
    border-left: 5px solid #f59e0b;
}

/* ---------- QUESTION ---------- */
.faq-question {
    width: 100%;
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* ---------- ANSWER ---------- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

/* ---------- ACTIVE STATE ---------- */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}


.faq-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: #0f172a;
}

/* Rotate arrow when open */
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 480px) {
    .faq-question {
        font-size: 16px;
        padding: 18px;
    }

    .faq-answer p {
        font-size: 15px;
    }
    .faq-section{
        padding: 50px 0;
    }
}


/* ---------- QUESTION STYLE IMPROVEMENT ---------- */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* Question text stronger */
.question-text {
    font-weight: 600;
    color: #0f172a;
}

/* ---------- ARROW STYLE ---------- */
.arrow {
    position: relative;
    width: 20px;
    height: 20px;
}

.arrow-down,
.arrow-up {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Default state */
.arrow-up {
    opacity: 0;
    transform: translateY(4px);
}

.arrow-down {
    opacity: 1;
}

/* Active (Open) state */
.faq-item.active .arrow-up {
    opacity: 1;
    transform: translateY(0);
}

.faq-item.active .arrow-down {
    opacity: 0;
    transform: translateY(-4px);
}

/* ---------- ANSWER VISUAL DIFFERENCE ---------- */
.faq-answer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.faq-answer p {
    color: #475569;
}

/* Extra spacing to separate Q & A */
.faq-item.active .faq-question {
    background: #fff7ed;
}
/* ================= FOOTER CTA SECTION ================= */

.footer-cta {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #ffffff;
    padding: 100px 0 0;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.footer-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.footer-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5f5;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 16px;
    margin-bottom: 8px;
}

/* RIGHT FORM */
.footer-form {
    background: #ffffff;
    color: #0f172a;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.footer-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 15px;
}

.form-group input:focus {
    outline: none;
    border-color: #f59e0b;
}

/* BUTTON */
.btn-submit {
    width: 100%;
    background: linear-gradient(45deg, #f59e0b, #ea580c);
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.5);
}

/* BOTTOM BAR */
.footer-bottom {
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .footer-cta {
        padding-top: 40px;
    }

    .footer-form {
        padding: 25px;
    }
}

