@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #1a4f8b;
    /* Deep Blue from logo */
    --secondary-color: #00a0e3;
    /* Lighter Blue from logo water */
    --accent-color: #f4d03f;
    /* Gold/Yellow from stars/text */
    --text-color: #333333;
    --light-text: #ffffff;
    --background-light: #f8f9fa;
    --background-dark: #121212;
    --transition: all 0.3s ease;
    --font-main: "Poppins", sans-serif;
    --font-heading: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body.mobile-menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    /* box-shadow: 0 4px 15px rgba(26, 79, 139, 0.4); */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 79, 139, 0.6);
}

.btn-outline {
    border: 2px solid var(--light-text);
    color: var(--light-text);
    background: transparent;
}

.btn-outline:hover {
    background: var(--light-text);
    color: var(--primary-color);
}

.section-padding {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--background-light);
}

/* Header */
header.site-header {
    background: rgba(255, 255, 255, 1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-top {
    background-color: #001f3f;
    /* Dark Navy from mockup */
    padding: 10px 0;
    font-size: 0.85rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-wrapper {
    display: flex;
    justify-content: flex-end;
    /* Align items to the right as per mockup */
    align-items: center;
}

.header-top-left {
    display: flex;
    gap: 30px;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-item i {
    color: #00bcd4;
    /* Cyan icons from mockup */
}



header .container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

/* Pill Container */
.navbar-pill {
    display: contents;
    /* Remove pill container styling to flatten layout */
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 110px;
    /* Increased size */
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    white-space: nowrap;
}

.nav-links.desktop-menu {
    display: flex;
    gap: 30px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .nav-links.desktop-menu {
        gap: 20px;
    }

    .logo img {
        height: 80px;
    }
}

header nav {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 2px 0px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 10px 0;
    font-family: var(--font-heading);
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.has-dropdown a i {
    font-size: 0.8rem;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.has-dropdown:hover a i {
    transform: rotate(180deg);
}

/* Dropdown Menu Styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 12px 25px;
    display: block;
    color: #333;
    font-size: 0.95rem;
    text-transform: none;
    /* natural case as in image */
    font-weight: 500;
    letter-spacing: 0;
    transition: all 0.2s ease;
    font-family: var(--font-main);
}

.dropdown-menu li a::after {
    display: none;
    /* Remove underline from dropdown links */
}

.dropdown-menu li a:hover {
    background-color: #f8faff;
    color: var(--secondary-color);
    padding-left: 30px;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-socials-desktop {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-socials-mobile {
    display: none;
    align-items: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .header-socials-desktop {
        display: none;
    }
}

.social-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    transition: transform 0.3s;
}

.social-circle:hover {
    transform: translateY(-3px);
}

.social-circle.fb {
    background-color: #3b5998;
}

.social-circle.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-circle.wa {
    background-color: #25d366;
}

.btn-navy {
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    /* Bright Blue Gradient */
    color: #fff;
    border-radius: 5px;
    /* Softer rect */
    padding: 12px 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-navy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.6);
    background: linear-gradient(135deg, #0072FF, #00C6FF);
    color: #fff;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    margin-left: 15px;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

body.mobile-menu-open .hamburger {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hamburger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.hamburger i {
    font-size: 1.3rem;
}

/* Mobile Menu Drawer */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1002;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header img {
    height: 40px;
}

.close-menu {
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-menu:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-nav-links li {
    margin-bottom: 8px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-nav-links a:hover {
    background: #f0f7ff;
    color: var(--secondary-color);
}

.mobile-menu-footer {
    padding: 20px;
    margin-top: auto;
    margin-bottom: 50px;
}

.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    height: 90vh;
    /* Use hero-car-new.png for a better car visual */
    background: linear-gradient(to right, rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.6)), url('../images/hero-car-new.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center align items */
    text-align: center;
    /* Center text */
    color: var(--light-text);
    margin-top: 0;
    padding-top: 160px;
}

.hero .container {
    padding: 0 20px;
}

.hero-content {
    /* max-width: 900px; */
    /* Increased width for centered layout */
    margin: 0 auto;
    /* Center the content block */
}

.hero-content h1 {
    /* font-family: 'Oswald', sans-serif; */
    /* Strong, condensed font */
    font-size: 3.5rem;
    /* Very large */
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.hero-content h1 span {
    color: var(--secondary-color);
    /* Highlight specific words if I wrap them, or just let it be white */
    display: inline-block;
    /* Keep on same line if space permits, or block if needed. Inline-block is safer for center. */
    /* Stack spacing/emphasis */
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    /* Center buttons */
}

.hero-buttons .btn {
    padding: 15px 40px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-primary {
    /* Ensure it pops against the dark bg */
    background: var(--secondary-color);
    color: #fff;
    /* box-shadow: 0 10px 30px rgba(0, 160, 227, 0.4); */
}

.btn-primary:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    background: #fff;
    color: #001f3f;
}

/* Revamped Trust Stats Banner */
.trust-stats-banner {
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -60px;
    /* Overlaps hero for a modern look */
}

@media (max-width: 991px) {
    .trust-stats-banner {
        margin-top: 0;
        padding: 50px 0;
        background: #fff;
    }
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #173f65;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    position: relative;
    background-image: url(../images/logo.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 27%;
    background-blend-mode: multiply;
    padding: 42px 20px !important;
    border-radius: 20px !important;
}

.stat-card {
    padding: 0 40px;
    border-right: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 8%));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 1.8rem;
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 160, 227, 0.1);
}

.stat-card:hover .stat-icon-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    transform: rotateY(180deg);
    box-shadow: 0 10px 20px rgba(0, 160, 227, 0.3);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3895ff, var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
    color: #fff;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    /* text-transform: uppercase; */
    letter-spacing: 0.8px;
}

@media (max-width: 1200px) {
    .stats-grid-premium {
        padding: 40px 30px;
    }

    .stat-card {
        padding: 0 20px;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .stats-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 0;
        box-shadow: none;
        padding: 20px 0;
        border-radius: 0;
        border: none;
    }

    .stat-card:nth-child(2) {
        border-right: none;
    }

    .stat-card:nth-child(1),
    .stat-card:nth-child(2) {
        border-bottom: 2px solid #f8f9fa;
        padding-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .stats-grid-premium {
        grid-template-columns: 1fr 49%;
        padding: 0;
        background-size: 101%;
    }

    .stat-card {
        border-right: none;
        /* border-bottom: 2px solid #f8f9fa; */
        padding-bottom: 40px;
        padding-top: 40px;
        padding: 0;
        width: 93%;
    }

    .stat-card:nth-child(1) {
        padding-top: 0;
    }

    .stat-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Features/Services */
.services {
    background-color: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    transform: translate3d(0, 0, 0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Why Choose Us / Stats */
.stats {
    background: var(--primary-color);
    color: var(--light-text);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Booking/Contact Banner */
.cta-banner {
    background: linear-gradient(45deg, #111, #222);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/logo.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--light-text);
    margin-bottom: 20px;
}

/* Main Footer Redesign */
.main-footer {
    background-color: #001529;
    /* Deep Navy Black */
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.footer-wave .shape-fill {
    fill: var(--background-light);
    /* Matches the section above */
}

.footer-top-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 100px 0 60px;
}

.footer-brand .footer-logo img {
    height: 80px;
    margin-bottom: 25px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
}

.footer-brand p {
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials .social-circle {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-socials .social-circle:hover {
    transform: translateY(-5px) scale(1.1);
}

.footer-links-col h4,
.footer-contact-col h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-links-col h4::after,
.footer-contact-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #00bcd4;
    /* Cyan accent */
}

.footer-links-col ul li {
    margin-bottom: 15px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links-col ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 0.8rem;
    color: #00bcd4;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: #00bcd4;
    padding-left: 5px;
}

.footer-links-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bcd4;
    flex-shrink: 0;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.contact-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom-bar {
    background-color: #000d1a;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-inner p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: #00bcd4;
}

@media (max-width: 992px) {
    .footer-top-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
        margin-bottom: 20px;
        text-align: left;
    }

    .footer-brand .footer-logo,
    .footer-socials {
        justify-content: start;
    }

    .footer-brand p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links-col {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer-top-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-links-col h4::after,
    .footer-contact-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-col ul li a {
        justify-content: start;
    }

    .contact-list li {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .desktop-menu {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header-actions .header-btn,
    .header-socials-desktop {
        display: none !important;
    }

    .header-socials-mobile {
        display: flex !important;
    }

    header.site-header {
        height: auto;
        min-height: 80px;
    }

    header nav {
        display: flex !important;
        justify-content: space-between !important;
        padding: 15px 0;
        width: 100%;
        gap: 0;
    }

    .logo img {
        height: 60px;
    }

    .header-actions {
        display: flex !important;
        gap: 0;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    /* Fallback/Default if media query fails, though main style overwrites this */
}

/* Fixed package scaling on mobile */
.package-card.featured {
    transform: scale(1);
}

/* --- Redesigned Homepage Sections --- */

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.about-image-wrapper .main-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: block;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: var(--secondary-color);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.1;
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: 0;
    background: #001f3f;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 31, 63, 0.4);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--secondary-color);
}

.experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
}

.about-content .sub-title {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #001f3f;
    position: relative;
    padding-bottom: 20px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.about-points {
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-points li {
    font-weight: 600;
    color: #444;
}

.about-points li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.booking-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.phone-link span {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

.phone-link a {
    font-size: 1.2rem;
    font-weight: 800;
    color: #001f3f;
}

/* Refined Light Service Stats Section */
.service-stats-refined {
    background-color: #fcfdfe;
    overflow: hidden;
}

.refined-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stats-visual-side {
    position: relative;
    padding-right: 40px;
}

.main-visual-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.main-visual-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.main-visual-wrapper:hover img {
    transform: scale(1.05);
}

.visual-accent-box {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    opacity: 0.1;
    border-radius: 30px;
    z-index: 1;
}

.floating-exp-card {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-bottom: 5px solid var(--secondary-color);
    z-index: 3;
}

.exp-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-info-side .section-title-left h2 {
    color: var(--primary-color);
    font-size: 40px;
    margin-bottom: 20px;
}

.stats-info-side .section-title-left p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.quality-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.pillar-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 160, 227, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pillar-item:hover .pillar-icon {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-5px);
}

.pillar-content h4 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.pillar-content p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

.stats-trust-strip {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid #efefef;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.trust-item i {
    color: #10b981;
    /* Green success color */
}

@media (max-width: 1200px) {
    .refined-stats-grid {
        gap: 40px;
    }

    .main-visual-wrapper img {
        height: 500px;
    }
}

@media (max-width: 991px) {
    .refined-stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-visual-side {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .floating-exp-card {
        right: 20px;
    }
}

@media (max-width: 576px) {
    .quality-pillars-grid {
        grid-template-columns: 1fr;
    }

    .stats-info-side .section-title-left h2 {
        font-size: 2rem;
    }

    .main-visual-wrapper img {
        height: 350px;
    }
}

/* Features Grid Cards */
.features-section {
    padding: 50px 0;
    background: #f4f6f9;
}

.features-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(0, 160, 227, 0.1);
    /* Light secondary color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background: var(--secondary-color);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper i {
    color: #fff;
}

.feature-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #001f3f;
}

.feature-card p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mobile Responsive Adjustments */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        order: -1;
        /* Image on top on mobile */
    }

    .stats-split-wrapper {
        flex-direction: column;
    }

    .stats-image-side,
    .stats-content-side {
        width: 100%;
    }

    .stats-image-side {
        min-height: 400px;
    }

    .stats-content-side {
        padding: 80px 40px;
    }

    .section-title-left h2 {
        font-size: 2.2rem;
    }

    .stats-cta {
        flex-direction: column;
        gap: 25px;
    }
}


.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Services Included Grid */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.included-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.included-item .icon-circle {
    background: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.included-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.included-item p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Working Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step h3 {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.step p {
    position: relative;
    z-index: 1;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    padding-bottom: 30px;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-tag {
    background: var(--accent-color);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 0;
}

.package-header {
    background: #f8f9fa;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.package-header .price {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.package-features {
    padding: 30px 20px;
    text-align: left;
}

.package-features li {
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
}

.package-features li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.package-features li.disabled {
    color: #ccc;
    text-decoration: line-through;
}

.package-features li.disabled i {
    color: #ccc;
}

.price-note {
    font-size: 0.85rem;
    color: #999;
}

.btn-outline-dark {
    border: 2px solid #333;
    color: #333;
    padding: 10px 25px;
    border-radius: 50px;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: #333;
    color: #fff;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #f9f9f9;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-card .stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info strong {
    display: block;
    color: var(--primary-color);
}

.client-info span {
    font-size: 0.85rem;
    color: #888;
}

/* FAQ Redesign */
.faq-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    align-items: start;
    /* Prevents parallel cards from stretching */
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: fit-content;
    /* Ensure card only takes needed space */
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: #e0e0e0;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #fff;
    position: relative;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    color: #001f3f;
    flex-grow: 1;
    line-height: 1.4;
}

.faq-question .chevron-icon {
    font-size: 0.9rem;
    color: #888;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: max-content !important;
    padding-bottom: 45px;
    /* Added more space below the content */
    opacity: 1;
}

.faq-item.active .chevron-icon {
    transform: rotate(90deg);
}

@media (max-width: 992px) {
    .faq-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* --- Modern Services Section (Step 5 Design) --- */
.services-modern {
    padding: 50px 0;
    background-color: #fff;
}

.services-modern .section-title h2 {
    color: #001f3f;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.services-modern .section-title p {
    color: #444;
    font-size: 1.1rem;
    max-width: 850px;
    line-height: 1.6;
    margin-bottom: 60px;
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.modern-card {
    border-radius: 12px;
    overflow: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #333;
    background-color: transparent;
    border: 1px solid #00a3e4 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.modern-card.card-cyan {
    /* border-color: #007191; */
}

.modern-card.card-red {
    border-color: #ff0000;
}

.modern-card.card-dark {
    border-color: #333;
}

.modern-card .card-img-wrapper {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.modern-card .card-img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.modern-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: #001f3f;
    font-weight: 500;
}

.modern-card p {
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #666;
    padding: 0 10px;
    flex-grow: 1;
}

.modern-card .read-more-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #00a3e4 !important;
    color: #00a3e4 !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.modern-card.card-cyan .read-more-btn {
    border-color: #007191;
    color: #007191;
}

.modern-card.card-red .read-more-btn {
    border-color: #ff0000;
    color: #ff0000;
}

.modern-card.card-cyan .read-more-btn:hover {
    background: #00a3e4 !important;
    color: #fff !important;
}

.modern-card.card-red .read-more-btn:hover {
    background: #ff0000;
    color: #fff;
}

.modern-card.card-dark .read-more-btn:hover {
    background: #333;
    color: #fff;
}

.modern-card .read-more-btn:hover {
    background: #001f3f;
    color: #fff;
    background: #00a3e4 !important;
    color: #fff !important;
}

/* Services Included Subsection */
.services-included-heading {
    text-align: center;
    font-size: 2.2rem;
    color: #001f3f;
    margin: 60px 0 40px;
    font-family: var(--font-heading);
    font-weight: 800;
}

.included-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* .modern-card.small-card {
    padding: 20px;
} */

.modern-card.small-card .card-img-wrapper img {
    height: 180px;
}

.modern-card.small-card h3 {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .services-modern .section-title h2 {
        font-size: 2.2rem;
    }

    .services-included-heading {
        font-size: 1.8rem;
    }

    .modern-card h3 {
        font-size: 1.4rem;
    }
}

/* --- Premium Packages Section --- */
.packages-premium {
    background-color: #f8f9fa;
}

.packages-premium .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.premium-package-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.premium-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.premium-package-header {
    padding: 40px 25px;
    text-align: center;
    color: #fff;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.premium-package-header.cyan {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
}

.premium-package-header.dark-cyan {
    background: linear-gradient(135deg, #007c91 0%, #004d61 100%);
}

.premium-package-header.sky-blue {
    background: linear-gradient(135deg, #02aab0 0%, #00cdac 100%);
}

.premium-package-header h3 {
    font-size: 1.3rem;
    /* Small font size */
    margin-bottom: 6px;
    font-weight: 600;
    /* text-transform: uppercase; */
}

.premium-package-header .duration {
    font-size: 0.75rem;
    /* Small font size */
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 12px;
    border-radius: 20px;
}

.premium-package-header .price-box {
    margin-bottom: 8px;
}

.premium-package-header .currency {
    font-size: 0.9rem;
    /* Small font size */
    font-weight: 700;
    vertical-align: top;
    line-height: 1.8;
}

.premium-package-header .amount {
    font-size: 3rem;
    /* Small font size */
    font-weight: 700;
    line-height: 1;
}

.premium-package-header .suv-note {
    font-size: 0.75rem;
    /* Small font size */
    font-weight: 700;
}

.premium-package-header .discount-note {
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-package-body {
    flex-grow: 1;
    padding: 10px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    border-bottom: 1px solid #f8f9fa;
}

.feature-header {
    padding: 15px 25px;
    /* Reduced padding */
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.feature-header:hover {
    background-color: #fcfcfc;
}

.feature-header .icon {
    width: 20px;
    /* Smaller icon */
    height: 20px;
    font-size: 0.7rem;
    /* Smaller font size */
    color: #00bcd4;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1.5px solid #e0f7fa;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-item.active .feature-header .icon {
    background: #00bcd4;
    color: #fff;
    border-color: #00bcd4;
}

.feature-header .title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.feature-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 25px 0 57px;
    /* Adjusted icon width gap */
    font-size: 0.85rem;
    /* Small font size */
    color: #666;
    line-height: 1.5;
    background-color: #fff;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease-out, padding 0.4s ease;
}

.feature-item.active .feature-content {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 20px;
    padding-top: 5px;
}

.premium-package-footer {
    padding: 25px 25px 35px;
    text-align: center;
}

.btn-book-premium {
    width: 100%;
    padding: 14px;
    /* Slightly more compact */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    display: block;
    font-size: 0.8rem;
    /* Small font size */
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background: #00508b;
    color: #fff;
}

.cyan .btn-book-premium {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: #fff;
}

.dark-cyan .btn-book-premium {
    background: linear-gradient(135deg, #007c91 0%, #004d61 100%);
    color: #fff;
}

.sky-blue .btn-book-premium {
    background: linear-gradient(135deg, #02aab0 0%, #00cdac 100%);
    color: #fff;
}

.btn-book-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border-radius: 18px;
    /* Rounded square like the image */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float-in 0.8s ease-out;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.5);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- Service Page Specific Styles --- */

/* Service Hero */
.service-hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-top: 160px;
}

.interior-hero {
    background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.7)), url('../images/internal-car-clenaing.jpg') no-repeat center center/cover;
}

.polishing-hero {
    background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.7)), url('../images/body-polishing.jpg') no-repeat center center/cover;
}

.ceramic-hero {
    background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.7)), url('../images/ceramic-coating-2.jpg') no-repeat center center/cover;
}

.about-hero {
    background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.7)), url('../images/about-car.jpg') no-repeat center center/cover;
}

.gallery-hero {
    background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.7)), url('../images/internal-car-clenaing.jpg') no-repeat center center/cover;
}

.packages-hero {
    background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.7)), url('../images/car-detailing.jpg') no-repeat center center/cover;
}

.contact-hero {
    background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.7)), url('../images/car-engine-cleaning.jpg') no-repeat center center/cover;
}

.addons-hero {
    background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.7)), url('../images/service-premium-wash.png') no-repeat center center/cover;
}

.legal-hero {
    background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.7)), url('../images/car-engine-cleaning.jpg') no-repeat center center/cover;
}

.section-padding-bottom {
    padding-bottom: 80px;
}

.service-hero-content {
    max-width: 800px;
    width: 100%;
}

.centered-hero .service-hero-content {
    margin: 0 auto;
    text-align: center;
}

.centered-hero .hero-actions {
    justify-content: center;
    margin-top: 30px;
}

/* Breadcrumb Styling */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #00bcd4;
}

.breadcrumb i {
    font-size: 0.8rem;
    color: #00bcd4;
}

.breadcrumb span {
    color: #fff;
    font-weight: 400;
    opacity: 0.8;
}

.service-hero-content .badge {
    display: inline-block;
    background: rgba(0, 188, 212, 0.2);
    color: #00bcd4;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 188, 212, 0.3);
}

.service-hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.service-hero-content h1 span {
    color: #00bcd4;
}

.service-hero-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.service-hero .hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-contact i {
    font-size: 2rem;
    color: #00bcd4;
}

.hero-contact span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-contact strong {
    display: block;
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
}

/* Service Detail Section */
.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.details-text .sub-title {
    color: #00bcd4;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.details-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #001f3f;
    line-height: 1.25;
}

.benefits-checklist {
    margin-top: 40px;
}

.check-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.check-item i {
    color: #00bcd4;
    font-size: 1.5rem;
    margin-top: 3px;
}

.check-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #001f3f;
}

.check-item p {
    font-size: 0.95rem;
    color: #666;
}

.image-stack {
    position: relative;
}

.image-stack .main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #00bcd4;
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 188, 212, 0.4);
}

.floating-card .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.floating-card .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

/* Process Grid Modern */
.process-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-card-modern {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.process-card-modern:hover {
    transform: translateY(-10px);
    border-color: #00bcd4;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.process-card-modern .step-num {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0, 188, 212, 0.08);
}

.process-card-modern .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.process-card-modern h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Service CTA */
.service-cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #001f3f 0%, #001529 100%);
    padding: 60px 80px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -50%;
    width: 300px;
    height: 300px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .service-hero-content h1 {
        font-size: 3rem;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        text-align: center;
    }

    .service-hero .hero-actions {
        flex-direction: column;
        gap: 20px;
    }

    .details-text h2 {
        font-size: 2rem;
    }

    .service-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* --- Two-Column Service Detail Layout --- */
.service-page-wrapper {
    padding: 80px 0;
    background: #fff;
    padding-bottom: 0;
}

.service-layout-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
}

/* Sidebar Widgets */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

/* Quote Form Widget */
.quote-form-header {
    background: #60b9f1;
    /* Light blue from image */
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}



.form-group-sidebar {
    margin-bottom: 20px;
}

.form-group-sidebar label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group-sidebar input,
.form-group-sidebar textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    font-size: 0.9rem;
    font-family: var(--font-main);
}

.btn-get-quote {
    width: 100%;
    background: #004a80;
    /* Darker blue from image */
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

/* Service List Widget */
.service-list-widget-box {
    padding: 25px;
}

.service-list-widget-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #001f3f;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 15px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.sidebar-links a i {
    font-size: 0.7rem;
    color: #00bcd4;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    color: #00bcd4;
}

/* Help Widget */
.help-widget {
    background: linear-gradient(rgba(0, 31, 63, 0.9), rgba(0, 31, 63, 0.9)), url('../images/service-banner.jpg');
    background-size: cover;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.help-widget h3 {
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.help-item .icon-box {
    width: 45px;
    height: 45px;
    background: #5dade2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.help-item .text h4 {
    font-size: 0.85rem;
    opacity: 0.8;
}

.help-item .text p {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Main Content Area */
.content-area-main {
    color: #444;
}

.main-service-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 350px;
    object-fit: cover;
}

.content-area-main h2 {
    color: #3e7fb1;
    /* Brand Blue from image */
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.25;
}

.content-area-main h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 30px 0 15px;
    font-weight: 700;
}

.content-area-main p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.content-area-main ul,
.content-area-main ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.content-area-main li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.feature-split-section {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.feature-split-section img {
    flex: 1;
    max-width: 400px;
    border-radius: 10px;
}

.feature-split-list {
    flex: 1;
    list-style: none;
    padding: 0 !important;
}

.feature-split-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.feature-split-list li i {
    color: #5dade2;
    font-size: 0.9rem;
}

/* Bottom CTA Strip */
.appointment-strip {
    background: #0b1a2a;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    color: #fff;
}

.strip-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.strip-icon {
    width: 60px;
    height: 60px;
    background: rgba(93, 173, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strip-icon i {
    font-size: 1.8rem;
    color: #5dade2;
}

.strip-text h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: #fff;
}

.strip-text p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.btn-strip-cta {
    background: #5dade2;
    color: #fff;
    padding: 12px 11px;
    border-radius: 6px;
    font-weight: 600;
    transition: filter 0.3s;
}

.btn-strip-cta:hover {
    filter: brightness(1.1);
}

@media (max-width: 1200px) {
    .service-layout-grid {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 992px) {


    .service-sidebar {
        order: 2;
    }

    .content-area-main {
        order: 1;
    }

    .feature-split-section {
        flex-direction: column;
    }
}

/* --- About Page Styles --- */
.service-hero.about-hero {
    background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)), url('../images/car-detailing.jpg') no-repeat center center/cover;
}

.mission-vision {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mv-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mv-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: rgba(0, 160, 227, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.mv-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.bg-dark-navy {
    background-color: #001f3f;
    color: #fff;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-box .label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* --- Contact Page Styles --- */
.contact-wrapper-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    display: flex;
    gap: 15px;
    align-items: center;
    background: #f8faff;
    padding: 20px;
    border-radius: 10px;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.form-container-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-container-card h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-hours {
    margin-top: 40px;
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.contact-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Gallery Page Styles --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    /* flex-wrap: wrap; */
    overflow-x: auto;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #eee;
    background: #fff;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.gallery-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item .item-inner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 79, 139, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay-content h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.overlay-content span {
    color: var(--secondary-color);
    font-weight: 500;
}

.view-large {
    display: block;
    margin-top: 20px;
    color: #fff;
    font-size: 1.5rem;
}

.gallery-cta {
    margin-top: 60px;
    text-align: center;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
}

.gallery-cta h3 {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-wrapper-main {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* --- Packages Page Specific Styles --- */
.badge-popular,
.badge-recom,
.badge-extra {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ff9800;
    color: #fff;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.badge-recom {
    background: #e91e63;
}

.badge-extra {
    background: #4caf50;
}

.featured-pkg {
    transform: scale(1.05);
    z-index: 5;
    border: 2px solid var(--secondary-color) !important;
}

@media (max-width: 992px) {
    .featured-pkg {
        transform: scale(1);
    }
}

.package-usp {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.usp-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.usp-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #fff;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.usp-text h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.bg-light {
    background-color: #f8faff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.faq-item-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.faq-item-box h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.faq-item-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Layout */
.service-layout-grid {
    display: grid;
    grid-template-columns: 1fr 682px;
    gap: 40px;
    align-items: start;
}


.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: #001f3f;
    text-align: left !important;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #00bcd4;
}

/* Service List Widget */
.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    color: #333;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
}

.sidebar-links a i {
    margin-right: 10px;
    color: #00bcd4;
    transition: margin-left 0.3s;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: #00bcd4;
    color: #fff;
}

.sidebar-links a:hover i,
.sidebar-links a.active i {
    color: #fff;
    margin-left: 5px;
}

/* Quote Form */
.quote-form-header {
    background: #001f3f;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 12px 12px 0 0;
    margin: -30px -30px 20px -30px;
}

.form-group-sidebar {
    margin-bottom: 15px;
}

.form-group-sidebar label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #666;
}

.form-group-sidebar input,
.form-group-sidebar textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #f9f9f9;
}

.form-group-sidebar input:focus,
.form-group-sidebar textarea:focus {
    outline: none;
    border-color: #00bcd4;
    background: #fff;
}

.btn-get-quote {
    width: 100%;
    background: #00bcd4;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-get-quote:hover {
    background: #008ba3;
}

/* Help Widget */
.help-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.help-item:last-child {
    margin-bottom: 0;
}

.help-item .icon-box {
    width: 45px;
    height: 45px;
    background: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.help-item .text h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
}

.help-item .text p {
    margin: 0;
    font-weight: 600;
    color: #333;
}

/* Two Column Grid for Main Content */
.addons-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .addons-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* Premium Add-on Grid Styling */
.premium-service-grid {
    display: flex;
    flex-direction: column;
    gap: 47px;
    /* Large spacing for premium feel */
    margin: 60px 0;
}

.premium-service-card {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    width: 100%;
}

.premium-service-card.card-alt {
    flex-direction: row-reverse;
}

.card-image-wrap {
    flex: 0 0 55%;
    height: 366px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.card-num-back {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
}

.card-content-box {
    flex: 0 0 55%;
    background: #fff;
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    margin-left: -10%;
    /* Overlap */
    transition: all 0.4s ease;
}

.card-alt .card-content-box {
    margin-left: 0;
    margin-right: -10%;
    /* Overlap for alt card */
}

.premium-service-card:hover .card-content-box {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.premium-service-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-tag {
    display: inline-block;
    background: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.card-content-box h3 {
    font-size: 30px;
    font-weight: 600;
    color: #0b1a2a;
    margin-bottom: 5px;
    line-height: 1.2;
    margin-top: 20px;
}

.card-content-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-discover i {
    transition: transform 0.3s ease;
}

.btn-discover:hover {
    color: #0b1a2a;
}

.btn-discover:hover i {
    transform: translateX(10px);
}

@media (max-width: 992px) {

    .premium-service-card,
    .premium-service-card.card-alt {
        flex-direction: column;
        gap: 0;
    }

    .addon-service-image {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }

    .addon-service-content {
        padding: 20px;
    }

    .addon-service-content h3 {
        font-size: 1.25rem;
    }
}

/* Work Hours Box Styling */
.work-hours-box {
    background: #fff;
    border: 2px solid #00bcd4;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.work-hours-header {
    margin-bottom: 25px;
}

.hours-label {
    color: #00bcd4;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-hours-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #001f3f;
    margin: 10px 0 0 0;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-row:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
    color: #001f3f;
    font-size: 1rem;
}

.time-range {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .work-hours-box {
        padding: 20px;
    }

    .work-hours-header h2 {
        font-size: 1.5rem;
    }

    .hours-row {
        padding: 12px 0;
    }

    .day-name,
    .time-range {
        font-size: 0.9rem;
    }
}

/* Work Hours Box Styling */
.work-hours-box {
    background: #fff;
    border: 2px solid #00bcd4;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
}

.work-hours-header {
    margin-bottom: 25px;
}

.hours-label {
    color: #00bcd4;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-hours-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #001f3f;
    margin: 10px 0 0 0;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-row:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
    color: #001f3f;
    font-size: 1rem;
}

.time-range {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .work-hours-box {
        padding: 20px;
    }

    .work-hours-header h2 {
        font-size: 1.5rem;
    }

    .hours-row {
        padding: 12px 0;
    }

    .day-name,
    .time-range {
        font-size: 0.9rem;
    }
}

/* Appointment Booking Section */
.appointment-booking-section {
    background: #f8f9fa;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.booking-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.appointment-form .form-group {
    margin-bottom: 20px;
}

.appointment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #001f3f;
    font-size: 0.95rem;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #00bcd4;
}

.btn-large {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

/* Booking Info Sidebar */
.booking-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 10px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-list i {
    color: #00bcd4;
    font-size: 1.1rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.quick-contact-item:last-child {
    border-bottom: none;
}

.quick-contact-item i {
    font-size: 1.5rem;
    color: #00bcd4;
    width: 40px;
    text-align: center;
}

.quick-contact-item h4 {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: #666;
}

.quick-contact-item a {
    color: #001f3f;
    text-decoration: none;
    font-weight: 600;
}

.quick-contact-item a:hover {
    color: #00bcd4;
}

.hours-box p {
    margin: 10px 0;
    color: #333;
}

.hours-box .note {
    font-size: 0.9rem;
    color: #00bcd4;
    font-style: italic;
}

.legal-content h3 {
    margin: 20px 0px;
}

/* Universal Responsiveness Enhancements */

@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }

    .hero,
    .service-hero {
        padding-top: 90px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .stats-grid-compact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        padding: 0;
        margin-bottom: 30px;
    }

    .modern-grid,
    .included-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* Appointment Page Responsive */
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .appointment-form .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-container {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 15px 9px;
        font-size: 11px;
    }

    .hero {
        height: 70vh;
    }

    .trust-stats-banner {
        padding: 40px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .appointment-strip {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .strip-info {
        flex-direction: column;
        gap: 15px;
    }

    .strip-text h3 {
        font-size: 1.4rem;
    }

    .btn-strip-cta {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .feature-split-section {
        flex-direction: column;
        text-align: left;
    }

    .feature-split-section img {
        max-width: 100%;
    }

    .gallery-grid-main {
        grid-template-columns: 1fr;
    }

    .gallery-item .item-inner {
        height: 250px;
    }

    .form-container-card {
        padding: 25px;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-contact-col {
        text-align: left;
    }

    .contact-text {
        text-align: left;
    }

    .service-page-wrapper {
        padding: 00px 0;
    }

    .content-area-main h2 {
        color: #3e7fb1;
        font-size: 1.8rem;
    }

    .feature-split-list {
        width: 100%;
        margin-bottom: 0 !important;
    }

    .addons-intro {
        padding: 0;
    }

    .gallery-filters {
        justify-content: start;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .modern-grid,
    .included-grid-modern {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .about-content h2 {
        font-size: 1.4rem;
    }

    .about-points {
        grid-template-columns: auto;
    }

    .stats-content-side {
        padding: 50px 20px;
    }

    .section-title-left h2 {
        font-size: 1.8rem;
    }

    .certified-badge {
        padding: 20px;
        gap: 12px;
    }

    .certified-badge i {
        font-size: 2rem;
    }

    .certified-badge span {
        font-size: 0.85rem;
    }

    #about .booking-cta {
        display: block;
    }

    #about .btn {
        padding: 0;
    }

    .modern-card h3 {
        font-size: 1rem;
    }

    .stats-grid-compact {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 5px;
    }

    .stat-number {
        font-size: 3rem !important;
        font-weight: 600 !important;
    }

    .stat-label {
        font-size: 20px !important;
        font-weight: 500 !important;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-actions .btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .header-socials-desktop {
        display: none;
    }

}

/* Fix for overlapping ribbons in packages on mobile */
@media (max-width: 480px) {

    .badge-popular,
    .badge-recom,
    .badge-extra {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        width: 100%;
        text-align: center;
        display: block;
        padding: 5px;
        margin-bottom: 10px;
        border-radius: 4px;
        font-size: 0.8rem;
    }

    .premium-package-header {
        min-height: auto;
        padding: 30px 20px;
    }

    .premium-package-header .amount {
        font-size: 2.2rem;
    }
}

/* Premium Content Area Styles */
.service-main-image-wrapper {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 20px;
}

.image-overlay-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.service-content-header {
    margin-bottom: 30px;
}

.service-subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.service-lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 25px;
}

.work-process-wrap {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.work-process-wrap h3 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.step-card-modern {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f5f5f5;
    transition: var(--transition);
    position: relative;
}

.step-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(0, 160, 227, 0.1);
    line-height: 1;
}

.step-icon-inner {
    width: 60px;
    height: 60px;
    background: rgba(0, 160, 227, 0.1);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.step-card-modern h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-card-modern p {
    font-size: 0.95rem;
    margin: 0;
    color: #666;
}

.benefits-section-modern {
    margin-bottom: 50px;
}

.benefits-grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card-simple {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.benefit-card-simple:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.benefit-card-simple i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.benefit-card-simple:hover i {
    color: #fff;
}

.benefit-card-simple span {
    font-weight: 600;
    font-size: 0.9rem;
}

.satisfaction-summary-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #001f3f 100%);
    padding: 50px;
    border-radius: 20px;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.satisfaction-summary-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
}

.summary-text h2 {
    color: #fff !important;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.summary-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.feature-split-section-modern {
    display: flex;
    gap: 40px;
    /* align-items: center; */
    margin-bottom: 30px;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.split-content {
    flex: 1;
}

.feature-checklist-modern {
    list-style: none;
    padding: 0;
}

.feature-checklist-modern li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    font-size: 1.05rem;
}

.feature-checklist-modern li i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.appointment-strip-premium {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.strip-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.strip-icon-box {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.strip-info-text {
    flex-grow: 1;
}

.strip-info-text h3 {
    margin: 0 0 5px;
    color: var(--primary-color);
    font-size: 20px;
}

.strip-info-text p {
    margin: 0;
    color: #666;
}

.btn-strip-premium {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 16px;
    border-radius: 50px;
    font-weight: 700;
    /* display: flex; */
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 14px;
    width: max-content;
}

.btn-strip-premium:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}
@media (max-width: 1200px) {
    .header-top {
        display: none;
    }
}

@media (max-width: 1366px) {
    .hero {
        height: 107vh;
    }
    .section-title p {
    color: #666;
    max-width: 857px;}
    .section-title h2 {
    font-size: 35px;}
}
@media (max-width: 991px) {
    .service-layout-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .service-sidebar {
        order: 2;
        position: static;
        /* Put sidebar below content on mobile if desired, or keep as is */
        width: 100%;
    }

    .satisfaction-summary-card {
        padding: 26px;
    }

    .summary-text h2 {
        font-size: 30px;
    }

    .card-content-box {
        margin-left: 0;
        margin-right: 0 !important;
        margin-top: -10%;
    }
}
@media (max-width: 768px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-split-section-modern {
        flex-direction: column;
    }

    .strip-flex {
        flex-direction: column;
        text-align: center;
    }

    .btn-strip-premium {
        width: 100%;
        justify-content: center;
    }
}
