/*
 * Custom Premium Design System - Dcp Service Support
 * Built on top of Bootstrap 5 grid and helpers for seamless responsiveness.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #005F73;
    --primary-rgb: 0, 95, 115;
    --secondary: #0A9396;
    --secondary-rgb: 10, 147, 150;
    --accent: #EE9B00;
    --accent-rgb: 238, 155, 0;
    --accent-hover: #CA6702;
    --dark: #0F172A;
    --dark-rgb: 15, 23, 42;
    --light: #F8FAFC;
    --light-card: #FFFFFF;
    --border: #E2E8F0;
    --text-muted: #64748B;
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

html {
    overflow-x: clip;
}
body {
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary);
}

/* Scrollbar customizations */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* 1. Buttons & CTAs Custom Aesthetics */
.btn {
    white-space: nowrap !important;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, #0a355c 100%);
    color: #ffffff;
    font-family: var(--font-headings);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 95, 115, 0.2);
}
.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(10, 147, 150, 0.3);
}

.btn-accent-custom {
    background: linear-gradient(135deg, var(--accent) 0%, #e65c00 100%);
    color: #ffffff;
    font-family: var(--font-headings);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(238, 155, 0, 0.2);
}
.btn-accent-custom:hover {
    background: linear-gradient(135deg, #ff8533 0%, var(--accent-hover) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(238, 155, 0, 0.35);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-family: var(--font-headings);
    font-weight: 600;
    padding: 0.7rem 1.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #0a355c 100%);
    color: #ffffff;
}

/* 2. Header and Navigation styles */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    z-index: 1000;
}
.navbar-brand-wordmark {
    font-family: var(--font-headings);
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 1.4rem;
    color: var(--primary) !important;
}
.navbar-brand-wordmark span {
    color: var(--accent);
}
.nav-link-custom {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap !important;
}
.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--primary) !important;
    background-color: rgba(0, 95, 115, 0.05);
}

/* Hero Slider Dots Indicators */
.hero-dots-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 100;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 95, 115, 0.2);
}
.hero-dot.active {
    background-color: var(--accent);
    transform: scale(1.1);
    width: 24px;
    border-radius: 50px;
}

/* 3. Hero Section (Dynamic Banners) */
.hero-slider-container {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-color: var(--dark);
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-media-wrapper img, .hero-media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 2;
}
.hero-content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    color: #ffffff;
    z-index: 3;
    padding-bottom: 2rem;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(15, 23, 42, 0.45);
}
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 2.25rem;
    text-shadow: 0 1px 5px rgba(15, 23, 42, 0.3);
}

/* 4. Category Grid Components */
.category-card {
    background-color: var(--light-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    cursor: pointer;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 95, 115, 0.25);
}
.category-icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 95, 115, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}
.category-card:hover .category-icon-box {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}
.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.category-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* 5. Service Listing / Cards */
.service-card {
    background-color: var(--light-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #f1f5f9;
}
.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}
.badge-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: #ffffff;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    z-index: 10;
}
.badge-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(15, 23, 42, 0.75);
    color: #ffffff;
    backdrop-filter: blur(4px);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    z-index: 10;
}
.service-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.service-short-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}
.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.service-price-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}
.service-price-old {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: var(--text-muted);
}
.service-footer-btns {
    display: flex;
    gap: 0.5rem;
}
.service-footer-btns .btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.6rem 0.5rem;
    border-radius: var(--radius-sm);
}

/* 6. Why Choose Us & How it works */
.why-icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(238, 155, 0, 0.08);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.works-step-card {
    position: relative;
    text-align: center;
    padding: 1.5rem;
}
.works-step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 95, 115, 0.2);
}
.works-step-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.works-step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 7. Accordions (FAQs) Styling */
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--dark);
    padding: 1.25rem;
    background-color: var(--light-card);
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(0, 95, 115, 0.04);
    color: var(--primary);
    box-shadow: none;
}
.faq-accordion .accordion-button::after {
    background-size: 1rem;
}
.faq-accordion .accordion-body {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    background-color: var(--light-card);
}

/* 8. Floating Bottom mobile sticky action bars */
.mobile-nav-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--border);
    padding: 0.75rem 1rem;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.05);
}
.mobile-action-bar-inner {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
}
.mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-headings);
    font-weight: 600;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}
.mobile-action-call {
    background-color: var(--primary);
    color: #ffffff !important;
}
.mobile-action-whatsapp {
    background-color: #25D366;
    color: #ffffff !important;
}
.mobile-action-book {
    background-color: var(--accent);
    color: #ffffff !important;
}

/* 9. Multi-step booking form UI */
.booking-wizard-step {
    display: none;
}
.booking-wizard-step.active {
    display: block;
}
.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
}
.wizard-progress::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--border);
    z-index: 1;
}
.wizard-progress-bar {
    position: absolute;
    top: 18px;
    left: 0;
    height: 3px;
    background-color: var(--primary);
    z-index: 2;
    width: 0%;
    transition: width 0.3s ease;
}
.wizard-step-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-card);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    z-index: 3;
    transition: var(--transition);
}
.wizard-step-node.active {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #ffffff;
}
.wizard-step-node.completed {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #ffffff;
}
.wizard-step-label {
    position: absolute;
    top: 48px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    text-align: center;
}
.wizard-step-node.active .wizard-step-label {
    color: var(--primary);
}

/* Form Styling overrides */
.form-control-custom {
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 95, 115, 0.15);
    outline: none;
}
.form-label-custom {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Payment Selector radio grid */
.payment-selector-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.payment-selector-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}
.payment-selector-card:hover {
    border-color: var(--secondary);
}
.payment-selector-card.selected {
    border-color: var(--primary);
    background-color: rgba(0, 95, 115, 0.03);
}

/* 10. Service detail page components */
.detail-feature-list {
    list-style: none;
    padding-left: 0;
}
.detail-feature-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}
.detail-feature-list li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
}
.detail-feature-list.included li::before {
    content: "\f00c";
    color: #10B981;
}
.detail-feature-list.excluded li::before {
    content: "\f00d";
    color: #EF4444;
}
.detail-feature-list.benefits li::before {
    content: "\f058";
    color: var(--secondary);
}

/* Brands served styles */
.brand-logobar-img {
    height: 45px;
    opacity: 0.75;
    transition: var(--transition);
    filter: grayscale(100%);
}
.brand-logobar-img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Popup Overlay custom layout */
.popup-modal-custom .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.popup-media-box {
    max-height: 280px;
    background-color: var(--dark);
    overflow: hidden;
}
.popup-media-box img, .popup-media-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Footer elements */
.footer-custom {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 2rem;
}
.footer-custom h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}
.footer-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}
.footer-social-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: var(--transition);
}
.footer-social-icon:hover {
    background-color: var(--accent);
    color: #ffffff;
    transform: translateY(-3px);
}

/* 11. Media Queries for Mobile app feel & Breakpoints */
@media (max-width: 767.98px) {
    body {
        padding-bottom: 70px; /* Space for mobile sticky bottom action bar */
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-slider-container {
        height: 50vh;
        min-height: 380px;
    }
    
    .mobile-nav-bar {
        display: block;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    .category-icon-box {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    /* Optimize cards scroll on mobile */
    .mobile-horizontal-scroll {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1.25rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .mobile-horizontal-scroll > div {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    .mobile-horizontal-scroll::-webkit-scrollbar {
        display: none; /* Hide scrollbars for app-like clean swipes */
    }
    
    .wizard-progress {
        margin-bottom: 2rem;
    }
    .wizard-step-label {
        display: none; /* Hide text below nodes on small mobile views */
    }
    .wizard-step-node {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

/* Premium Heading Gradient and Hover Transitions */
.h1.font-headings.fw-bold {
    background: linear-gradient(135deg, var(--primary) 0%, #20639B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    width: 100%;
}

/* Fix contrast when headings with gradients are nested inside colored/text-white containers */
.text-white h1, 
.text-white h2, 
.text-white h3, 
.text-white .h1.font-headings.fw-bold, 
.text-white .font-headings {
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}

/* Custom grid col-ecom-5 (Exactly 5 columns on desktop grid) */
@media (min-width: 992px) {
    .col-ecom-5 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        width: 20% !important;
    }
}

/* E-commerce Image-based Category Cards */
.ecom-cat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    height: 100%;
}
.ecom-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 95, 115, 0.15);
    border-color: var(--primary);
}
.ecom-cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.85) 90%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}
.ecom-cat-card:hover .ecom-cat-overlay {
    background: linear-gradient(180deg, rgba(0, 95, 115, 0.1) 20%, rgba(0, 95, 115, 0.75) 85%, rgba(0, 95, 115, 0.9) 100%);
}
.ecom-cat-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}
.ecom-cat-icon-badge {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.ecom-cat-card:hover .ecom-cat-icon-badge {
    background: linear-gradient(135deg, var(--accent) 0%, #e65c00 100%);
    border-color: transparent;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 10px rgba(238, 155, 0, 0.4);
}
.ecom-cat-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: var(--font-headings);
    text-shadow: 0 2px 4px rgba(15, 23, 42, 0.4);
}
.ecom-cat-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.75rem !important;
    padding: 0.4rem 1rem !important;
    width: 100%;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}
.ecom-cat-card:hover .ecom-cat-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Animated Timeline Styles */
.works-timeline-container {
    position: relative;
    width: 75%;
    margin: 2rem auto;
}
.works-timeline-track {
    height: 4px;
    background-color: var(--border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.works-timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
    transition: width 0.1s ease;
}
.works-steps-row {
    position: relative;
    z-index: 2;
}
.works-step-node {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 3px solid var(--border);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.works-step-card:hover .works-step-node {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, #e65c00 100%);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(238, 155, 0, 0.3);
}

/* Why Choose Us points styling */
.why-point-row {
    transition: transform 0.2s ease;
}
.why-point-row:hover {
    transform: translateX(5px);
}

/* Custom Brands Card Grid Styling */
.brand-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 95, 115, 0.08);
}
.brand-logo-img {
    transition: transform 0.3s ease;
}
.brand-card:hover .brand-logo-img {
    transform: scale(1.06);
}

/* Hover scales for all interactive cards */
.service-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 95, 115, 0.1);
}

/* Standardize homepage section padding sizes to match perfectly */
.py-5 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
}

/* Homepage search widget */
.home-search-section {
    position: relative;
    z-index: 10;
    margin-top: 2rem !important;
    margin-bottom: 2.5rem !important;
}
.search-bar-wrapper {
    background: #ffffff;
    border-radius: 50px;
    padding: 0.45rem 0.45rem 0.45rem 1.5rem;
    border: 1px solid var(--border);
    max-width: 680px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
}
.search-input-box {
    display: flex;
    align-items: center;
    width: 100%;
}
.search-icon {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-right: 0.75rem;
}
.search-input {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    font-size: 0.95rem;
    color: var(--dark);
    background: transparent !important;
    width: 100%;
    height: auto !important;
}
.search-submit-btn {
    border-radius: 50px !important;
    padding: 0.7rem 1.75rem !important;
    font-weight: 600;
    font-size: 0.85rem !important;
    white-space: nowrap;
    height: auto !important;
}

/* Premium Brand Grid Styles */
.premium-brand-card {
    background: var(--light-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
}
.premium-brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 95, 115, 0.08);
    border-color: var(--primary);
}
.premium-brand-logo-container {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.premium-brand-card:hover .premium-brand-logo-container {
    transform: scale(1.03);
    border-color: var(--primary);
}
.premium-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.premium-brand-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-family: var(--font-headings);
}
.premium-brand-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    background-color: rgba(0, 95, 115, 0.06);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.premium-brand-link {
    font-family: var(--font-headings);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s ease;
}
.premium-brand-card:hover .premium-brand-link {
    color: var(--accent);
}

/* Mobile Navigation Sidebar Drawer (Slide in from Right) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        right: -310px !important;
        width: 290px !important;
        height: 100vh !important;
        background-color: #ffffff !important;
        z-index: 2000 !important;
        box-shadow: -5px 0 30px rgba(15, 23, 42, 0.18) !important;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 1.75rem 1.5rem !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    /* Force layout rendering when closed so slide transition plays horizontally */
    .navbar-collapse.collapse:not(.show) {
        display: flex !important;
    }
    .navbar-collapse.collapsing {
        height: 100vh !important;
        top: 0 !important;
        width: 290px !important;
        position: fixed !important;
        right: -310px !important;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: flex !important;
        flex-direction: column !important;
        z-index: 2000 !important;
    }
    .navbar-collapse.show {
        right: 0 !important;
    }
    .navbar-nav {
        flex-direction: column !important;
        width: 100% !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
    .navbar-nav .nav-item {
        width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(0, 95, 115, 0.08) !important;
    }
    .navbar-nav .nav-link-custom {
        color: var(--dark) !important;
        font-size: 1rem !important;
        padding: 0.85rem 0.5rem !important;
        width: 100% !important;
        display: block !important;
        text-align: left !important;
    }
    .navbar-nav .nav-link-custom:hover, 
    .navbar-nav .nav-link-custom.active {
        color: var(--primary) !important;
        background-color: rgba(0, 95, 115, 0.04) !important;
        border-radius: var(--radius-sm) !important;
    }
}

/* Mobile-first overrides & App-like feel */
@media (max-width: 767.98px) {
    .py-5 {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important;
    }

    .hero-slider-container {
        height: auto !important;
        min-height: auto !important;
        aspect-ratio: none !important;
        margin: 1rem !important;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        background-color: #ffffff !important;
    }
    .hero-slide {
        position: relative !important;
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
    }
    .hero-slide.active {
        display: flex !important;
    }
    .hero-media-wrapper {
        position: relative !important;
        width: 100% !important;
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
    }
    .hero-overlay {
        display: none !important;
    }
    .hero-content-wrapper {
        position: relative !important;
        height: auto !important;
        min-height: 120px !important;
        background: #ffffff !important;
        color: var(--dark) !important;
        padding: 0.75rem 1rem !important;
        display: flex !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    .hero-content-wrapper > div {
        margin: 0 auto;
        width: 100%;
    }
    .hero-title {
        color: var(--dark) !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        margin-bottom: 0.15rem !important;
        text-shadow: none !important;
        line-height: 1.2 !important;
    }
    .hero-subtitle {
        color: var(--text-muted) !important;
        font-size: 0.7rem !important;
        margin-bottom: 0.4rem !important;
        text-shadow: none !important;
        max-width: 100% !important;
        line-height: 1.25 !important;
    }
    .hero-content-wrapper .btn {
        padding: 0.3rem 0.85rem !important;
        font-size: 0.7rem !important;
        border-radius: var(--radius-sm) !important;
        margin-top: 0 !important;
    }

    /* Fixed stacked layout to remove horizontal scroll page overflow completely */
    .mobile-horizontal-scroll {
        display: flex !important;
        flex-direction: column !important;
        overflow-x: visible !important;
        gap: 1.5rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        scroll-snap-type: none !important;
        margin: 0 !important;
    }
    .mobile-horizontal-scroll > div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .service-card {
        width: 100% !important;
        margin: 0 auto !important;
    }

    .service-footer-btns {
        flex-direction: column;
        gap: 0.4rem;
    }
    .service-footer-btns .btn {
        width: 100%;
        padding: 0.65rem 0.5rem;
    }
    
    .ecom-cat-card {
        aspect-ratio: 4 / 5 !important;
        height: auto !important;
        padding: 0.85rem;
    }
    .ecom-cat-title {
        font-size: 0.8rem !important;
        margin-bottom: 0.4rem;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
        overflow: hidden !important;
        width: 100% !important;
    }
    .ecom-cat-btn {
        opacity: 1 !important;
        transform: translateY(0) !important;
        padding: 0.3rem 0.65rem !important;
        font-size: 0.7rem !important;
    }
    
    /* Make the last category span full width on mobile but keep same height (making it horizontal) */
    .row > .col-ecom-5:last-child {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
    }
    .row > .col-ecom-5:last-child .ecom-cat-card {
        height: 55vw !important;
        max-height: 215px !important;
        min-height: 180px !important;
        width: 100% !important;
        aspect-ratio: none !important;
    }
    .row > .col-ecom-5:last-child .ecom-cat-title {
        font-size: 0.85rem !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
        overflow: hidden !important;
        width: 100% !important;
        margin-bottom: 0.4rem !important;
        text-align: center !important;
    }

    /* Position dots right on the bottom edge of 16:9 image overlay on mobile */
    .hero-dots-container {
        bottom: 135px !important;
    }
    
    .mobile-action-bar-inner {
        gap: 0.5rem !important;
    }
    .mobile-action-btn {
        padding: 0.75rem 0.4rem !important;
        font-size: 0.85rem !important;
        gap: 0.3rem !important;
    }
    
    /* Sleek Horizontal search bar on mobile screens */
    .home-search-section {
        margin-top: 1.5rem !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
    }
    .search-bar-wrapper {
        flex-direction: row !important;
        border-radius: 50px !important;
        padding: 0.25rem 0.25rem 0.25rem 1rem !important;
        gap: 0 !important;
        width: 100% !important;
        max-width: 480px !important;
        margin: 0 auto !important;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
    }
    .search-input-box {
        width: auto !important;
        flex-grow: 1 !important;
    }
    .search-input {
        font-size: 0.82rem !important;
        padding: 0.25rem 0 !important;
    }
    .search-icon {
        font-size: 0.95rem !important;
        margin-right: 0.4rem !important;
    }
    .search-submit-btn {
        width: auto !important;
        border-radius: 50px !important;
        padding: 0.5rem 1.25rem !important;
        font-size: 0.78rem !important;
        height: auto !important;
    }
}

@media (max-width: 399.98px) {
    .mobile-action-btn {
        font-size: 0.75rem !important;
        padding: 0.65rem 0.25rem !important;
        gap: 0.25rem !important;
    }
    .mobile-action-btn i {
        font-size: 0.85rem !important;
    }
}

/* Service Detail Page Sticky widget positioning logic */
@media (min-width: 992px) {
    .sticky-top-sub {
        position: sticky !important;
        top: 110px !important;
        z-index: 100 !important;
    }
}
@media (max-width: 991.98px) {
    .sticky-top-sub {
        position: static !important;
        margin-bottom: 2.5rem !important;
    }
}

/* ==========================================================================
   HOMEPAGE REDESIGN STYLES (DCP SERVICE SUPPORT)
   ========================================================================== */

/* 1. Split Hero Section */
.hero-split-section {
    position: relative;
    padding: 7rem 0 6rem 0;
    overflow: hidden;
    background-color: #072E33; /* Rich dark teal fallback */
}

.hero-split-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 46, 51, 0.85) 0%, rgba(7, 46, 51, 0.8) 100%), 
                url('../../uploads/media/hero_bg.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(6px);
    transform: scale(1.05); /* Prevents blurred boundaries */
    z-index: 1;
    pointer-events: none;
}

/* Ambient glow orb elements */
.hero-glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 147, 150, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}
.hero-glow-orb-1 { top: -100px; right: -50px; }
.hero-glow-orb-2 { bottom: -100px; left: -50px; }

.hero-split-content {
    position: relative;
    z-index: 5;
}

.hero-split-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(238, 155, 0, 0.12); /* Subtle Gold */
    border: 1px solid rgba(238, 155, 0, 0.3);
    color: #EE9B00;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(238, 155, 0, 0.05);
}

.hero-split-title {
    font-family: var(--font-headings);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 3.25rem;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.hero-split-title span {
    color: var(--accent); /* Accent Gold highlights */
}

.hero-split-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
}

/* Image container side */
.hero-split-showcase {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-showcase-image-wrapper {
    position: relative;
    border-radius: 24px;
    border: 4px solid rgba(10, 147, 150, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
}

.hero-showcase-image-wrapper img,
.hero-showcase-image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-glass-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(7, 46, 51, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    max-width: 320px;
    transition: transform 0.3s ease;
}

.hero-floating-glass-card:hover {
    transform: translateY(-5px);
}

.hero-floating-glass-card i {
    font-size: 1.75rem;
    color: var(--accent);
}

.hero-floating-glass-card-text {
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
}

/* 2. Asymmetric Category Grid Improvements */
.asymmetric-cat-section .ecom-cat-card {
    aspect-ratio: auto !important;
    height: 100% !important;
    min-height: 200px !important;
}

.asymmetric-cat-section .cat-card-featured {
    min-height: 420px !important;
}

.asymmetric-cat-section .ecom-cat-btn {
    width: auto !important;
    margin-top: 0.75rem;
    display: inline-block;
}

@media (max-width: 991.98px) {
    .asymmetric-cat-section .cat-card-featured {
        min-height: 300px !important;
    }
}

/* 3. Why Choose Us Glassmorphic section */
.bg-teal-dark {
    background-color: #072E33 !important;
}

.glass-why-choose-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 20px !important;
    padding: 2.25rem 2rem !important;
    transition: all 0.3s ease !important;
    height: 100%;
}

.glass-why-choose-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(238, 155, 0, 0.4) !important; /* Gold hover border */
    transform: translateY(-5px);
}

.glass-why-choose-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(10, 147, 150, 0.2);
    border: 1px solid rgba(10, 147, 150, 0.3);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.glass-why-choose-card:hover .card-icon {
    background: var(--accent);
    color: var(--dark);
    transform: scale(1.1) rotate(5deg);
}

.glass-why-choose-card h3 {
    color: #FFFFFF !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: var(--font-headings);
}

.glass-why-choose-card p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* 4. FAQ Two Column Layout */
.faq-help-card {
    background: linear-gradient(135deg, var(--primary) 0%, #072E33 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: #FFFFFF;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-help-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.faq-help-title {
    font-size: 1.85rem;
    font-weight: 800;
    font-family: var(--font-headings);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.faq-help-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.faq-help-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-help-contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-help-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.faq-help-details h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
    font-weight: 700;
}

.faq-help-details a {
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-help-details a:hover {
    color: var(--accent);
}

/* 5. Mobile Adaptations */
@media (max-width: 991.98px) {
    .hero-split-section {
        padding: 5rem 0 4rem 0;
        text-align: center;
    }
    .hero-split-title {
        font-size: 2.35rem;
    }
    .hero-split-showcase {
        margin-top: 3.5rem;
    }
    .hero-floating-glass-card {
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 300px;
    }
    .hero-floating-glass-card:hover {
        transform: translateX(-50%) translateY(-3px);
    }
}

