/* Base Styles and Variables */
:root {
    --primary-blue: #0E77C2;
    /* Darker blue button color */
    --light-blue: #5ACAEF;
    /* Light cyan button color */
    --accent-blue: #2E9CEB;
    /* Medium blue for highlights */
    --bg-light-blue: #F3FBFE;
    /* Very light blue background */
    --bg-blue-gradient: linear-gradient(135deg, #4dc6eb 0%, #0e77c2 100%);
    --bg-dark: #2B2B2B;
    /* Footer background */
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #ffffff;
    --border-color: #E0E0E0;

    --font-main: 'Poppins', sans-serif;

    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

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

ul {
    list-style: none;
}

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

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

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--text-dark);
    /* based on screenshot it has dark text sometimes depending on button but nav has dark text */
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-blue);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    border: 2px solid var(--primary-blue);
    transition: var(--transition);
}

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

/* HEADER SECTION */
.header {
    background-color: #ffffff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.header--hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    margin: -20px 0;
    transition: transform 0.3s ease;
}

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

.white-logo img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

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

.nav-link {
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-blue);
}

.nav-link i {
    font-size: 10px;
    margin-left: 5px;
}

.nav-link:hover {
    color: var(--light-blue);
}

/* DROPDOWN MENU */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    min-width: 650px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(20px);
    pointer-events: auto;
}

/* Invisible block to bridge the gap so hover doesn't break */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* MEGA MENU SPECIFICS */
.dropdown-menu.mega-menu {
    min-width: 920px;
    left: 50%;
    transform: translateX(-40%) translateY(15px);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.has-dropdown:hover .dropdown-menu.mega-menu {
    transform: translateX(-40%) translateY(20px);
}

.mega-menu-sidebar {
    width: 230px;
    background-color: #f8fafc;
    padding: 15px 0;
    border-right: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.mega-menu-tab {
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.mega-menu-tab i {
    font-size: 16px;
    color: #9eaab5;
    width: 22px;
    text-align: center;
    transition: all 0.2s ease;
}

.mega-menu-tab:hover,
.mega-menu-tab.active {
    background-color: #eef5fa;
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
}

.mega-menu-tab:hover i,
.mega-menu-tab.active i {
    color: var(--primary-blue);
}

.mega-menu-content {
    flex: 1;
    padding: 20px 28px;
    background-color: #ffffff;
    min-height: 260px;
}

.mega-menu-panel {
    display: none;
    animation: megaFade 0.2s ease;
}

.mega-menu-panel.active {
    display: block;
}

@keyframes megaFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mega-menu-grid {
    columns: 2;
    column-gap: 30px;
}

.mega-menu-item {
    display: block;
    break-inside: avoid;
    font-size: 13.5px;
    font-weight: 400;
    color: #4a5568;
    padding: 9px 12px;
    border-radius: 6px;
    transition: all 0.18s ease;
    line-height: 1.35;
    position: relative;
    padding-left: 24px;
}

.mega-menu-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #cbd5e0;
    transition: all 0.18s ease;
}

.mega-menu-item:hover {
    color: var(--primary-blue);
    background-color: #f0f7fb;
}

.mega-menu-item:hover::before {
    background-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.3);
}

.dropdown-right.mega-menu-cta {
    width: 210px;
    flex-shrink: 0;
}

.dropdown-right {
    width: 320px;
    background: linear-gradient(to bottom, rgba(59, 171, 217, 0.85), rgba(30, 114, 181, 0.9)), url('assets/images/service_commercial_blue_1771809577021.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.dropdown-cta-icon {
    font-size: 40px;
    opacity: 1;
    margin-bottom: 5px;
}

.dropdown-right h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
}

.dropdown-booking-btn {
    border: 2px solid white;
    color: white;
    padding: 8px 28px;
    font-size: 14px;
    border-radius: 30px;
    font-weight: 500;
    background: transparent;
}

.dropdown-booking-btn:hover {
    background-color: white;
    color: var(--primary-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions .btn-primary {
    color: #111;
    /* Matching the black font on light cyan button in header */
    font-weight: 600;
}

/* HERO SECTION */
.hero {
    background: var(--bg-blue-gradient);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    color: var(--text-light);
    padding-right: 40px;
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* The hero buttons are different in screenshot 1: 
   Phone btn is transparent blue bg, book online is blue border? 
   Wait, screenshot 1 shows phone btn is blue (#136fbd roughly) and book online is matching blue.
   Actually: phone btn is #156dbd, book online is same but lighter text? 
   Both are solid blue in the hero, let's make them primary blue */
.hero .btn-primary {
    background-color: var(--primary-blue);
    color: var(--text-light);
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
}

.hero .btn-primary:hover {
    background-color: #0b5f9e;
    /* slightly darker */
}

/* In screenshot phone icon has it's own space */
.hero .btn-phone i {
    margin-right: 8px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 90%;
    z-index: 2;
    position: relative;
    /* Optional mask to give it organic shape if wanted, for now just image */
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* clock removed */

.bg-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    /* subtle white shapes over gradient */
    border-radius: 50%;
}

.shape-1 {
    width: 800px;
    height: 800px;
    top: -200px;
    right: -200px;
    z-index: 1;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: 10%;
    z-index: 1;
}

/* FEATURES SECTION */
.features {
    padding: 80px 0;
    background-color: #ffffff;
}

.features-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.feature-card {
    flex: 1;
    background-color: var(--bg-light-blue);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.feature-icon-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.feature-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    /* based on screenshot cartoon style */
}

/* If green icon */
.feature-icon-circle.green {
    background-color: #4CAF50;
    color: white;
}

.feature-icon {
    font-size: 40px;
}

.feature-title {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-text {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.feature-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-blue);
    margin-top: auto;
}

.feature-divider .line {
    width: 25px;
    height: 2px;
    background-color: var(--primary-blue);
}

.feature-divider i {
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* TYPOGRAPHY COMPONENTS */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-tag {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.section-tag.justify-center {
    justify-content: center;
}

.section-tag i {
    color: var(--light-blue);
}

.section-text {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.mt-4 {
    margin-top: 20px;
}

/* ABOUT INTRO SECTION */
.about-intro {
    padding: 100px 0 60px;
    background-color: #ffffff;
}

.about-intro-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-intro-lead {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 15px;
    font-weight: 400;
}

.about-intro-lead strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.about-intro-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-value-card {
    background: var(--bg-light-blue);
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(14, 119, 194, 0.12);
    border-color: rgba(14, 119, 194, 0.15);
}

.about-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-blue-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: white;
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(14, 119, 194, 0.3);
}

.about-value-icon.green {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    box-shadow: 0 6px 18px rgba(67, 233, 123, 0.3);
}

.about-value-icon.orange {
    background: linear-gradient(135deg, #f7971e, #ffd200);
    box-shadow: 0 6px 18px rgba(247, 151, 30, 0.3);
}

.about-value-icon.purple {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
    box-shadow: 0 6px 18px rgba(161, 140, 209, 0.3);
}

.about-value-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.about-value-card p {
    font-size: 13.5px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* WHY CHOOSE US SECTION */
.why-choose-us {
    padding: 100px 0;
    background-color: #ffffff;
}

.why-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-image-side {
    flex: 1;
    position: relative;
}

.why-image-wrapper {
    position: relative;
    border-radius: 20px 20px 100px 20px;
    overflow: hidden;
    /* Optional blue shape behind */
    background: var(--bg-blue-gradient);
    padding: 5px;
}

.why-image-wrapper img {
    border-radius: 15px 15px 95px 15px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.badge-cleaning {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background-color: var(--primary-blue);
    color: var(--text-light);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.badge-cleaning i {
    font-size: 20px;
    margin-bottom: 5px;
}

.badge-cleaning span {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.badge-cleaning small {
    font-size: 9px;
}

.why-stats {
    display: flex;
    gap: 20px;
    margin-top: -30px;
    /* pull up over image slightly */
    padding-left: 20px;
    position: relative;
    z-index: 4;
}

.stat-box {
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.stat-box i {
    font-size: 30px;
    color: var(--primary-blue);
}

.stat-box div {
    display: flex;
    flex-direction: column;
}

.stat-box strong {
    font-size: 12px;
    color: var(--primary-blue);
    line-height: 1.2;
}

.stat-box span {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-blue);
    line-height: 1.2;
}

.why-content-side {
    flex: 1;
}

.why-divider {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 30px 0;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.why-list li {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-list li i {
    color: var(--primary-blue);
}

/* SERVICES SECTION */
.services {
    padding: 100px 0;
    background-color: var(--bg-light-blue);
}

.services-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.btn-outline-small {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 15px;
    transition: var(--transition);
}

.btn-outline-small:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* SERVICES TABS DESIGN */
.services-tabs-container {
    margin-top: 40px;
}

.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-item {
    padding: 12px 30px;
    background-color: white;
    color: var(--text-medium);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 2px solid transparent;
}

.tab-item:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.tab-item.active {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 8px 20px rgba(14, 119, 194, 0.3);
}

.services-tab-content {
    position: relative;
    min-height: 300px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

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

.service-list-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(14, 119, 194, 0.1);
    border-color: rgba(14, 119, 194, 0.2);
}

.service-list-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light-blue);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-list-card:hover .service-list-icon {
    background-color: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

.service-list-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
    transition: var(--transition);
}

.service-list-card:hover .service-list-info h4 {
    color: var(--primary-blue);
}

.service-list-info p {
    font-size: 13px;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .services-tabs {
        flex-direction: column;
        align-items: stretch;
    }

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

/* REVIEWS SECTION */
.reviews {
    padding: 100px 0;
    background-color: #ffffff;
}

.reviews .section-title {
    margin-bottom: 50px;
}

.reviews-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.reviews-summary {
    flex: 0 0 300px;
}

.reviews-summary .stars i {
    color: #FFC107;
    font-size: 20px;
    margin-right: 2px;
}

.reviews-summary p {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

.reviews-carousel {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.carousel-nav {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-nav:hover {
    color: var(--primary-blue);
}

.review-cards {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

.review-card {
    flex: 1;
    min-width: 0;
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.bg-green {
    background-color: #7CB342;
}

.bg-orange {
    background-color: #F57C00;
}

.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.reviewer small {
    font-size: 11px;
    color: var(--text-medium);
}

.review-stars {
    margin-bottom: 10px;
}

.review-stars i {
    color: #FFC107;
    font-size: 13px;
}

.review-stars .verify {
    color: var(--primary-blue);
    margin-left: 5px;
}

.review-text {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* QUOTE CTA SECTION */
.quote-cta {
    padding: 80px 0;
    background-color: var(--bg-light-blue);
}

.quote-cta .section-title {
    font-size: 42px;
}

/* FOOTER SECTION */
.footer {
    background-color: var(--bg-dark);
    color: #eeeeee;
    padding: 80px 0 30px;
    font-size: 13px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.brand-col {
    padding-right: 20px;
}

.white-logo .logo-text {
    color: white;
}

.white-logo .logo-subtext {
    color: var(--light-blue);
}

.footer-text {
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-outline-white {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid white;
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--bg-dark);
}

.footer-heading {
    font-size: 16px;
    color: white;
    font-weight: 500;
    margin-bottom: 25px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaaaaa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links i {
    font-size: 10px;
    color: var(--light-blue);
}

.footer-links a:hover {
    color: var(--light-blue);
}

.footer-contact li {
    color: #aaaaaa;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--light-blue);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-blue);
}

.footer-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-locations a {
    color: #888888;
    font-size: 11px;
    font-weight: 600;
}

.footer-locations a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    color: #666666;
    font-size: 12px;
}

.footer-bottom a {
    text-decoration: underline;
}

/* Shiny credit link */
.credit-link {
    position: relative;
    display: inline-block;
    text-decoration: none !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(120deg,
            #777 0%,
            #777 35%,
            #fff 50%,
            #777 65%,
            #777 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: credit-shine 3s ease-in-out infinite;
    padding-bottom: 3px;
}

/* Shiny tail border that sweeps under the text */
.credit-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg,
            transparent 0%,
            transparent 30%,
            rgba(255, 255, 255, 0.8) 50%,
            transparent 70%,
            transparent 100%);
    background-size: 250% 100%;
    animation: border-shine 3s ease-in-out infinite;
}

.credit-link:hover {
    opacity: 0.85;
}

@keyframes credit-shine {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes border-shine {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* Add some basic responsiveness */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .features-grid,
    .services-grid {
        flex-direction: column;
    }

    .why-container,
    .reviews-content {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   HAMBURGER MENU BUTTON (hidden on desktop)
   ======================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay backdrop */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile accordion chevron */
.mobile-services-toggle {
    display: none;
}

/* ========================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
}

/* ========================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ======================================== */
/* ========================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Header layout */
    .header .container {
        position: relative;
    }

    .header-actions {
        gap: 12px;
    }

    .header-actions .btn-outline {
        display: none;
    }

    .header-actions .btn-primary {
        padding: 8px 18px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Mobile nav — slide in from right smoothly */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: white;
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
        padding: 90px 20px 40px;
    }

    .nav.mobile-open {
        right: 0;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    /* Staggered slide in for links */
    .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav.mobile-open .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav.mobile-open .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav.mobile-open .nav-item:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav.mobile-open .nav-item:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav.mobile-open .nav-item:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 12px;
        font-size: 17px;
        font-weight: 500;
        color: var(--text-dark);
        border-radius: 8px;
        text-decoration: none;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .nav-link i {
        font-size: 14px;
        color: var(--primary-blue);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-link.accordion-open i {
        transform: rotate(180deg);
    }

    .nav-link:hover,
    .nav-link:active {
        background-color: #f4f9ff;
        color: var(--primary-blue);
    }

    /* Hide the old toggle button entirely */
    .mobile-services-toggle {
        display: none !important;
    }

    /* Hide desktop mega-menu dropdown hover behavior & convert to accordion */
    .has-dropdown .dropdown-menu.mega-menu {
        position: static;
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border-radius: 0;
        min-width: 100%;
        background: transparent;
        padding: 0;
        margin: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
    }

    .has-dropdown:hover .dropdown-menu.mega-menu {
        transform: none;
    }

    .has-dropdown .dropdown-menu.mega-menu.mobile-expanded {
        max-height: 2500px;
        opacity: 1;
        visibility: visible;
        margin-top: 5px;
        margin-bottom: 15px;
    }

    /* Mobile mega menu layout inside accordion */
    .mega-menu-sidebar {
        display: none;
    }

    .mega-menu-content {
        flex: 1;
        padding: 0;
        background: #f8fafc;
        border-radius: 12px;
        overflow: hidden;
    }

    .mega-menu-panel {
        display: block !important;
        padding: 0 0 15px 0;
    }

    /* Add category headers to mobile layout since sidebar tabs are hidden */
    .mega-menu-panel::before {
        display: block;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--primary-blue);
        font-weight: 700;
        padding: 15px 24px 8px;
        border-bottom: 2px solid var(--primary-blue);
        margin-bottom: 8px;
        background: #f0f7fc;
    }

    #mega-general::before {
        content: "General Services";
    }

    #mega-carpet::before {
        content: "Fabric & Floor Cleaning";
    }

    #mega-eol::before {
        content: "Moving Services";
    }

    #mega-ndis::before {
        content: "Specialized Cleaning";
    }

    .mega-menu-grid {
        columns: 1;
        padding: 0;
        gap: 0;
    }

    .mega-menu-item {
        padding: 14px 24px;
        font-size: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        color: var(--text-medium);
        display: block;
        transition: all 0.2s ease;
    }

    .mega-menu-item:last-child {
        border-bottom: none;
    }

    .mega-menu-item:hover,
    .mega-menu-item:active {
        background-color: #f0f7fc;
        color: var(--primary-blue);
        padding-left: 28px;
    }

    .dropdown-right.mega-menu-cta {
        display: none;
    }

    /* Hero section mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

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

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        max-width: 280px;
    }

    /* Features grid */
    .features {
        padding: 50px 0;
    }

    .features-grid {
        flex-direction: column;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    /* Section titles */
    .section-title {
        font-size: 26px;
    }

    .quote-cta .section-title {
        font-size: 28px;
    }

    /* About Intro */
    .about-intro {
        padding: 60px 0 40px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .about-intro-lead {
        font-size: 15px;
    }

    .about-intro-text {
        font-size: 14px;
    }

    /* Why Choose Us */
    .why-choose-us {
        padding: 60px 0;
    }

    .why-container {
        flex-direction: column;
        gap: 30px;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .why-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

    /* Redesigned mobile tabs for the Services section */
    .services-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .tab-item {
        text-align: center;
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }

    /* Mobile adjustments for previous code... */
    .services-list-grid {
        grid-template-columns: 1fr;
    }

    /* Reviews */
    .reviews {
        padding: 60px 0;
    }

    .reviews-content {
        flex-direction: column;
        gap: 30px;
    }

    .reviews-summary {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .review-cards {
        flex-direction: column;
    }

    .review-card {
        flex: none;
    }

    /* Quote CTA */
    .quote-cta {
        padding: 50px 0;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brand-col {
        text-align: center;
        padding-right: 0;
    }

    .social-links {
        justify-content: center;
    }

    .footer-locations {
        gap: 8px;
    }
}

/* ========================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

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

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        text-align: center;
    }

    .stat-box {
        padding: 8px 14px;
    }

    .badge-cleaning {
        width: 80px;
        height: 80px;
    }

    .badge-cleaning span {
        font-size: 18px;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.contact-section {
    padding: 80px 0 100px;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-info-panel {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-info-panel h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon-box {
    width: 45px;
    height: 45px;
    background-color: var(--bg-light-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-detail-text p,
.contact-detail-text a {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail-text a:hover {
    color: var(--primary-blue);
}

.contact-socials {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eef2f6;
}

.contact-socials h4 {
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
}

.contact-socials .social-links a {
    background-color: var(--bg-light-blue);
    color: var(--primary-blue);
}

.contact-socials .social-links a:hover {
    background-color: var(--primary-blue);
    color: white;
}

.contact-form-panel {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-panel h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    transition: var(--transition);
    background-color: #fcfdfe;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(14, 119, 194, 0.1);
    background-color: white;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 15px;
}

.file-upload-input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    height: 100%;
}

.file-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--bg-light-blue);
    color: var(--primary-blue);
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    pointer-events: none;
}

.file-upload-text {
    font-size: 13px;
    color: var(--text-medium);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.5;
    cursor: pointer;
}

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

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

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 20px;
    }
}/* GALLERY SECTION */
.gallery {
    padding: 100px 0;
    background-color: #f8fafc;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-filter {
    padding: 8px 24px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(14, 119, 194, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-rows: 250px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item.hide {
    display: none;
}

/* Make some items taller for masonry feel */
.gallery-item:nth-child(3n+1) {
    grid-row: span 2;
}
.gallery-item:nth-child(5n) {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .gallery-item:nth-child(3n+1),
    .gallery-item:nth-child(5n) {
        grid-row: span 1;
    }
    .gallery-grid {
        grid-auto-rows: 200px;
    }
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
