*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:Poppins,sans-serif;}

/* TOPBAR */
.topbar{
position:absolute;top:0;width:100%;
background:rgba(0,0,0,0.7);color:#fff;z-index:1000;
}
.topbar-flex{
width:90%;margin:auto;display:flex;justify-content:space-between;padding:10px 0;
}
.social-icons a{color:#fff;margin-left:10px}

/* NAVBAR */
.navbar-wrapper{
position:absolute;top:60px;width:100%;z-index:999;
}
.navbar{
width:90%;margin:auto;background:#f4b400;
border-radius:80px;padding:18px 40px;
display:flex;justify-content:space-between;align-items:center;
}
.logo img {
    height: 70px;   /* increase from small size */
    width: auto;
    display: block;
}

/* MENU */
.menu{display:flex;list-style:none}
.menu li{
margin:0 20px;position:relative;cursor:pointer;
text-transform:uppercase;font-size:14px;
}


/* DROPDOWN */
.dropdown-menu{
position:absolute;top:50px;background:#fff;
width:220px;border-radius:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
opacity:0;visibility:hidden;transform:translateY(10px);
transition:.3s;
}
.dropdown:hover .dropdown-menu{
opacity:1;visibility:visible;transform:translateY(0);
}
.dropdown-menu li{
padding:12px 20px;border-bottom:1px solid #eee;
}
.dropdown-menu li:last-child{border:none}

/* PHONE */
.phone-box{
background:#000;color:#fff;padding:12px 20px;
border-radius:50px;display:flex;align-items:center;gap:10px;
}
.phone-box i{
background:#f4b400;color:#000;padding:10px;border-radius:50%;
}

/* RIGHT */
.right-side{display:flex;align-items:center;gap:15px}

/* MENU BUTTON */
.menu-toggle{
display:none;width:40px;height:40px;background:#000;color:#fff;
border-radius:50%;align-items:center;justify-content:center;
cursor:pointer;
}

/* HERO */
.hero-slider{height:100vh;position:relative}
.slide{
position:absolute;width:100%;height:100%;
background-size:cover;background-position:center;
opacity:0;transition:.6s;
}
.slide.active{opacity:1}
.overlay{
position:absolute;width:100%;height:100%;
background:rgba(0,0,0,0.5);
}
.content{
position:absolute;top:55%;left:10%;transform:translateY(-50%);
color:#fff;
}
.content h1{font-size:60px}
.arrow{
position:absolute;top:50%;color:#fff;font-size:40px;cursor:pointer;
}
.arrow.left{left:20px}
.arrow.right{right:20px}

/* MOBILE MENU */
.mobile-menu{
position:fixed;top:0;left:-100%;width:280px;height:100%;
background:#111;color:#fff;z-index:2000;
transition:.4s;padding:20px;
}
.mobile-menu.active{left:0}
.mobile-header{
display:flex;justify-content:space-between;margin-bottom:20px;
}
.mobile-header img{height:40px}
.mobile-menu ul{list-style:none}
.mobile-menu li{
padding:15px 0;border-bottom:1px solid rgba(255,255,255,0.1);
}

/* RESPONSIVE */
@media(max-width:768px){
.menu{display:none}
.phone-box{display:none}
.menu-toggle{display:flex}
}
/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 20px;
}

/* CONTENT */
.section-tag {
    color: #f4b400;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.about-content h2 {
    font-size: 40px;
    margin: 15px 0;
}

.about-content p {
    color: #666;
    line-height: 1.6;
}

/* FEATURES */
.features {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.feature-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    transition: 0.3s;
}

.feature-box i {
    font-size: 24px;
    color: #f4b400;
    margin-bottom: 10px;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 25px;
    background: #f4b400;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: #000;
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .features {
        flex-direction: column;
    }

    .about-content h2 {
        font-size: 28px;
    }
}
/* ================= SERVICES SECTION ================= */
.services-section {
    padding: 100px 0;
    background: #f8f9fb;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header span {
    color: #f4b400;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.section-header h2 {
    font-size: 38px;
    margin-top: 10px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card i {
    font-size: 30px;
    color: #f4b400;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.service-card p {
    color: #666;
    font-size: 14px;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }
}
/* ================= BOOKING SECTION ================= */
.booking-section {
    padding: 100px 0;
    background: #0A2540;
}

.booking-box {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    max-width: 900px;
    margin: auto;
}

/* HEADER */
.booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-header span {
    color: #f4b400;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.booking-header h2 {
    font-size: 34px;
    margin-top: 10px;
}

/* FORM */
.booking-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full {
    width: 100%;
}

/* INPUTS */
.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.booking-form textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */
.booking-btn {
    width: 100%;
    padding: 15px;
    background: #f4b400;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.booking-btn:hover {
    background: #000;
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .booking-box {
        padding: 25px;
    }

    .form-row {
        flex-direction: column;
    }

    .booking-header h2 {
        font-size: 26px;
    }
}
/* ================= TESTIMONIALS ================= */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: 40px auto;
}

/* CARD */
.testimonial {
    display: none;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* STARS */
.stars {
    color: #f4b400;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial h4 {
    margin-top: 10px;
}

.testimonial span {
    font-size: 13px;
    color: #888;
}

/* DOTS */
.testimonial-dots {
    margin-top: 20px;
}

.testimonial-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.testimonial-dots span.active {
    background: #f4b400;
}
/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

/* ================= CALL BUTTON ================= */
.call-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #000;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* HOVER EFFECT */
.whatsapp-btn:hover {
    background: #1ebe5d;
}

.call-float:hover {
    background: #f4b400;
    color: #000;
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
/* ================= FOOTER ================= */
/* ================= GLOBAL CONTAINER FIX ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= FOOTER ================= */
.footer {
    background: #0A2540;
    color: #fff;
    padding: 80px 0 0;
}

/* GRID FIX */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* COLUMN FIX */
.footer-col {
    min-width: 0;
}

/* LOGO */
.footer-logo {
    height: 100px;
    margin-bottom: 35px;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* HEADINGS */
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f4b400;
    padding-left: 6px;
}

/* CONTACT */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info li i {
    color: #f4b400;
}

/* SOCIAL ICONS FIX */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #f4b400;
    color: #000;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 13px;
    color: #94a3b8;
}

/* ================= RESPONSIVE FIX ================= */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }
}
.footer-col {
    transition: 0.3s;
}

.footer-col:hover {
    transform: translateY(-5px);
}
/* INNER HERO */
.inner-hero {
    background: url('../images/slider1.jpg') center/cover;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

/* ABOUT PAGE */
.about-page {
    padding: 80px 0;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
}

.about-features {
    margin-top: 20px;
}

.about-features li {
    margin-bottom: 10px;
}

/* WHY US */
.why-us {
    background: #f8f9fb;
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.why-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

/* STATS */
.stats {
    background: #000;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

/* CTA */
.cta {
    background: #f4b400;
    padding: 60px 0;
    text-align: center;
}

.cta .btn {
    background: #000;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
}
/* ================= ABOUT HERO ================= */
.about-hero {
    position: relative;
    height: 400px;
    background: url('../images/about-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* CONTENT */
.about-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.breadcrumb {
    margin-top: 10px;
    font-size: 14px;
    color: #ddd;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .about-hero {
        height: 280px;
    }

    .about-hero-content h1 {
        font-size: 28px;
    }
}
background: url('https://images.unsplash.com/photo-1502877338535-766e1452684a') center/cover;
/* ================= ABOUT HERO ================= */
.about-hero {
    position: relative;
    height: 420px;

    background: url('../images/about-hero.jpg') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* TEXT */
.about-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
}

.about-hero-content p {
    margin-top: 10px;
    color: #ddd;
}

.navbar {
    background: #f4b400;
    border-radius: 60px;
    padding: 12px 30px;   /* reduced from 20px */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
}

.logo img {
    height: 140px;
}
.about-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    animation: fadeUp 1s ease;
}

.about-hero-content p {
    margin-top: 10px;
    color: #ddd;
    animation: fadeUp 1.4s ease;
}
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.about-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.about-hero {
    animation: zoomBg 10s ease-in-out infinite alternate;
}

@keyframes zoomBg {
    from { background-size: 100%; }
    to { background-size: 110%; }
}
/* WHY SECTION */
.why-section {
    padding: 80px 20px;
    background: #f8f9fb;
    text-align: center;
}

.why-section .sub-title {
    color: #f4b400;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.why-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.why-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: left;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.why-card .icon {
    font-size: 28px;
    margin-bottom: 15px;
}

/* TITLE */
.why-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* TEXT */
.why-card p {
    color: #666;
    line-height: 1.6;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* GOLD BORDER ANIMATION */
.why-card::before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: #f4b400;
    top: 0;
    left: 0;
    transition: 0.4s;
}

.why-card:hover::before {
    width: 100%;
}
/* CTA SECTION */
.cta-section {
    position: relative;
    background: url('assets/images/cta-bg.jpg') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* DARK OVERLAY */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

/* CONTENT */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
    animation: fadeUp 1s ease forwards;
}

/* TITLE */
.cta-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

/* TEXT */
.cta-content p {
    color: #ccc;
    margin-bottom: 30px;
}

/* BUTTON GROUP */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* BUTTON */
.cta-btn {
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* PRIMARY BUTTON */
.cta-btn.primary {
    background: #f4b400;
    color: #000;
    box-shadow: 0 0 20px rgba(244,180,0,0.4);
}

/* GLOW ANIMATION */
.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(244,180,0,0.8);
}

/* SECONDARY BUTTON */
.cta-btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.cta-btn.secondary:hover {
    background: #fff;
    color: #000;
}

/* FLOATING SHAPE ANIMATION */
.cta-section::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(244,180,0,0.15);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation: float 6s infinite ease-in-out;
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(244,180,0,0.1);
    border-radius: 50%;
    bottom: 10%;
    right: 10%;
    animation: float 8s infinite ease-in-out;
}

/* KEYFRAMES */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.menu li a {
    color: #000;
    text-decoration: none;
}

/* keep black on hover */
.menu li a:hover {
    color: #000;
}

/* active link also black */
.menu li.active a {
    color: #000;
}
/* HERO */
.inner-hero {
    position: relative;
    height: 300px;
    background: url('assets/images/cta-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.inner-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.inner-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* CONTACT */
.contact-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* LEFT */
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #555;
}

.contact-details p {
    font-weight: 600;
}

/* FORM */
.contact-form-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
    margin-bottom: 20px;
}

/* FORM GRID */
.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-row input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

/* BUTTON */
button {
    background: #f4b400;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

button:hover {
    background: #000;
    color: #fff;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}
.map-section {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* PREMIUM CONTACT */
.premium-contact {
    padding: 100px 20px;
    background: linear-gradient(to right, #f8f9fb 50%, #ffffff 50%);
    position: relative;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TAG */
.tag {
    color: #f4b400;
    font-weight: 600;
    letter-spacing: 1px;
}

/* HEADING */
.contact-info h2 {
    font-size: 38px;
    margin: 15px 0;
}

.contact-info h2 span {
    color: #f4b400;
}

/* TEXT */
.contact-info p {
    color: #555;
    margin-bottom: 25px;
}

/* CONTACT CARDS */
.contact-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.contact-card span {
    font-size: 22px;
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* FORM CARD */
.premium-form {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateY(30px);
    transition: 0.5s;
}

.premium-form:hover {
    transform: translateY(0);
}

/* INPUTS */
.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.form-row input,
textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.form-row input:focus,
textarea:focus {
    border-color: #f4b400;
    outline: none;
}

/* BUTTON */
button {
    background: #f4b400;
    color: #000;
    padding: 14px 30px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #000;
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .premium-contact {
        background: #f8f9fb;
    }
}
/* FLEET SECTION */
.fleet-section {
    padding: 100px 20px;
    background: #f8f9fb;
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: #f4b400;
    font-weight: 600;
}

.section-title h2 {
    font-size: 36px;
}

/* GRID */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.fleet-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.fleet-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.fleet-img {
    position: relative;
    overflow: hidden;
}

.fleet-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s;
}

/* ZOOM EFFECT */
.fleet-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.fleet-card:hover .fleet-overlay {
    opacity: 1;
}

/* BUTTON */
.fleet-overlay a {
    background: #f4b400;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

.fleet-overlay a:hover {
    background: #fff;
}

/* CONTENT */
.fleet-content {
    padding: 20px;
}

.fleet-content h3 {
    margin-bottom: 10px;
}

.fleet-content p {
    color: #666;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}
.fleet-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    line-height: 1.7;
}
/* SECTION */
.fleet-slider-section {
  background: #000;
  padding: 100px 20px;
  color: #fff;
}

/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title span {
  color: #f4b400;
}

.section-title h2 {
  font-size: 36px;
}

/* SLIDER */
.fleet-slider {
  position: relative;
  overflow: hidden;
}

.fleet-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* ITEM */
.fleet-item {
  min-width: 25%;
  padding: 10px;
  text-align: center;
}

.fleet-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.4s;
}

/* HOVER */
.fleet-item:hover img {
  transform: scale(1.05);
}

.fleet-item h3 {
  margin-top: 15px;
}

/* ARROWS */
.fleet-prev,
.fleet-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f4b400;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.fleet-prev { left: -20px; }
.fleet-next { right: -20px; }

/* DOTS */
.fleet-dots {
  text-align: center;
  margin-top: 20px;
}

.fleet-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
}

.fleet-dots .active {
  background: #f4b400;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .fleet-item { min-width: 100%; }
}
/* SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px 0;
  background: #fff;
}

/* CARD */
.service-card-white {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* IMAGE */
.service-card-white img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.service-content {
  padding: 20px;
}

.service-content h3 {
  margin-bottom: 10px;
}

.service-content p {
  color: #666;
  margin-bottom: 10px;
}

/* LIST */
.service-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.service-content ul li {
  font-size: 14px;
  margin-bottom: 5px;
}

/* BUTTON */
.btn-read {
  display: inline-block;
  background: #f4b400;
  padding: 8px 18px;
  border-radius: 25px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-read:hover {
  background: #000;
  color: #fff;
}

/* HOVER EFFECT */
.service-card-white:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media(max-width:768px){
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu li {
  margin: 0;
  padding: 0;
}
/* DROPDOWN BASE */
.dropdown {
  position: relative;
}

/* HIDDEN STATE */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  min-width: 220px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);

  transition: all 0.35s ease;
  z-index: 999;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* MENU ITEMS */
.dropdown-menu li {
  padding: 10px 20px;
  transition: 0.3s;
}

.dropdown-menu li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  display: block;
}

/* HOVER EFFECT */
.dropdown-menu li:hover {
  background: #f4b400;
}

.dropdown-menu li:hover a {
  color: #000;
}
.dropdown-menu li {
  opacity: 0;
  transform: translateY(10px);
}

/* Stagger animation */
.dropdown:hover .dropdown-menu li {
  opacity: 1;
  transform: translateY(0);
}

.dropdown:hover .dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
.dropdown:hover .dropdown-menu li:nth-child(2) { transition-delay: 0.1s; }
.dropdown:hover .dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
.dropdown:hover .dropdown-menu li:nth-child(4) { transition-delay: 0.2s; }
.dropdown:hover .dropdown-menu li:nth-child(5) { transition-delay: 0.25s; }
.dropdown:hover .dropdown-menu li:nth-child(6) { transition-delay: 0.3s; }

.dropdown a i {
  margin-left: 5px;
  transition: 0.3s;
}

/* rotate arrow */
.dropdown:hover a i {
  transform: rotate(180deg);
}
/* Parent li */
.menu > li {
  position: relative;
}

/* DOT */
.menu > li.active::after {
  content: '';
  position: absolute;
  bottom: -6px; /* adjust position */
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #000; /* or #f4b400 */
  border-radius: 50%;
}
/* CLEAN WHITE SECTION */
.airport-content {
  background: #fff;
  padding: 80px 0;
}

/* REMOVE DARK EFFECT */
.airport-content * {
  opacity: 1 !important;
}

/* TEXT */
.airport-content h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.airport-content h2 {
  margin-top: 20px;
  font-size: 28px;
}

.airport-content p {
  color: #555;
  line-height: 1.7;
}

/* LIST */
.area-list {
  margin-top: 15px;
  columns: 2;
}

.area-list li {
  margin-bottom: 8px;
}
.airport-content {
    padding: 80px 0;
    background: #fff;
}

.airport-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.area-box {
    margin: 40px 0;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.area-grid ul {
    list-style: none;
    padding: 0;
}

.area-grid li {
    padding: 6px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 24px;
    color: #f5b400;
    margin-bottom: 10px;
}

.cta-box {
    margin-top: 50px;
    text-align: center;
    padding: 40px;
    background: #f5b400;
    border-radius: 10px;
}

.cta-box h3 {
    color: #000;
}

.btn-primary {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}
/* FLOAT BOOK NOW BUTTON */
.book-now-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #f4b400;
  color: #000;
  padding: 12px 10px;
  border-radius: 8px 0 0 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
  transition: 0.3s;
}

/* ICON */
.book-now-float i {
  font-size: 16px;
}

/* TEXT HIDDEN INITIALLY */
.book-now-float span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.3s;
}

/* HOVER EFFECT */
.book-now-float:hover {
  padding: 12px 20px;
  background: #000;
  color: #fff;
}

/* SHOW TEXT ON HOVER */
.book-now-float:hover span {
  max-width: 120px;
}

/* MOBILE */
@media(max-width:768px){
  .book-now-float {
    top: auto;
    bottom: 90px;
    border-radius: 30px;
    right: 20px;
    padding: 12px 15px;
  }

  .book-now-float span {
    max-width: 100%;
  }
}
/* BACK TO TOP - FINAL WORKING */
#backToTop {
  position: fixed;
  bottom: 90px; /* above WhatsApp */
  left: 20px;

  width: 50px;
  height: 50px;
  border-radius: 50%;

  background: #f4b400;
  color: #000;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;

  z-index: 9999999; /* VERY HIGH */
  
  opacity: 1; /* FORCE SHOW FOR TEST */
}
html {
  scroll-behavior: smooth;
}
/* BLOG SECTION */
.blog-section {
  padding: 80px 0;
  background: #fff;
}

.blog-card {
  margin-bottom: 50px;
  padding: 30px;
  border-radius: 10px;
  background: #f9f9f9;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-card h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.blog-card p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.blog-card ul {
  margin: 15px 0;
  padding-left: 20px;
}
/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 30px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.4s;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 25px;
}

.blog-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* TEXT */
.full-text {
  display: none;
}

/* BUTTON */
.read-more-btn {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  background: #f4b400;
  color: #000;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #000;
  color: #fff;
}
.full-blog-section {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  transition: 0.6s ease;
}

.full-blog-section.active {
  bottom: 0;
}

.full-blog-content {
  max-width: 900px;
  margin: 80px auto;
  padding: 20px;
}

.full-blog-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.close-blog {
  margin-top: 20px;
  padding: 10px 20px;
  background: #f4b400;
  border: none;
  cursor: pointer;
  border-radius: 30px;
}
/* BLOG GRID */
.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
padding:80px 0;
}

.blog-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.blog-card:hover{
transform:translateY(-10px);
}

.blog-card img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-content{
padding:20px;
}

.read-btn{
background:#f4b400;
padding:10px 20px;
border:none;
border-radius:30px;
cursor:pointer;
}

/* FULL BLOG */
.full-blog{
position:fixed;
bottom:-100%;
left:0;
width:100%;
height:100%;
background:#fff;
overflow:auto;
transition:0.5s;
z-index:9999;
padding:40px;
}

.full-blog.active{
bottom:0;
}

.close-btn{
background:#000;
color:#fff;
padding:10px 20px;
border:none;
margin-top:20px;
}
/*/* =========================
   FINAL CLEAN MENU SYSTEM
   ========================= */

/* DESKTOP MENU (SAFE DEFAULT) */
.menu{
display:flex;
list-style:none;
align-items:center;
gap:25px;
}

/* HAMBURGER HIDDEN ON DESKTOP */
.menu-toggle{
display:none;
}

/* ================= MOBILE ================= */
@media (max-width:768px){

/* NAVBAR SAFE */
.navbar{
position:relative;
}

/* HAMBURGER BUTTON */
.menu-toggle{
display:flex;
position:absolute;
right:20px;
top:50%;
transform:translateY(-50%);
background:#000;
color:#fff;
width:45px;
height:45px;
border-radius:50%;
align-items:center;
justify-content:center;
z-index:10001;
cursor:pointer;
}

/* MOBILE DRAWER */
.menu{
position:fixed;
top:0;
right:-100%;
width:80%;
height:100%;
background:#fff;
flex-direction:column;
padding-top:80px;
transition:0.4s ease;
z-index:9999;
}

/* ACTIVE */
.menu.active{
right:0;
}

/* ITEMS */
.menu li{
margin:15px 0;
text-align:center;
}

/* LOCK BODY SCROLL */
body.menu-open{
overflow:hidden;
}

}
.card {
border: none;
transition: 0.3s;
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.d-flex > div:hover {
transform: translateY(-3px);
transition: 0.3s;
cursor: pointer;
}
.teams-row {
display: flex;
gap: 30px;
flex-wrap: wrap; /* makes it responsive */
align-items: center;
}

.team-item {
display: flex;
align-items: center;
gap: 12px;
background: #f8f9fa;
padding: 12px 16px;
border-radius: 8px;
min-width: 250px;
}

.team-item img {
width: 50px;
height: 50px;
object-fit: cover;
border-radius: 6px;
}

.team-item p {
margin: 0;
font-size: 14px;
color: #666;
}
.events-row {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.event-item {
display: flex;
align-items: center;
gap: 15px;
background: #f8f9fa;
padding: 12px 15px;
border-radius: 10px;
min-width: 320px;
justify-content: space-between;
transition: 0.3s;
}

.event-item:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.event-item img {
width: 55px;
height: 55px;
object-fit: cover;
border-radius: 8px;
}

.event-info {
flex: 1;
}

.event-info p {
margin: 0;
font-size: 13px;
color: #777;
}