:root {
    --primary-color: #0056b3;
    --secondary-color: #00a8e8;
    --accent-color: #28a745;
    --dark-bg: #0b0c10;
    --light-bg: #f8f9fa;
    --text-color: #333;
    --card-hover-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.top-bar i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.social-icons a {
    margin-left: 15px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Modern Logo Text Styling */
.navbar-brand span {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    /* 32px */
    /* 24px */
    letter-spacing: 0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, #0a2540 0%, #0a2540 40%, #0077FF 40%, #0077FF 60%, #0a2540 60%, #0a2540 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Hover effect for logo text */
.navbar-brand:hover span {
    letter-spacing: 1px;
    transform: translateX(2px);
}

.nav-link {
    font-weight: 600;
    color: #333 !important;
    margin: 0 10px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(0, 86, 179, 0.05);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(0, 86, 179, 0.1);
    font-weight: 600;
}

.btn-book {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
    transition: transform 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-book:hover {
    transform: translateY(-2px);
    color: white;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-success {
    background-color: #25d366;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/hero_bg_new.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.feature-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 700;
    color: var(--primary-color);
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

.service-img-wrapper {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.service-img-wrapper img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
}

.service-body {
    padding: 25px;
    text-align: center;
}

.service-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background: white;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
    padding: 10px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    width: 100%;
    text-align: center;
}

/* Why Choose Us */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0056b3, #00a8e8);
    color: white;
}

.feature-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 30px;
}

.feature-box i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: #aaa;
    padding: 60px 0 20px;
}

footer h4 {
    color: white;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #aaa;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

.disclaimer {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    text-align: center;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-call {
    background-color: #0056b3;
}

/* Booking Page */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Add a subtle animated background shape */
.booking-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.booking-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
}

.booking-card h2 {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.form-control,
.form-select {
    border: 2px solid #eef0f5;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
    background-color: #fff;
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon-wrapper i {
    font-size: 3.5rem;
    color: #25d366;
}

#successMessage {
    animation: fadeIn 0.5s ease-out;
}

.client-id-box {
    background: #f0f8ff;
    border: 1px dashed #0056b3;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    color: #0056b3;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.2rem;
        /* Reduced from 3.5rem */
    }

    .hero-section p {
        font-size: 1rem;
        /* Reduced from 1.2rem */
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .service-body h3 {
        font-size: 1.3rem;
    }

    .top-bar .contact-info span {
        font-size: 0.8rem;
    }

    /* Responsive navbar brand text */
    .navbar-brand span {
        font-size: 1.3rem;
        /* Smaller on mobile */
        letter-spacing: 0.3px;
    }

    .navbar-brand img {
        height: 90px !important;
    }
}