                      /* ========================================= */
/* DARSH TRAVELS PREMIUM WEBSITE CSS */
/* File Name: style.css */
/* ========================================= */

/* ========================= */
/* GLOBAL RESET */
/* ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#050505;
    color:#ffffff;
    overflow-x:hidden;
}

/* ========================= */
/* GLOBAL STYLES */
/* ========================= */

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

a{
    text-decoration:none;
}

img{
    width:100%;
    display:block;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

#navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding-top:18px;
}

.nav-wrapper{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border-radius:24px;
    padding:18px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:0.3s ease;
}

/* Logo */

/* ========================================= */
/* LOGO */
/* ========================================= */

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}

/* Logo Box */

.logo-image{
    width:58px;
    height:58px;
    min-width:58px;
    min-height:58px;
    border-radius:14px;
    overflow:hidden;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Actual Image */

.logo-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Text */

.logo-text h2{
    color:#fff;
    font-size:20px;
    font-weight:800;
    line-height:1;
}

.logo-text p{
    color:#8f8f8f;
    font-size:11px;
    letter-spacing:3px;
    margin-top:5px;
}
/* Desktop Menu */

.desktop-menu{
    display:flex;
    align-items:center;
    gap:34px;
}

.desktop-menu a{
    color:#d1d5db;
    font-size:15px;
    font-weight:500;
    transition:0.3s ease;
}

.desktop-menu a:hover{
    color:#22d3ee;
}

/* Nav Buttons */

.nav-buttons{
    display:flex;
    align-items:center;
    gap:14px;
}

.call-btn{
    color:#fff;
    font-weight:600;
    transition:0.3s ease;
}

.call-btn:hover{
    color:#22d3ee;
}

.whatsapp-btn{
    background:#22d3ee;
    color:#000;
    padding:14px 22px;
    border-radius:14px;
    font-weight:700;
    transition:0.3s ease;
    box-shadow:0 0 30px rgba(6,182,212,0.3);
}

.whatsapp-btn:hover{
    transform:translateY(-2px);
    background:#67e8f9;
}

/* Mobile */

.menu-btn{
    display:none;
    width:45px;
    height:45px;
    border:none;
    border-radius:14px;
    background:rgba(255,255,255,0.08);
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.86)
    );
}

/* Glow */

.glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.glow-1{
    width:300px;
    height:300px;
    background:rgba(6,182,212,0.18);
    top:120px;
    left:-80px;
}

.glow-2{
    width:320px;
    height:320px;
    background:rgba(59,130,246,0.15);
    bottom:-100px;
    right:-80px;
}

/* Grid */

.hero-grid{
    position:relative;
    z-index:10;
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:80px;
    align-items:center;
    padding-top:140px;
    padding-bottom:80px;
}

/* Hero Content */

.tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    margin-bottom:26px;
    color:#b6f4ff;
    font-size:14px;
}

.tag span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#22d3ee;
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{
        opacity:0.5;
        transform:scale(1);
    }
    50%{
        opacity:1;
        transform:scale(1.2);
    }
    100%{
        opacity:0.5;
        transform:scale(1);
    }
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    font-weight:900;
    margin-bottom:28px;
}

.hero-content h1 span{
    color:#22d3ee;
}

.hero-content p{
    color:#c4c4c4;
    font-size:18px;
    line-height:1.8;
    max-width:700px;
}

/* Hero Buttons */

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:40px;
}

.hero-call-btn{
    background:#22d3ee;
    color:#000;
    padding:18px 34px;
    border-radius:18px;
    font-weight:800;
    transition:0.3s ease;
    box-shadow:0 0 30px rgba(6,182,212,0.35);
}

.hero-call-btn:hover{
    transform:translateY(-3px);
    background:#67e8f9;
}

.hero-whatsapp-btn{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    color:#fff;
    padding:18px 34px;
    border-radius:18px;
    font-weight:700;
    transition:0.3s ease;
    backdrop-filter:blur(12px);
}

.hero-whatsapp-btn:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,0.12);
}

/* Trust */

.trust-points{
    display:flex;
    flex-wrap:wrap;
    gap:26px;
    margin-top:40px;
}

.trust-points div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#d1d5db;
    font-size:15px;
}

.trust-points i{
    color:#22d3ee;
}

/* Booking Card */

.booking-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:32px;
    padding:36px;
    backdrop-filter:blur(18px);
    box-shadow:0 0 50px rgba(0,0,0,0.35);
}

.booking-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:32px;
}

.booking-header h3{
    font-size:28px;
    font-weight:800;
    margin-bottom:8px;
}

.booking-header p{
    color:#9ca3af;
}

.booking-icon{
    width:64px;
    height:64px;
    border-radius:20px;
    background:rgba(6,182,212,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#22d3ee;
    font-size:26px;
}

/* Booking Items */

.booking-box{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.booking-item{
    display:flex;
    align-items:center;
    gap:18px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:22px;
    padding:18px;
}

.booking-item-icon{
    width:56px;
    height:56px;
    border-radius:18px;
    background:rgba(6,182,212,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#22d3ee;
    font-size:22px;
}

.whatsapp-icon{
    background:rgba(34,197,94,0.12);
    color:#22c55e;
}

.booking-item p{
    color:#9ca3af;
    font-size:14px;
    margin-bottom:5px;
}

.booking-item a{
    color:#fff;
    font-size:18px;
    font-weight:700;
}

/* Mini Features */

.mini-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-top:28px;
}

.feature-box{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:22px;
    padding:26px 18px;
    text-align:center;
    transition:0.3s ease;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box i{
    font-size:24px;
    color:#22d3ee;
    margin-bottom:14px;
}

.feature-box p{
    color:#fff;
    font-weight:600;
}

/* ========================= */
/* FLOATING WHATSAPP */
/* ========================= */

.floating-whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    width:64px;
    height:64px;
    border-radius:50%;
    background:#22c55e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:999;
    box-shadow:0 0 30px rgba(34,197,94,0.45);
    transition:0.3s ease;
}

.floating-whatsapp:hover{
    transform:scale(1.08);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1100px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-content{
        text-align:center;
    }

    .trust-points{
        justify-content:center;
    }

    .hero-buttons{
        justify-content:center;
    }

}

@media(max-width:980px){

    .desktop-menu,
    .nav-buttons{
        display:none;
    }

    .menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .mobile-menu{
        display:flex;
        flex-direction:column;
        gap:18px;
        padding:24px;
        margin-top:12px;
        background:rgba(255,255,255,0.05);
        border-radius:24px;
        border:1px solid rgba(255,255,255,0.08);
        display:none;
    }

    .mobile-menu.active{
        display:flex;
    }

    .mobile-menu a{
        color:#fff;
        font-size:16px;
    }

    .mobile-call-btn,
    .mobile-whatsapp-btn{
        padding:14px;
        border-radius:14px;
        text-align:center;
        font-weight:700;
    }

    .mobile-call-btn{
        background:rgba(255,255,255,0.06);
        border:1px solid rgba(255,255,255,0.08);
    }

    .mobile-whatsapp-btn{
        background:#22d3ee;
        color:#000 !important;
    }

}

@media(max-width:768px){

    .hero{
        padding-top:80px;
    }

    .hero-content h1{
        font-size:44px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-call-btn,
    .hero-whatsapp-btn{
        width:100%;
        text-align:center;
    }

    .booking-card{
        padding:28px;
    }

    .booking-header h3{
        font-size:24px;
    }

}

@media(max-width:540px){

    .logo h2{
        font-size:17px;
    }

    .logo p{
        font-size:10px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .tag{
        font-size:12px;
    }

    .trust-points{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

    .mini-features{
        grid-template-columns:1fr;
    }

} 
/* ========================================= */
/* JAVASCRIPT ANIMATIONS SUPPORT */
/* ========================================= */

.hero-content,
.booking-card,
.feature-box{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.show-reveal{
    opacity:1;
    transform:translateY(0);
}
/* ========================================= */
/* HERO TITLE ANIMATION */
/* ========================================= */

.hero-content h1{
    animation:fadeUp 1s ease forwards;
}

.hero-content p{
    animation:fadeUp 1.2s ease forwards;
}

.hero-buttons{
    animation:fadeUp 1.4s ease forwards;
}

.booking-card{
    animation:fadeUp 1.6s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/* ========================================= */
/* SERVICES SECTION */
/* ========================================= */

.services-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:#070707;
}

/* Glow */

.services-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.services-glow-1{
    width:300px;
    height:300px;
    background:rgba(6,182,212,0.12);
    top:120px;
    left:-100px;
}

.services-glow-2{
    width:280px;
    height:280px;
    background:rgba(59,130,246,0.12);
    bottom:-80px;
    right:-80px;
}

/* Section Heading */

.section-heading{
    text-align:center;
    max-width:760px;
    margin:auto;
    margin-bottom:70px;
    position:relative;
    z-index:10;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    margin-bottom:26px;
    color:#b6f4ff;
    font-size:14px;
}

.section-tag span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#22d3ee;
}

.section-heading h2{
    font-size:56px;
    line-height:1.2;
    font-weight:900;
    margin-bottom:22px;
}

.section-heading h2 span{
    color:#22d3ee;
}

.section-heading p{
    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;
}

/* Services Grid */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    position:relative;
    z-index:10;
}

/* Card */

.service-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:40px 32px;
    backdrop-filter:blur(18px);
    transition:0.35s ease;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(6,182,212,0.08),
        transparent
    );
    opacity:0;
    transition:0.35s ease;
}

.service-card:hover::before{
    opacity:1;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(6,182,212,0.25);
    box-shadow:0 0 40px rgba(6,182,212,0.12);
}

/* Icon */

.service-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    background:rgba(6,182,212,0.12);
    border:1px solid rgba(6,182,212,0.18);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#22d3ee;
    font-size:28px;
    margin-bottom:28px;
    box-shadow:0 0 30px rgba(6,182,212,0.15);
}

/* Text */

.service-card h3{
    font-size:26px;
    font-weight:800;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.service-card p{
    color:#c4c4c4;
    line-height:1.8;
    font-size:16px;
    position:relative;
    z-index:2;
}

/* Responsive */

@media(max-width:1100px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .services-section{
        padding:90px 0;
    }

    .section-heading h2{
        font-size:38px;
    }

    .section-heading p{
        font-size:16px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:34px 26px;
    }

    .service-card h3{
        font-size:22px;
    }

}    
/* ========================================= */
/* TOUR PACKAGES SECTION */
/* ========================================= */

.packages-section{
    position:relative;
    padding:120px 0;
    background:#070707;
    overflow:hidden;
}

/* Glow */

.packages-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.packages-glow-1{
    width:300px;
    height:300px;
    background:rgba(6,182,212,0.10);
    top:100px;
    left:-100px;
}

.packages-glow-2{
    width:280px;
    height:280px;
    background:rgba(59,130,246,0.10);
    bottom:-100px;
    right:-100px;
}

/* Grid */

.packages-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    position:relative;
    z-index:10;
}

/* Card */

.package-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    overflow:hidden;
    transition:0.35s ease;
    backdrop-filter:blur(18px);
}

.package-card:hover{
    transform:translateY(-10px);
    border-color:rgba(6,182,212,0.25);
    box-shadow:0 0 40px rgba(6,182,212,0.12);
}

/* Image */

.package-image{
    position:relative;
    overflow:hidden;
}

.package-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.5s ease;
}

.package-card:hover .package-image img{
    transform:scale(1.08);
}

/* Overlay */

.package-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        transparent
    );
}

/* Location */

.package-location{
    position:absolute;
    left:20px;
    bottom:20px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(14px);
    padding:12px 16px;
    border-radius:999px;
    color:#fff;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    font-weight:600;
}

.package-location i{
    color:#22d3ee;
}

/* Content */

.package-content{
    padding:32px;
}

.package-content h3{
    font-size:30px;
    font-weight:800;
    margin-bottom:18px;
}

.package-content p{
    color:#c4c4c4;
    line-height:1.8;
    margin-bottom:28px;
}

/* Info */

.package-info{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
}

.package-info div{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.06);
    padding:12px 14px;
    border-radius:14px;
    display:flex;
    align-items:center;
    gap:8px;
    color:#d1d5db;
    font-size:14px;
}

.package-info i{
    color:#22d3ee;
}

/* Button */

.package-btn{
    display:inline-block;
    width:100%;
    text-align:center;
    background:#22d3ee;
    color:#000;
    padding:16px;
    border-radius:18px;
    font-weight:800;
    transition:0.3s ease;
    box-shadow:0 0 30px rgba(6,182,212,0.25);
}

.package-btn:hover{
    background:#67e8f9;
    transform:translateY(-2px);
}

/* Responsive */

@media(max-width:1100px){

    .packages-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .packages-section{
        padding:90px 0;
    }

    .package-content{
        padding:24px;
    }

    .package-content h3{
        font-size:24px;
    }

    .package-image img{
        height:240px;
    }

}
/* ========================================= */
/* WHY CHOOSE US SECTION */
/* ========================================= */

.why-section{
    position:relative;
    padding:120px 0;
    background:#050505;
    overflow:hidden;
}

/* Glow */

.why-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.why-glow-1{
    width:320px;
    height:320px;
    background:rgba(6,182,212,0.10);
    top:80px;
    left:-120px;
}

.why-glow-2{
    width:280px;
    height:280px;
    background:rgba(59,130,246,0.08);
    bottom:-80px;
    right:-80px;
}

/* Grid */

.why-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:10;
}

/* Heading */

.why-content h2{
    font-size:58px;
    line-height:1.2;
    font-weight:900;
    margin-bottom:24px;
}

.why-content h2 span{
    color:#22d3ee;
}

.why-content p{
    color:#c4c4c4;
    line-height:1.9;
    font-size:18px;
    margin-bottom:40px;
}

/* Features */

.why-features{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.why-feature-box{
    display:flex;
    gap:22px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:28px;
    transition:0.35s ease;
    backdrop-filter:blur(18px);
}

.why-feature-box:hover{
    transform:translateY(-6px);
    border-color:rgba(6,182,212,0.25);
    box-shadow:0 0 30px rgba(6,182,212,0.10);
}

/* Icon */

.why-icon{
    width:68px;
    height:68px;
    min-width:68px;
    border-radius:22px;
    background:rgba(6,182,212,0.12);
    border:1px solid rgba(6,182,212,0.18);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#22d3ee;
    font-size:28px;
}

/* Text */

.why-feature-box h3{
    font-size:24px;
    margin-bottom:10px;
    font-weight:800;
}

.why-feature-box p{
    margin:0;
    font-size:16px;
    line-height:1.8;
}

/* Stats */

.why-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.stats-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:40px 24px;
    text-align:center;
    backdrop-filter:blur(18px);
    transition:0.35s ease;
}

.stats-card:hover{
    transform:translateY(-8px);
    border-color:rgba(6,182,212,0.25);
    box-shadow:0 0 35px rgba(6,182,212,0.12);
}

.stats-card h3{
    font-size:52px;
    font-weight:900;
    color:#22d3ee;
    margin-bottom:12px;
}

.stats-card p{
    color:#d1d5db;
    font-size:18px;
    font-weight:500;
}

/* Responsive */

@media(max-width:1100px){

    .why-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .why-section{
        padding:90px 0;
    }

    .why-content h2{
        font-size:38px;
    }

    .why-content p{
        font-size:16px;
    }

    .why-feature-box{
        flex-direction:column;
    }

    .why-stats{
        grid-template-columns:1fr;
    }

    .stats-card h3{
        font-size:42px;
    }

}
/* ========================================= */
/* CUSTOMER REVIEWS SECTION */
/* ========================================= */

.reviews-section{
    position:relative;
    padding:120px 0;
    background:#070707;
    overflow:hidden;
}

/* Glow */

.reviews-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.reviews-glow-1{
    width:300px;
    height:300px;
    background:rgba(6,182,212,0.10);
    top:120px;
    right:-100px;
}

.reviews-glow-2{
    width:260px;
    height:260px;
    background:rgba(59,130,246,0.08);
    bottom:-80px;
    left:-80px;
}

/* Grid */

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    position:relative;
    z-index:10;
}

/* Card */

.review-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:34px;
    backdrop-filter:blur(18px);
    transition:0.35s ease;
}

.review-card:hover{
    transform:translateY(-10px);
    border-color:rgba(6,182,212,0.25);
    box-shadow:0 0 35px rgba(6,182,212,0.10);
}

/* Stars */

.review-stars{
    display:flex;
    gap:6px;
    margin-bottom:24px;
}

.review-stars i{
    color:#facc15;
    font-size:18px;
}

/* Review Text */

.review-text{
    color:#d1d5db;
    line-height:1.9;
    font-size:17px;
    margin-bottom:32px;
}

/* User */

.review-user{
    display:flex;
    align-items:center;
    gap:16px;
}

.review-user-image{
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #22d3ee,
        #3b82f6
    );
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:800;
    color:#fff;
}

.review-user h4{
    font-size:18px;
    font-weight:700;
    margin-bottom:4px;
}

.review-user span{
    color:#9ca3af;
    font-size:14px;
}

/* Responsive */

@media(max-width:1100px){

    .reviews-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .reviews-section{
        padding:90px 0;
    }

    .review-card{
        padding:28px;
    }

    .review-text{
        font-size:16px;
    }

}
/* ========================================= */
/* CTA SECTION */
/* ========================================= */

.cta-section{
    position:relative;
    padding:120px 0;
    background:#070707;
    overflow:hidden;
}

/* Glow */

.cta-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.cta-glow-1{
    width:320px;
    height:320px;
    background:rgba(6,182,212,0.12);
    top:-100px;
    left:-100px;
}

.cta-glow-2{
    width:280px;
    height:280px;
    background:rgba(59,130,246,0.10);
    bottom:-100px;
    right:-100px;
}

/* Wrapper */

.cta-wrapper{
    position:relative;
    z-index:10;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:40px;
    padding:70px;
    backdrop-filter:blur(18px);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    overflow:hidden;
}

/* Gradient Overlay */

.cta-wrapper::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(6,182,212,0.08),
        transparent
    );
    pointer-events:none;
}

/* Content */

.cta-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.cta-content h2{
    font-size:62px;
    line-height:1.15;
    font-weight:900;
    margin-bottom:24px;
}

.cta-content h2 span{
    color:#22d3ee;
}

.cta-content p{
    color:#c4c4c4;
    font-size:18px;
    line-height:1.9;
}

/* Buttons */

.cta-buttons{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    gap:22px;
    min-width:340px;
}

/* Common */

.cta-call-btn,
.cta-whatsapp-btn{
    display:flex;
    align-items:center;
    gap:20px;
    padding:24px;
    border-radius:26px;
    transition:0.35s ease;
}

/* Call */

.cta-call-btn{
    background:#22d3ee;
    color:#000;
    box-shadow:0 0 40px rgba(6,182,212,0.25);
}

.cta-call-btn:hover{
    transform:translateY(-5px);
    background:#67e8f9;
}

/* WhatsApp */

.cta-whatsapp-btn{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
}

.cta-whatsapp-btn:hover{
    transform:translateY(-5px);
    border-color:rgba(6,182,212,0.25);
    box-shadow:0 0 35px rgba(6,182,212,0.10);
}

/* Icons */

.cta-call-btn i,
.cta-whatsapp-btn i{
    width:70px;
    height:70px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

/* Call Icon */

.cta-call-btn i{
    background:rgba(255,255,255,0.18);
}

/* WhatsApp Icon */

.cta-whatsapp-btn i{
    background:rgba(6,182,212,0.12);
    color:#22d3ee;
}

/* Text */

.cta-buttons span{
    display:block;
    font-size:14px;
    margin-bottom:6px;
    opacity:0.85;
}

.cta-buttons strong{
    font-size:24px;
    font-weight:800;
}

/* Responsive */

@media(max-width:1100px){

    .cta-wrapper{
        flex-direction:column;
        align-items:flex-start;
    }

    .cta-buttons{
        width:100%;
        min-width:100%;
    }

}

@media(max-width:768px){

    .cta-section{
        padding:90px 0;
    }

    .cta-wrapper{
        padding:40px 28px;
        border-radius:30px;
    }

    .cta-content h2{
        font-size:40px;
    }

    .cta-content p{
        font-size:16px;
    }

    .cta-call-btn,
    .cta-whatsapp-btn{
        padding:20px;
    }

    .cta-call-btn i,
    .cta-whatsapp-btn i{
        width:58px;
        height:58px;
        font-size:22px;
    }

    .cta-buttons strong{
        font-size:20px;
    }

}
/* ========================================= */
/* CONTACT SECTION */
/* ========================================= */

.contact-section{
    position:relative;
    padding:120px 0;
    background:#050505;
    overflow:hidden;
}

/* Glow */

.contact-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.contact-glow-1{
    width:320px;
    height:320px;
    background:rgba(6,182,212,0.10);
    top:100px;
    left:-100px;
}

.contact-glow-2{
    width:260px;
    height:260px;
    background:rgba(59,130,246,0.08);
    bottom:-80px;
    right:-80px;
}

/* Grid */

.contact-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:30px;
    position:relative;
    z-index:10;
}

/* Contact Info */

.contact-info-wrapper{
    display:flex;
    flex-direction:column;
    gap:24px;
}

/* Card */

.contact-card{
    display:flex;
    align-items:center;
    gap:22px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:28px;
    backdrop-filter:blur(18px);
    transition:0.35s ease;
}

.contact-card:hover{
    transform:translateY(-6px);
    border-color:rgba(6,182,212,0.25);
    box-shadow:0 0 35px rgba(6,182,212,0.10);
}

/* Icon */

.contact-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:22px;
    background:rgba(6,182,212,0.12);
    border:1px solid rgba(6,182,212,0.18);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#22d3ee;
    font-size:28px;
}

/* WhatsApp */

.whatsapp-contact-icon{
    background:rgba(34,197,94,0.12);
    border-color:rgba(34,197,94,0.18);
    color:#22c55e;
}

/* Text */

.contact-card span{
    display:block;
    color:#9ca3af;
    font-size:14px;
    margin-bottom:8px;
}

.contact-card a,
.contact-card p{
    color:#fff;
    font-size:22px;
    font-weight:700;
    line-height:1.5;
}

/* Map */

.map-wrapper{
    overflow:hidden;
    border-radius:32px;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(18px);
    min-height:100%;
}

.map-wrapper iframe{
    width:100%;
    height:100%;
    min-height:620px;
    border:none;
    filter:grayscale(1) invert(0.92);
}

/* Responsive */

@media(max-width:1100px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .contact-section{
        padding:90px 0;
    }

    .contact-card{
        padding:24px;
    }

    .contact-card a,
    .contact-card p{
        font-size:18px;
    }

    .contact-icon{
        width:58px;
        height:58px;
        min-width:58px;
        font-size:22px;
    }

    .map-wrapper iframe{
        min-height:420px;
    }

}
/* ========================================= */
/* FOOTER SECTION */
/* ========================================= */

.footer-section{
    position:relative;
    padding-top:120px;
    background:#070707;
    overflow:hidden;
}

/* Glow */

.footer-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.footer-glow-1{
    width:320px;
    height:320px;
    background:rgba(6,182,212,0.10);
    top:-120px;
    left:-120px;
}

.footer-glow-2{
    width:260px;
    height:260px;
    background:rgba(59,130,246,0.08);
    bottom:-100px;
    right:-100px;
}

/* Top */

.footer-top{
    position:relative;
    z-index:10;
    display:grid;
    grid-template-columns:1.3fr 0.7fr 0.7fr 1fr;
    gap:50px;
    padding-bottom:70px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

/* Brand */

.footer-brand{
    max-width:420px;
}

/* Logo */

.footer-logo{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:26px;
}

.footer-logo-image{
    width:60px;
    height:60px;
    border-radius:18px;
    overflow:hidden;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
}

.footer-logo-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.footer-logo h2{
    font-size:22px;
    font-weight:800;
    color:#fff;
    line-height:1;
}

.footer-logo p{
    color:#8f8f8f;
    font-size:11px;
    letter-spacing:3px;
    margin-top:5px;
}

/* Description */

.footer-description{
    color:#c4c4c4;
    line-height:1.9;
    margin-bottom:30px;
}

/* Social */

.footer-socials{
    display:flex;
    gap:14px;
}

.footer-socials a{
    width:52px;
    height:52px;
    border-radius:18px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#22d3ee;
    font-size:20px;
    transition:0.35s ease;
}

.footer-socials a:hover{
    transform:translateY(-5px);
    border-color:rgba(6,182,212,0.25);
    box-shadow:0 0 30px rgba(6,182,212,0.12);
}

/* Links */

.footer-links h3,
.footer-contact h3{
    font-size:24px;
    margin-bottom:28px;
    font-weight:800;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:#c4c4c4;
    margin-bottom:18px;
    transition:0.3s ease;
}

.footer-links a:hover{
    color:#22d3ee;
    transform:translateX(4px);
}

/* Contact */

.footer-contact-item{
    display:flex;
    gap:14px;
    margin-bottom:22px;
    color:#c4c4c4;
}

.footer-contact-item i{
    color:#22d3ee;
    margin-top:5px;
}

.footer-contact-item a,
.footer-contact-item p{
    color:#c4c4c4;
    transition:0.3s ease;
}

.footer-contact-item a:hover{
    color:#22d3ee;
}

/* Bottom */

.footer-bottom{
    position:relative;
    z-index:10;
    padding:28px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom p{
    color:#8f8f8f;
    font-size:14px;
}

/* Responsive */

@media(max-width:1100px){

    .footer-top{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .footer-section{
        padding-top:90px;
    }

    .footer-top{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}
/* ========================================= */
/* FIX NAVBAR ANCHOR SCROLL */
/* ========================================= */

section{
    scroll-margin-top:120px;
}
/* ========================================= */
/* SHORT FLEET SECTION */
/* ========================================= */

.fleet-section{
    padding:100px 0;
    background:#050505;
}

/* Heading */

.fleet-heading{
    text-align:center;
    margin-bottom:60px;
}

.fleet-heading span{
    color:#22d3ee;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.fleet-heading h2{
    font-size:52px;
    font-weight:900;
    margin:18px 0;
    color:#fff;
}

.fleet-heading p{
    color:#bdbdbd;
    font-size:18px;
}

/* Grid */

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* Card */

.fleet-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    overflow:hidden;
    transition:0.35s ease;
}

.fleet-card:hover{
    transform:translateY(-8px);
    border-color:rgba(6,182,212,0.25);
    box-shadow:0 0 35px rgba(6,182,212,0.12);
}

/* Image */

.fleet-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

/* Content */

.fleet-content{
    padding:28px;
}

.fleet-content h3{
    font-size:28px;
    font-weight:800;
    margin-bottom:14px;
}

.fleet-content p{
    color:#c4c4c4;
    line-height:1.8;
}

/* Responsive */

@media(max-width:980px){

    .fleet-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .fleet-section{
        padding:80px 0;
    }

    .fleet-heading h2{
        font-size:36px;
    }

    .fleet-heading p{
        font-size:16px;
    }

}