/* ========= RESET ========= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0d0d1a;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ================
    NAVBAR Css Start
   ================ */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    transition: .4s;
}

header.scrolled {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
}

header.scrolled .logo,
header.scrolled .nav-links a,
header.scrolled .nav-icon {
    color: #222;
}

.navbar {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.logo {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: #10b981;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: .3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #10b981;
}


.dropdown {
    position: relative;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 320px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 999;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #222;
    font-size: 15px;
}

.dropdown-content a:hover {
    background: #f4f7ff;
    color: #0077ff;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-btn {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.nav-icon:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

.nav-icon img {
    width: 50px;
    animation: shake 1.5s infinite;
}

.nav-icon div {
    line-height: 1.2;
}

.font-bold {
    color: red;
    font-weight: 600;
    font-size: 26px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-8deg);
    }

    75% {
        transform: rotate(8deg);
    }
}

@media (max-width: 567px) {
    .nav-right {
        display: none;
    }
}

/* ==== 1024px LAPTOP FIX ==== */

@media (max-width: 1024px) {

    .navbar {
        width: 96%;
        gap: 15px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .logo {
        font-size: 24px;
    }

    .nav-icon {
        padding: 8px 10px;
        gap: 8px;
    }

    .nav-icon img {
        width: 38px;
    }

    .nav-icon .font-bold {
        font-size: 20px;
    }

    .nav-icon .text-sm {
        font-size: 13px;
    }
}

/* ==== TABLET RESPONSIVE ==== */

@media (max-width: 992px) {

    .navbar {
        width: 95%;
        padding: 18px 0;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .logo {
        font-size: 26px;
    }

    .nav-icon {
        padding: 8px 14px;
    }

    .nav-icon img {
        width: 42px;
    }

    .font-bold.text-xl {
        font-size: 16px;
    }
}

/* ==== MOBILE RESPONSIVE ==== */

@media (max-width: 768px) {

    .menu-btn {
        display: block;
        z-index: 1001;
    }

    .navbar {
        width: 92%;
        padding: 18px 0;
    }

    .logo {
        font-size: 24px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 25px 30px;
        gap: 22px;
        transition: 0.4s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: #222;
        font-size: 16px;
        width: 100%;
    }

    .dropdown {
        width: 100%;
    }

    .dropbtn {
        justify-content: space-between;
        width: 100%;
        color: #222;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 0 15px;
        display: none;
        min-width: 100%;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 10px 0;
        font-size: 14px;
    }

    header.scrolled .menu-btn {
        color: #222;
    }
}

/* ==== SMALL MOBILE ===== */

@media (max-width: 480px) {

    .logo {
        font-size: 20px;
    }

    .menu-btn {
        font-size: 24px;
    }

    .nav-links {
        width: 250px;
        padding-top: 90px;
    }

    .nav-links a {
        font-size: 15px;
    }
}

.close-btn {
    display: none;
}

@media (max-width: 768px) {

    .close-btn {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 28px;
        color: #222;
        cursor: pointer;
    }
}

/* MOBILE TOGGLE LOGO */
.mobile-logo {
    display: none;
}

.mobile-logo span {
    color: #10b981;
}

@media (max-width: 768px) {

    .mobile-logo {
        display: block;
        position: absolute;
        top: 28px;
        left: 25px;
        font-size: 16px;
        font-weight: 800;
        color: #222;
        letter-spacing: 1px;
    }

    /* MENU BUTTON HIDE */
    .menu-btn.hide {
        display: none;
    }
}

/* =====================
   Navbar Css End
   ===================== */

/* ===== HERO ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-center {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.hero-slider,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .3) 100%);
    z-index: 1;
}

.hero-content {
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 15px;
    word-break: break-word;
}

.hero-content h1 span {
    color: #10b981;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 25px;
}

/* HERO DOTS */
.hero-dots {
    position: absolute;
    bottom: 220px;
    right: 5%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: .3s;
}

.dot.active {
    background: #10b981;
    height: 30px;
    border-radius: 5px;
}

/* ==================
    STATS CSS Start
   ================== */
.stats-section {
    background: #10b981;
    padding: 10px 8%;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.stats-grid>div {
    padding: 15px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 36px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 12px;
}

.stat-item h3 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}

.stat-item p {
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    margin-top: 5px;
}

/* ===== DESKTOP ===== */

.col-lg-3 {
    width: 25%;
}

/* ===== TABLET ===== */

@media (max-width: 992px) {

    .col-md-6 {
        width: 50%;
    }

    .stats-section {
        padding: 45px 5%;
    }

    .stat-item h3 {
        font-size: 34px;
    }
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .col-6 {
        width: 50%;
    }

    .stats-section {
        padding: 15px 4%;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-item i {
        font-size: 30px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 14px;
    }
}

/* ===== SMALL MOBILE ===== */

@media (max-width: 480px) {

    .col-6 {
        width: 100%;
    }

    .stats-section {
        padding: 20px 20px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-item h3 {
        font-size: 26px;
    }

    .stat-item p {
        font-size: 13px;
    }
}

/* ==================
    STATS CSS End
   ================== */

/* ====================
   DESTINATION SECTION 
   ==================== */

.section {
    padding: 100px 8%;
}

.dest-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.dest-grid>div {
    padding: 10px;
}

.dest-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.dest-grid>div {
    padding: 10px;
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.row>div {
    box-sizing: border-box;
}

/* ==========================
   CARDS
========================== */

.dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 280px;
}

.dest-card.big {
    height: 580px;
}

.dest-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.5s;
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7) 0%,
            transparent 60%);
}

/* ==========================
   CARD CONTENT
========================== */

.dest-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    color: #fff;
}

.dest-info span {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
}

.dest-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 5px 0 3px;
}

.dest-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ==========================
   DESKTOP
========================== */

.col-lg-6 {
    width: 50%;
}

.col-lg-3 {
    width: 25%;
}

.col-md-12 {
    width: 100%;
}

#my-gap {
    padding-bottom: 10px;
}

#my-gap2 {
    padding-top: 10px;
}

/* ===== TABLET ===== */

@media (max-width: 992px) {

    .section {
        padding: 80px 5%;
    }

    .col-lg-6 {
        width: 100%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-12 {
        width: 100%;
    }

    .dest-card.big {
        height: 400px;
    }

    .dest-card {
        height: 260px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section {
        padding: 70px 4%;
    }

    .col-lg-6,
    .col-md-6,
    .col-12 {
        width: 100%;
    }

    .dest-grid>div {
        padding: 6px 10px;
    }

    .row>div {
        width: 100%;
    }

    .dest-card.big {
        height: 320px;
    }

    .dest-card {
        height: 240px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .section-title p {
        font-size: 15px;
    }

    .dest-info h3 {
        font-size: 20px;
    }

    #my-gap {
        padding-bottom: 10px;
    }

    #my-gap2 {
        padding-top: 10px;
    }
}

/* ===== SMALL MOBILE ===== */

@media (max-width: 480px) {

    .section {
        padding: 60px 20px;
    }

    .dest-card.big,
    .dest-card {
        height: 220px;
    }

    .dest-info {
        left: 15px;
        bottom: 15px;
    }

    .dest-info h3 {
        font-size: 18px;
    }

    .dest-info p {
        font-size: 12px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title p {
        font-size: 14px;
    }
}

/* ===== 425px SCREEN ===== */

@media (max-width: 425px) {

    .section {
        padding: 60px 15px;
    }

    .dest-grid {
        margin: 0;
    }

    .dest-grid>div {
        width: 100%;
        padding: 5px 10px;
    }

    .col-lg-6,
    .col-md-6,
    .col-12 {
        width: 100%;
    }

    .dest-card.big,
    .dest-card {
        height: 230px;
    }

    .dest-info {
        left: 15px;
        bottom: 15px;
    }

    .dest-info h3 {
        font-size: 18px;
    }

    .dest-info p {
        font-size: 12px;
    }

    .section-title h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-title p {
        font-size: 14px;
        line-height: 1.6;
    }

    #my-gap {
        padding-bottom: 10px;
    }

    #my-gap2 {
        padding-top: 10px;
    }
}

/* ===== 375px SCREEN ===== */

@media (max-width: 375px) {

    .section {
        padding: 55px 12px;
    }

    .dest-card.big,
    .dest-card {
        height: 210px;
        border-radius: 16px;
    }

    .dest-info {
        left: 13px;
        bottom: 13px;
    }

    .dest-info span {
        font-size: 11px;
    }

    .dest-info h3 {
        font-size: 16px;
    }

    .dest-info p {
        font-size: 11px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 13px;
    }
}

/* ===== 320px SCREEN ===== */

@media (max-width: 320px) {

    .section {
        padding: 50px 10px;
    }

    .dest-grid>div {
        padding: 4px 10px;
    }

    .dest-card.big,
    .dest-card {
        height: 190px;
        border-radius: 14px;
    }

    .dest-info {
        left: 10px;
        bottom: 10px;
    }

    .dest-info span {
        font-size: 10px;
    }

    .dest-info h3 {
        font-size: 14px;
        margin: 3px 0;
    }

    .dest-info p {
        font-size: 10px;
    }

    .section-title h2 {
        font-size: 21px;
    }

    .section-title p {
        font-size: 12px;
        line-height: 1.5;
    }

    #my-gap {
        padding-bottom: 10px;
    }

    #my-gap2 {
        padding-top: 10px;
    }
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-title span {
    display: inline-block;
    color: #10b981;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
}

.section-title span::after {
    content: '';
    width: 60px;
    height: 2px;
    background: #10b981;
    display: block;
    margin: 10px auto 0;
    border-radius: 10px;
}

.section-title h2 {
    font-size: 46px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-title p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8;
    max-width: 650px;
    margin: auto;
}

/* ===== LAPTOP ===== */

@media (max-width: 1024px) {

    .section-title {
        max-width: 680px;
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .section-title p {
        font-size: 16px;
    }
}

/* ===== TABLET ===== */

@media (max-width: 992px) {

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .section-title {
        margin-bottom: 40px;
    }

    .section-title span {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .section-title p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ===== SMALL MOBILE ===== */

@media (max-width: 480px) {

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title p {
        font-size: 13px;
    }

    .section-title span::after {
        width: 45px;
    }
}



/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .07);
    transition: .4s;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: .4s;
}

.card:hover img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #10b981;
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.card-badge.hot {
    background: #059669;
}

.card-content {
    padding: 25px;
}

.card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.card-meta span {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-meta i,
.card-stars i,
.process-icon i,
.why-icon i,
.contact-item i {
    color: #10b981;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.card-content p {
    color: #777;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 15px;
}

.card-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 18px;
}

.card-stars span {
    color: #999;
    font-size: 13px;
    margin-left: 5px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
}

.price {
    color: #333;
    font-size: 14px;
}

.price strong {
    color: #10b981;
    font-size: 22px;
    font-weight: 800;
}

/* ===== WHY CHOOSE US ===== */

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.why-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
}

.why-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #10b981;
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, .4);
}

.why-badge i {
    font-size: 36px;
}

.why-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 15px 0 20px;
    line-height: 1.2;
}

.why-content>p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.why-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.why-item p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

/* ===== 1200px ===== */

@media (max-width: 1200px) {

    .why-grid {
        gap: 50px;
    }

    .why-content h2 {
        font-size: 36px;
    }

    .why-img img {
        height: 500px;
    }
}

/* ===== 992px ===== */

@media (max-width: 992px) {

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-img img {
        height: 450px;
    }

    .why-content h2 {
        font-size: 34px;
    }

    .why-content>p {
        margin-bottom: 30px;
    }

    .why-features {
        gap: 20px;
    }
}

/* ===== 768px ===== */

@media (max-width: 768px) {

    .why-grid {
        gap: 40px;
    }

    .why-img img {
        height: 380px;
    }

    .why-badge {
        bottom: 15px;
        right: 15px;
        padding: 15px 18px;
        border-radius: 12px;
    }

    .why-badge i {
        font-size: 28px;
    }

    .why-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-item {
        gap: 12px;
    }

    .why-icon {
        width: 45px;
        height: 45px;
    }
}

/* ===== 480px ===== */

@media (max-width: 480px) {

    .why-grid {
        gap: 30px;
    }

    .why-img {
        border-radius: 16px;
    }

    .why-img img {
        height: 300px;
        border-radius: 16px;
    }

    .why-badge {
        bottom: 10px;
        right: 10px;
        padding: 12px 14px;
        gap: 10px;
    }

    .why-badge i {
        font-size: 22px;
    }

    .why-content h2 {
        font-size: 26px;
    }

    .why-content>p {
        font-size: 14px;
        line-height: 1.7;
    }

    .why-item h4 {
        font-size: 15px;
    }

    .why-item p {
        font-size: 13px;
    }

    .why-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
}

/* ===== 375px ===== */

@media (max-width: 375px) {

    .why-img img {
        height: 260px;
    }

    .why-content h2 {
        font-size: 22px;
    }

    .why-content>p {
        font-size: 13px;
    }

    .why-badge {
        padding: 10px 12px;
    }

    .why-badge i {
        font-size: 20px;
    }

    .why-item {
        gap: 10px;
    }

    .why-item h4 {
        font-size: 14px;
    }

    .why-item p {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* ===== 320px ===== */

@media (max-width: 320px) {

    .why-grid {
        gap: 25px;
    }

    .why-img img {
        height: 230px;
    }

    .why-badge {
        padding: 8px 10px;
        border-radius: 10px;
    }

    .why-badge i {
        font-size: 18px;
    }

    .why-content h2 {
        font-size: 20px;
    }

    .why-content>p {
        font-size: 12px;
        line-height: 1.6;
    }

    .why-features {
        gap: 15px;
    }

    .why-item h4 {
        font-size: 13px;
    }

    .why-item p {
        font-size: 11px;
    }

    .why-icon {
        width: 38px;
        height: 38px;
    }
}

/* ===== PARALLAX ===== */
.parallax {
    background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1920&auto=format&fit=crop') center/cover fixed;
    padding: 140px 10%;
    position: relative;
    text-align: center;
    color: #fff;
}

.parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 100, 0, .7), rgba(0, 0, 0, .7));
}

.parallax-content {
    position: relative;
    z-index: 1;
}

.parallax-content span {
    color: #10b981;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 14px;
}

.parallax-content h2 {
    font-size: 55px;
    font-weight: 800;
    margin: 15px 0 20px;
    line-height: 1.2;
}

.parallax-content p {
    font-size: 18px;
    opacity: .85;
    margin-bottom: 35px;
}

/* ===== FOOTER ===== */

.site-footer {
    background: #081826;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
    width: 100%;
    overflow: hidden;
}

/* ===== FOOTER GRID ===== */

.footer-grid {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    box-sizing: border-box;
}

/* ===== FOOTER BOX ===== */

.footer-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: 18px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== HEADING ===== */

.footer-box h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-box h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 2px;
    background: #3b82f6;
}

/* ===== LINKS ===== */

.footer-box a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin: 0.7rem 0;
    transition: 0.3s;
    line-height: 1.6;
}

.footer-box a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* ===== CONTACT ===== */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

.contact-item i {
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

/* ===== SOCIALS ===== */

.socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a1a2e;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .3s;
    color: #888 !important;
    font-size: 15px;
}

.socials a:hover {
    background: #10b981;
    color: #fff !important;
    transform: translateY(-3px);
}

/* ===== FOOTER BOTTOM ===== */

.footer-bottom {
    width: calc(100% - 40px);
    max-width: 1280px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #94a3b8;
    box-sizing: border-box;
}

/* =========================
   RESPONSIVE
========================= */

/* ===== 992px ===== */

@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 16px;
    }
}

/* ===== 768px ===== */

@media (max-width: 768px) {

    .site-footer {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 14px;
    }

    .footer-box {
        padding: 22px 18px;
    }
}

/* ===== 480px ===== */

@media (max-width: 480px) {

    .site-footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-grid {
        padding: 0 10px;
        gap: 1rem;
    }

    .footer-box {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .footer-box h3 {
        font-size: 1rem;
    }

    .footer-box a {
        font-size: 14px;
    }

    .contact-item {
        font-size: 13px;
    }

    .footer-bottom {
        width: calc(100% - 20px);
        font-size: 12px;
    }
}

/* ===== 375px ===== */

@media (max-width: 375px) {

    .footer-grid {
        padding: 0 8px;
    }

    .footer-box {
        padding: 18px 14px;
    }

    .footer-box a {
        font-size: 13px;
    }

    .contact-item {
        font-size: 12px;
    }
}

/* ===== 320px ===== */

@media (max-width: 320px) {

    .footer-grid {
        padding: 0 6px;
    }

    .footer-box {
        padding: 16px 12px;
    }

    .footer-box h3 {
        font-size: 0.95rem;
    }

    .footer-box a {
        font-size: 12px;
    }

    .footer-bottom {
        width: calc(100% - 12px);
        font-size: 11px;
    }
}

/* ===== LEGAL ===== */
.legal-links-section {
    max-width: 1280px;
    margin: 1.2rem auto 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.legal-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    row-gap: 1.5rem;
    flex: 2;
}

.legal-group {
    min-width: 170px;
}

.legal-group h4 {
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.legal-group a {
    display: block;
    color: #9ca3af;
    font-size: 0.75rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.legal-group a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.badge-contact {
    background: rgba(59, 130, 246, 0.12);
    padding: 0.8rem 1rem;
    border-radius: 14px;
    border-left: 3px solid #3b82f6;
}

.phone-highlight {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.disclaimer-wrapper {
    max-width: 1280px;
    margin: 1.2rem auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.4rem;
    text-align: center;
    color: #94a3b8;
    line-height: 1.7;
}

.disclaimer-text {
    margin-bottom: 0.6rem;
    font-size: 16px;
}

/* LINKS STYLE */
.disclaimer-text a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s ease;
}



.copy {
    border-top: 1px solid #1a1a2e;
    padding-top: 25px;
    text-align: center;
    color: #555;
    font-size: 14px;
}

/* ===== PAYMENT ===== */
.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
    padding: 5px 0;
}

.payment-icons img {
    width: 55px;
    object-fit: contain;
    padding: 2px 6px;
    border-radius: 10px;
    transition: 0.3s ease;
    cursor: pointer;
}

/* ===== ANIMATION ===== */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}


@media(max-width: 768px) {

    .hero {
        height: auto;
        padding: 80px 5% 60px;
    }

    .hero-center {
        padding-top: 0;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-dots {
        display: none;
    }

    .section-title h2,
    .parallax-content h2 {
        font-size: 32px;
    }


    .newsletter-form {
        flex-direction: column;
        border-radius: 15px;
    }

    .payment-icons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .payment-icons img {
        width: 42px;
    }

    .legal-links-section {
        flex-direction: column;
    }

    .legal-columns,
    .badge-contact {
        width: 100%;
    }
}

@media(max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }



    .why-features {
        gap: 15px;
    }

    .parallax-content h2 {
        font-size: 24px;
    }

    .disclaimer-text {
        font-size: 13px;
    }
}

/* =========================
PROCESS SECTION
========================= */

.process-section {
    padding: 100px 20px;
    background: #f4f8fb;
}

.process-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.process-section .section-title span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(25, 180, 165, 0.12);
    color: #19b4a5;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.process-section .section-title h2 {
    font-size: 44px;
    color: #0d4d57;
    font-weight: 800;
    line-height: 1.2;
}

/* =========================
PROCESS CARDS
========================= */

.process-cards {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    position: relative;
    padding: 40px 32px;
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.process-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(25, 180, 165, 0.08);
    transition: 0.4s ease;
}

.process-card:hover {
    transform: translateY(-12px);
}

.process-card:hover::before {
    transform: scale(1.2);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.process-num {
    font-size: 58px;
    font-weight: 900;
    color: rgba(13, 77, 87, 0.12);
    line-height: 1;
}

.process-icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: linear-gradient(135deg, #19b4a5, #0d4d57);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 12px 25px rgba(25, 180, 165, 0.3);
}

.process-card h3 {
    font-size: 28px;
    color: #0d4d57;
    margin-bottom: 18px;
}

.process-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 30px;
}

.process-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #19b4a5;
    font-weight: 700;
    transition: 0.3s ease;
    text-decoration: none;
}

.process-card a:hover {
    gap: 15px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 992px) {

    .process-cards {
        grid-template-columns: 1fr;
    }

    .process-section .section-title h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {

    .process-section {
        padding: 70px 15px;
    }

    .process-card {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .process-card h3 {
        font-size: 24px;
    }

    .process-section .section-title h2 {
        font-size: 28px;
    }
}

/* =========================
        FAQ SECTION
========================= */

.faq-section {
    padding: 100px 8%;
    background: #f8fbff;
    position: relative;
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FAQ CARD */

.faq-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    transform: translateY(-3px);
}

/* QUESTION */

.faq-question {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    color: #0d4d57;
    text-align: left;
    transition: 0.3s ease;
}

.faq-question i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    flex-shrink: 0;
}

/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 30px;
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}

/* ACTIVE */

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: #10b981;
    color: #fff;
}

/* =========================
        RESPONSIVE
========================= */

@media (max-width: 768px) {

    .faq-section {
        padding: 70px 5%;
    }

    .faq-question {
        font-size: 17px;
        padding: 22px 20px;
        gap: 15px;
    }

    .faq-answer p {
        padding: 0 20px 25px;
        font-size: 14px;
    }

    .faq-question i {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .faq-section {
        padding: 60px 15px;
    }

    .faq-question {
        font-size: 15px;
        line-height: 1.5;
        padding: 20px 18px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.7;
        padding: 0 18px 22px;
    }

    .faq-item {
        border-radius: 16px;
    }
}