:root {
    --primary: #D4AF37;
    /* Metallic Gold */
    --primary-dark: #AA8A2E;
    /* Deep Gold */
    --secondary: #0A1128;
    /* Royal Navy Blue */
    --secondary-light: #1B263B;
    /* Lighter Navy */
    --white: #ffffff;
    --light-bg: #f8fafc;
    --text-dark: #0A1128;
    /* Navy for text */
    --text-muted: #64748b;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 10px 15px -3px rgba(10, 17, 40, 0.1), 0 4px 6px -2px rgba(10, 17, 40, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(10, 17, 40, 0.15), 0 10px 10px -5px rgba(10, 17, 40, 0.04);
    --radius-lg: 16px;
    --radius-md: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, oxygen, ubuntu, cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

h2 {
    background: linear-gradient(135deg, var(--secondary), #1e293b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn-primary {
    background: #D4AF37 !important;
    border: none;
    transition: var(--transition);
    color: #0A1128 !important;
    font-weight: 700;
}

.btn-primary:hover {
    background: #AA8A2E !important;
    transform: translateY(-2px);
}

/* Header & Navigation */
.top-bar {
    background: var(--secondary);
    color: var(--primary);
    padding: 6px 0;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--primary);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--primary) !important;
}

.nav-link {
    font-weight: 700;
    color: var(--text-dark) !important;
    padding: 0.3rem 1.2rem !important;
    font-size: 1.05rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Slider */
.hero-carousel .carousel-item {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: var(--transition);
}

.hero-carousel .overlay-dark::before {
    background: linear-gradient(to right, rgba(10, 17, 40, 0.85), rgba(10, 17, 40, 0.4));
}

.hero-carousel .overlay-light::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.hero-carousel .overlay-royal::before {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.9), rgba(212, 175, 55, 0.3));
}

.hero-carousel .overlay-vignette::before {
    background: radial-gradient(circle, transparent 40%, rgba(10, 17, 40, 0.8) 100%);
}

.hero-carousel .overlay-bottom-dark::before {
    background: linear-gradient(to top, rgba(10, 17, 40, 0.9), transparent 60%);
}

.hero-carousel .overlay-blur::before {
    background: rgba(10, 17, 40, 0.4);
    backdrop-filter: blur(8px);
}

.hero-carousel .overlay-golden-tint::before {
    background: rgba(212, 175, 55, 0.15);
    mix-blend-mode: multiply;
}

.hero-carousel .overlay-none::before,
.hero-carousel .overlay-original::before {
    background: transparent;
}

/* Image Branding Utilities */
.img-fit-cover {
    object-fit: cover !important;
}

.img-fit-contain {
    object-fit: contain !important;
}

.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

.hover-grayscale {
    transition: filter 0.3s ease;
    filter: grayscale(100%);
}

.hover-grayscale:hover {
    filter: grayscale(0%);
}

.img-shadow-premium {
    box-shadow: 0 15px 35px rgba(10, 17, 40, 0.2);
}

.hero-carousel .container {
    position: relative;
    z-index: 2;
}

.hero-carousel .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    z-index: 1050 !important;
}

.hero-carousel h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-carousel p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

/* Counter Section */
.counter-box {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.counter-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.counter-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-img-wrap {
    height: 220px;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Booking Forms */
.booking-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-control,
.form-select {
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.form-control:focus,
.form-select:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
}

/* Professional Footer */
footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem;
    border-top: 4px solid var(--primary);
}

footer h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 991.98px) {
    .hero-carousel h2 {
        font-size: 3rem;
    }

    .hero-carousel p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-carousel .carousel-item {
        height: 60vh;
        min-height: 400px;
    }

    .hero-carousel .carousel-caption {
        text-align: center;
        padding-bottom: 2rem;
    }

    .hero-carousel h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-carousel .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }

    .hero-carousel p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .top-bar {
        display: none !important;
    }

    .counter-box {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }

    .booking-form-card {
        padding: 2rem 1.5rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-collapse {
        background: var(--secondary);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .navbar-nav .nav-link {
        color: var(--white) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 12px 0 !important;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary) !important;
    }

    .navbar-toggler {
        border-color: var(--primary);
        color: var(--primary);
    }
}

/* Bootstrap Overrides */
.bg-primary {
    background: #D4AF37 !important;
    color: #0A1128 !important;
}

.text-primary {
    color: var(--primary) !important;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: #D4AF37 !important;
    color: #0A1128 !important;
}

.badge.bg-primary {
    background: #D4AF37 !important;
    color: #0A1128 !important;
}

.bg-light {
    background-color: #f8fafc !important;
}

.bg-primary-soft {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.15)) !important;
    color: #0A1128 !important;
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom Badge fix */
.badge.bg-primary.text-white {
    color: var(--secondary) !important;
}

/* Icons in Navy sections */
footer i.text-primary,
.top-bar i {
    color: var(--primary) !important;
}