:root {
    --bg-dark: #0b0d0e;
    --card-bg: #1a1d1f;
    --brand-cyan: #00D1FF;
    --text-gray: #999999;
    --placeholder-color: #aaaaaa;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

.text-brand,
.stat-num-gold {
    color: var(--brand-cyan) !important;
}

/* Enhanced Button Hover */
.btn-brand {
    background-color: var(--brand-cyan);
    color: #000;
    font-weight: 700;
    border-radius: 4px;
    padding: 16px 40px;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid var(--brand-cyan);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.btn-brand:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 209, 255, 0.3);
}

/* Navbar */
.navbar {
    padding: 25px 0;
    transition: 0.4s;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(11, 13, 14, 0.98);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    color: #fff !important;
    font-weight: 400;
    margin: 0 15px;
    font-size: 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--brand-cyan) !important;
}

/* Hero Section - 100vh */
.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(11, 13, 14, 0.75), rgba(11, 13, 14, 0.9)),
        url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero-title {
    font-size: calc(2.2rem + 3.2vw);
    line-height: 1.1;
    margin-bottom: 25px;
}

/* Generic Reveal Class */
.reveal {
    opacity: 0;
}

/* Services Cards */
.service-card {
    background: var(--card-bg);
    padding: 45px 40px;
    border-radius: 12px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
}

.service-card:hover {
    border-color: var(--brand-cyan);
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.service-num {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 45px;
    font-weight: 900;
    opacity: 0.08;
    color: var(--brand-cyan);
}

.service-icon {
    color: var(--brand-cyan);
    font-size: 35px;
    margin-bottom: 25px;
    display: block;
}

/* Logo Slider */
.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    padding: 30px 0;
}

.logo-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 30s linear infinite;
}

.logo-item {
    width: 220px;
    margin: 0 45px;
    filter: grayscale(1) invert(1);
    opacity: 0.4;
    transition: 0.4s;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0) invert(0);
    cursor: pointer;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }
}

/* Stats */
.stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--brand-cyan);
    line-height: 1;
}

.stat-label {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Booking Form & Readable Placeholders */
.booking-section {
    background-color: #0e0d0a;
    padding: 130px 0;
    border-top: 1px solid #1a1d1f;
}

.form-dark .form-control {
    background: #161512;
    border: 1px solid #2a2824;
    color: #fff !important;
    padding: 18px 22px;
    border-radius: 4px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.form-dark .form-control::placeholder {
    color: var(--placeholder-color) !important;
    opacity: 1;
}

.form-dark .form-control:focus {
    background: #1a1d1f;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 10px rgba(0, 209, 255, 0.15);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer Strip */
.footer-strip img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: brightness(0.65);
    transition: 0.5s;
}

.footer-strip img:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
    z-index: 1;
    position: relative;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--brand-cyan);
    padding-left: 8px;
}


    /* Specific styling for the Redesigned Partners Section */
    .partner-logo-box {
        width: 110px;
        height: 110px;
        background: #1a1d1f;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        transition: 0.3s ease;
    }
    .partner-logo-box:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .partner-logo-box img {
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: brightness(0) invert(1); /* Makes logos white */
    }

    /* Stat Numbers in Gold/Yellow as per image */
    .stat-num-gold {
        color: #FFB800; /* Gold/Yellow color from image */
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 0;
        line-height: 1;
    }
    .stat-label-small {
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        margin-top: 5px;
    }