/* Custom CSS for CleanPro - Maid Services Website */

/* ========== GLOBAL STYLES ========== */
:root {
    /* Existing root variables */
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --secondary: #06b6d4;
    --gradient-pro: linear-gradient(90deg, #1e3c72, #2a5298);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1e293b;
    --light: #f8fafc;
    --text-color: #374151;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --border-radius: 12px;
    --transition: all 0.3s ease;

    /* Soft color variants */
    --soft-primary: rgba(79, 70, 229, 0.1);
    --soft-success: rgba(16, 185, 129, 0.1);
    --soft-warning: rgba(245, 158, 11, 0.1);
    --soft-info: rgba(14, 165, 233, 0.1);
    --soft-danger: rgba(239, 68, 68, 0.1);
    --soft-purple: rgba(139, 92, 246, 0.1);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Missing color variables used in the stylesheet */
    --primary-color: var(--primary);
    --secondary-color: var(--secondary);
    --success-color: var(--success);
    --warning-color: var(--warning);
    --danger-color: var(--danger);
    --info-color: var(--secondary);
}

/* ========== UTILITY CLASSES ========== */
.bg-soft-primary {
    background-color: var(--soft-primary) !important;
}

.bg-soft-success {
    background-color: var(--soft-success) !important;
}

.bg-soft-warning {
    background-color: var(--soft-warning) !important;
}

.bg-soft-info {
    background-color: var(--soft-info) !important;
}

.bg-soft-danger {
    background-color: var(--soft-danger) !important;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-danger {
    color: var(--danger) !important;
}

/* Professional Typography Scale */
h1,
.h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
}

h2,
.h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

h3,
.h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

h4,
.h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h5,
.h5 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
}

h6,
.h6 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
}

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

.footer-icons-visible,
.footer .social-links a {
    color: #374151 !important;
}

.footer-icons-visible:hover,
.footer .social-links a:hover {
    color: #6E9419 !important;
}

@media (prefers-color-scheme: dark) {

    .footer-icons-visible,
    .footer .social-links a {
        color: #e5e7eb !important;
    }

    .footer-icons-visible:hover,
    .footer .social-links a:hover {
        color: #a3e635 !important;
    }
}

.footer .social-links a i {
    font-size: 20px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 120px;
    /* Space for fixed header */
    min-height: 100vh;
}

/* Ensure main content is visible below fixed navbar */
main,
section:first-of-type {
    position: relative;
    z-index: 1;
    margin-top: 0;
    /* Removed margin-top, using body padding now */
}

/* Fix for hero sections to be visible */
.hero-section,
.about-video-hero,
.contact-video-hero {
    margin-top: 120px;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Basic scrolling fix */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 0;
    min-height: 100vh;
    position: relative;
}

/* Ensure all sections are properly positioned */
section {
    position: relative;
    overflow: visible;
}

/* Fix for any potential height issues */
.container,
.container-fluid {
    position: relative;
    overflow: visible;
}

/* Hero section adjustments */
.hero-section {
    min-height: calc(100vh - 120px);
    overflow: visible;
    position: relative;
}

/* Text utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.z-index-2 {
    z-index: 2;
}

/* ========== TOP CONTACT BAR ========== */
.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    font-size: 0.875rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.top-contact-bar .social-links a {
    font-size: 0.875rem;
    transition: var(--transition);
}

.top-contact-bar .social-links a:hover {
    color: var(--primary-light) !important;
}

/* ========== HEADER BUTTON ========== */
#whatsapp-btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    text-transform: none;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2rem;
    /* Add left margin to push button right */
}

#whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

#whatsapp-btn i {
    font-size: 1.1em;
    margin-right: 6px;
}

/* ========== PROFESSIONAL LOGO ========== */
.pro-logo {
    text-align: left;
    margin: 0 0 0 1.5rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.pro-logo-main {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.pro-logo-main .logo-maid {
    color: #FFD700;
    /* Golden yellow for 'Maid' */
    margin-right: 2px;
}

.pro-logo-main .logo-pool {
    background: linear-gradient(90deg, #9d4edd, #4cc9f0, #2ecc71);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.pro-logo-tagline {
    color: #4a5568;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 3px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* Hover effects */
.navbar-brand:hover .pro-logo-main .logo-maid {
    color: #FFC000;
    /* Slightly darker yellow on hover */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.navbar-brand:hover .pro-logo-main .logo-pool {
    background: linear-gradient(90deg, #7b2cbf, #38b6ff, #1db954);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-brand:hover .pro-logo-tagline {
    color: #2d3748;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .pro-logo-main {
        font-size: 1.5rem;
    }

    .pro-logo-tagline {
        font-size: 0.55rem;
    }
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1000;
    padding: 0;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
}

/* Ensure hamburger and mobile menu are hidden on desktop screens */
@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        background: none !important;
    }

    .mobile-sidebar,
    .mobile-overlay {
        display: none !important;
        visibility: hidden !important;
    }
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #1e3c72;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0px;
}

.mobile-menu-toggle span:nth-child(2),
.mobile-menu-toggle span:nth-child(3) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(4) {
    top: 20px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.mobile-menu-toggle.active span:nth-child(2) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-menu-toggle.active span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

/* Mobile menu open indicator */
body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-toggle {
    background: #f0f4ff !important;
    border-color: #1e3c72 !important;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

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

.mobile-nav-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.mobile-close-btn {
    position: absolute;
    right: 1rem;
    top: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #4a5568;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mobile-close-btn:hover {
    background: #f7fafc;
    color: #1e3c72;
}

.mobile-nav-menu {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin: 0;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-nav-menu a i {
    width: 24px;
    text-align: center;
    margin-right: 0.75rem;
    color: #718096;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    background: #f7fafc;
    color: #1e3c72;
}

.mobile-nav-menu a.active {
    border-left: 4px solid #1e3c72;
    padding-left: calc(1.5rem - 4px);
}

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: #f9fafb;
}

.mobile-contact-info {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.mobile-contact-info a {
    color: #4a5568;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.mobile-contact-info a i {
    margin-right: 0.5rem;
    color: #718096;
    width: 20px;
    text-align: center;
}

.mobile-contact-info a:hover {
    color: #1e3c72;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #4a5568;
    transition: all 0.2s ease;
}

.mobile-social-links a:hover {
    background: #1e3c72;
    color: white;
    transform: translateY(-2px);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(3px);
}

.mobile-nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Show mobile menu toggle on mobile */
@media (max-width: 991.98px) {
    .mobile-menu-toggle {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        z-index: 1050 !important;
        background: white !important;
        border: 2px solid #1e3c72 !important;
        border-radius: 6px !important;
        outline: none !important;
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        cursor: pointer !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    }

    /* Override Bootstrap d-lg-none class */
    .d-lg-none.mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
    }

    .mobile-menu-toggle:focus {
        outline: 2px solid #1e3c72 !important;
        outline-offset: 2px !important;
    }

    .mobile-menu-toggle:hover {
        background: #f8f9fa !important;
        border-color: #1e3c72 !important;
        transform: scale(1.05) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    }

    /* Ensure mobile menu toggle is visible and clickable */
    .mobile-menu-toggle span {
        background: #1e3c72 !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
        height: 3px !important;
        width: 24px !important;
        margin: 1.5px 0 !important;
        border-radius: 2px !important;
        display: block !important;
        position: relative !important;
        transition: all 0.3s ease !important;
    }

    /* Ensure proper positioning in navbar */
    .custom-navbar .container {
        position: relative !important;
        align-items: center !important;
    }

    /* Ensure mobile menu toggle stays in navbar */
    .custom-navbar .mobile-menu-toggle {
        position: relative !important;
        z-index: 1060 !important;
        float: none !important;
        clear: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        vertical-align: middle !important;
    }

    /* Hide desktop navigation on mobile */
    .navbar-nav.d-none.d-lg-flex {
        display: none !important;
    }

    /* Adjust header for mobile */
    .custom-navbar {
        padding: 0.5rem 1rem;
        height: 70px;
    }

    .pro-logo-main {
        font-size: 1.4rem !important;
    }

    .pro-logo-tagline {
        font-size: 0.6rem !important;
    }
}

/* ========== NAVIGATION ========== */
.custom-navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.3s ease;
    height: 80px;
    /* Fixed height for consistent spacing */
}

/* Center Navigation in Header */
.center-nav {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

.center-nav .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    gap: 0.5rem;
}

.center-nav .nav-item {
    margin: 0;
}

.navbar-nav .nav-link {
    color: #4a5568 !important;
    font-weight: 500;
    padding: 0.4rem 0.6rem !important;
    /* Reduced padding */
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    /* Slightly smaller font */
    white-space: nowrap;
    /* Prevent text wrapping */
}

.center-nav .nav-link:hover,
.center-nav .nav-link.active {
    color: var(--primary) !important;
    background-color: rgba(59, 130, 246, 0.1);
}

/* Desktop Navigation - Align to Right */
.navbar-nav {
    margin-left: auto !important;
    gap: 0.1rem;
    /* Further reduced gap */
    margin-bottom: 0;
    align-items: center;
}

.navbar-nav .nav-link {
    color: rgba(31, 41, 55, 0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background-color: rgba(59, 130, 246, 0.1);
}

.custom-navbar .container {
    max-width: 100%;
    padding: 0 2rem;
    justify-content: space-between !important;
    /* Ensure space between logo and nav items */
}

/* Mobile Navigation Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1060;
    transition: right 0.3s ease-in-out;
    padding: 1.5rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-sidebar-header h4 {
    margin: 0;
    color: #1e3c72;
    font-weight: 600;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #4a5568;
    padding: 0.25rem;
    line-height: 1;
}

.mobile-close-btn:hover {
    background-color: #f7fafc;
    color: #1e3c72;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    max-height: 60vh;
    overflow-y: auto;
    flex: 1;
}

.mobile-menu li {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.25rem;
    color: #4a5568;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.mobile-menu a:hover {
    background-color: #f7fafc;
    color: #1e3c72;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(30, 60, 114, 0.1);
}

.mobile-menu a.active {
    font-weight: 600;
    color: #1e3c72;
    border-left: 3px solid #1e3c72;
    padding-left: 0.75rem;
    background-color: #f0f4ff;
}

.mobile-whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.mobile-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

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

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #4a5568;
    padding: 0.25rem;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.mobile-close-btn:hover {
    background-color: #f7fafc;
    color: #1e3c72;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-menu li {
    margin-bottom: 0.5rem;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #4a5568;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 1rem;
}

.mobile-menu a:hover {
    background-color: #f7fafc;
    color: #1e3c72;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(30, 60, 114, 0.1);
}

.mobile-menu a.active {
    font-weight: 600;
    color: #1e3c72;
    border-left: 3px solid #1e3c72;
    padding-left: 0.75rem;
    background-color: #f0f4ff;
}

.mobile-menu li {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    backdrop-filter: blur(3px);
}

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

/* Desktop - Show navigation, hide mobile elements */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        margin-left: auto;
        gap: 0.25rem !important;
    }

    .navbar-toggler {
        display: none !important;
    }

    .mobile-sidebar,
    .mobile-overlay {
        display: none !important;
    }
}

/* Mobile - Hide desktop nav, show mobile */
@media (max-width: 991.98px) {
    .navbar-nav {
        display: none !important;
    }

    .navbar-toggler {
        display: block !important;
        border: none;
        background: none;
        padding: 0.5rem;
        cursor: pointer;
        z-index: 1060;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .navbar-toggler-icon {
        display: block;
        width: 24px;
        height: 2px;
        background: #374151;
        position: relative;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: #374151;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before {
        top: -6px;
    }

    .navbar-toggler-icon::after {
        bottom: -6px;
    }

    .navbar-toggler.active .navbar-toggler-icon {
        background: transparent;
    }

    .navbar-toggler.active .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    .navbar-toggler.active .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}

/* Ensure Bootstrap collapse works properly */
.navbar-collapse.collapse:not(.show) {
    display: none !important;
}

.navbar-collapse.collapsing {
    height: auto !important;
    overflow: hidden;
    transition: height 0.35s ease;
}

/* EMERGENCY FIX: Ensure mobile menu is visible when show class is present */
.navbar-collapse.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
}

/* Fix for mobile menu button visibility */
.navbar-toggler {
    display: none;
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block !important;
    }

    /* Force mobile menu to be visible when show class is present */
    .navbar-collapse.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Ensure proper z-index for mobile menu */
@media (max-width: 991.98px) {
    .custom-navbar {
        z-index: 1020;
    }

    .navbar-collapse {
        z-index: 1010;
    }
}

/* Additional mobile navigation fixes */
@media (max-width: 991.98px) {

    /* Ensure navbar container is properly positioned */
    .navbar>.container {
        position: relative;
    }

    /* Make sure the collapse menu is visible when open */
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Style the mobile menu items */
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    /* Ensure the WhatsApp button is properly styled in mobile menu */
    .navbar-nav .nav-item .btn {
        margin: 0.5rem 0;
        text-align: center;
        justify-content: center;
    }

    /* Fix for any potential overflow issues */
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Fix for very small screens */
@media (max-width: 575.98px) {
    .navbar-collapse {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

/* Ensure mobile menu button is always visible and functional */
.navbar-toggler {
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.65);
    background-color: transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
    z-index: 1025;
}

.navbar-toggler:hover {
    color: rgba(0, 0, 0, 0.85);
    background-color: rgba(0, 0, 0, 0.05);
}

.navbar-toggler:focus {
    color: rgba(0, 0, 0, 0.85);
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Responsive adjustments for navigation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important;
    }

    .mobile-sidebar.show {
        left: 0;
    }

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

    /* Mobile header adjustments */
    .custom-navbar {
        padding: 0.5rem 1rem;
    }

    .pro-logo {
        margin-left: 0.5rem !important;
    }

    .pro-logo-main {
        font-size: 1.4rem !important;
    }

    .pro-logo-tagline {
        font-size: 0.6rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1.25rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 6px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.15rem rgba(30, 60, 114, 0.25);
    }
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding-top: 80px;
    /* Add padding to account for fixed header */
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    /* Adjust height to account for header */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.min-vh-50 {
    min-height: 50vh;
}

/* Ensure hero content is visible */
.hero-section .container {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section .row {
    margin-top: 0;
    padding-top: 0;
    width: 100%;
}

.hero-section .hero-content {
    position: relative;
    z-index: 3;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--secondary-color) 50%,
            var(--success-color) 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(79, 70, 229, 0.8) 0%,
            rgba(6, 182, 212, 0.6) 50%,
            rgba(16, 185, 129, 0.4) 100%);
    z-index: -1;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Cleaning Particles Animation */
.cleaning-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.particle-2 {
    width: 12px;
    height: 12px;
    top: 30%;
    left: 80%;
    animation: float2 8s ease-in-out infinite;
}

.particle-3 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 15%;
    animation: float3 7s ease-in-out infinite;
}

.particle-4 {
    width: 10px;
    height: 10px;
    top: 70%;
    left: 85%;
    animation: float1 9s ease-in-out infinite;
}

.particle-5 {
    width: 14px;
    height: 14px;
    top: 40%;
    left: 60%;
    animation: float2 5s ease-in-out infinite;
}

.particle-6 {
    width: 8px;
    height: 8px;
    top: 80%;
    left: 40%;
    animation: float3 6.5s ease-in-out infinite;
}

.particle-7 {
    width: 16px;
    height: 16px;
    top: 15%;
    left: 50%;
    animation: float1 7.5s ease-in-out infinite;
}

.particle-8 {
    width: 6px;
    height: 6px;
    top: 90%;
    left: 70%;
    animation: float2 8.5s ease-in-out infinite;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    pointer-events: none;
}

.element-1 {
    top: 25%;
    left: 20%;
    animation: rotate-float 12s linear infinite;
}

.element-2 {
    top: 45%;
    left: 75%;
    animation: rotate-float 15s linear infinite reverse;
}

.element-3 {
    top: 65%;
    left: 25%;
    animation: rotate-float 18s linear infinite;
}

.element-4 {
    top: 35%;
    left: 90%;
    animation: rotate-float 10s linear infinite reverse;
}

/* Keyframe Animations */
@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(-40px) translateX(-5px);
    }

    75% {
        transform: translateY(-20px) translateX(-10px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    33% {
        transform: translateY(-30px) translateX(15px);
    }

    66% {
        transform: translateY(-15px) translateX(-10px);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    20% {
        transform: translateY(-25px) translateX(8px);
    }

    40% {
        transform: translateY(-50px) translateX(-3px);
    }

    60% {
        transform: translateY(-35px) translateX(-12px);
    }

    80% {
        transform: translateY(-10px) translateX(5px);
    }
}

@keyframes rotate-float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) rotate(90deg);
    }

    50% {
        transform: translateY(-60px) rotate(180deg);
    }

    75% {
        transform: translateY(-30px) rotate(270deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons .btn {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.025em;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ========== ANIMATIONS ========== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
}

.animation-delay-1 {
    animation-delay: 0.2s;
}

.animation-delay-2 {
    animation-delay: 0.4s;
}

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

/* ========== CARDS AND COMPONENTS ========== */
.feature-card,
.service-card,
.value-card,
.why-choose-item,
.team-card,
.contact-method,
.event-card,
.package-card,
.why-choose-card,
.testimonial-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover,
.service-card:hover,
.value-card:hover,
.contact-method:hover,
.event-card:hover,
.package-card:hover,
.why-choose-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

/* Feature cards */
.feature-icon,
.value-icon,
.contact-icon,
.event-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #68bf60, #68bf60);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
}

/* Service cards */
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, #68bf60, #68bf60);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Service image styling */
.service-image {
    height: 200px;
}

.service-image .image-placeholder {
    height: 100%;
    min-height: 200px;
}

/* Why Choose Us cards */
.why-choose-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Testimonial cards */
.testimonial-card {
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial-content {
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
    line-height: 1;
}

.author-avatar .avatar-placeholder {
    width: 50px;
    height: 50px;
    min-height: auto;
    font-size: 1rem;
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding-top: 164px;
    /* Updated for top contact bar + navbar */
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.min-vh-50 {
    min-height: 50vh;
}

/* Image placeholders */
.image-placeholder,
.avatar-placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    min-height: auto;
    font-size: 2rem;
}

/* ========== TEAM SECTION ========== */
.team-avatar {
    margin-bottom: 1rem;
}

/* ========== SERVICES PAGE ========== */
.service-feature {
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* Professional Service Package Cards */
.value-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card .value-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.value-card p {
    font-size: 1rem;
    font-weight: 500;
    color: #667eea;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Area Cards */
.service-area-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.service-area-icon {
    transition: all 0.3s ease;
}

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

/* ========== BLOG STYLES ========== */
.blog-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.blog-card-content {
    background: #ffffff;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-features ul li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

/* Service Guide Cards */
.service-guide-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.service-guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-guide-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

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

.service-guide-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.service-guide-card ul li:last-child {
    border-bottom: none;
}

/* Blog Page Header */
.page-header {
    background: linear-gradient(135deg, #d0eacb 0%, #d9ecd9 100%);
    color: white;
    padding: 8rem 0 4rem;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Package cards */
.package-card {
    position: relative;
    overflow: hidden;
}

.package-popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ========== CONTACT PAGE ========== */
.contact-form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-info-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.calendly-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, #c5ebc6, #93e07c);
    color: white;
}

/* ========== FOOTER ========== */
.footer {
    background: #ffffff;
    color: #333333;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

/* Desktop only - logo alignment */
@media (min-width: 768px) {
    .footer-logo {
        margin-left: -6%;
    }
}

.footer h5,
.footer h6 {
    background: linear-gradient(90deg, #9d4edd 0%, #4cc9f0 50%, #2ecc71 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #4a5568;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    padding-left: 0.5rem;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #9d4edd 0%, #4cc9f0 50%, #2ecc71 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #1a202c;
    padding-left: 1rem;
}

.footer-links a:hover::before {
    height: 60%;
}

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9d4edd 0%, #4cc9f0 50%, #2ecc71 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
    font-size: 1rem;
}

.social-links .social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: white;
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(107, 139, 111);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(44, 96, 63, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========== FORM STYLES ========== */
.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* ========== BUTTONS ========== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-warning {
    background: var(--warning-color);
    color: white;
}

.btn-warning:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-info {
    background: var(--secondary-color);
    color: white;
}

.btn-info:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.rounded-pill {
    border-radius: 50px !important;
}

/* ========== ACCORDION ========== */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--light-color);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.25rem 1.5rem;
    background: white;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.125rem;
    }

    .package-popular {
        transform: none;
        margin-top: 2rem;
    }

    .contact-info-card {
        position: static;
        margin-top: 2rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .feature-card,
    .service-card,
    .value-card,
    .contact-method,
    .event-card {
        margin-bottom: 2rem;
    }

    /* Mobile Footer Alignment - Minimal Fix */
    .footer-logo {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Ensure natural mobile layout */
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3,
    .footer .col-md-6 {
        margin-bottom: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Reduce particle animations on mobile for performance */
    .particle,
    .element {
        display: none;
    }

    .cleaning-particles::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
            radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
            radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
        background-size: 50px 50px, 80px 80px, 100px 100px;
        animation: sparkle 10s linear infinite;
    }
}

@keyframes sparkle {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-50px) translateY(-50px);
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

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

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .package-price {
        font-size: 2rem;
    }

    .contact-form-container,
    .contact-info-card {
        padding: 1.5rem;
    }
}

/* ========== UTILITY CLASSES ========== */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

/* ========== LOADING STATES ========== */
.btn.loading {
    pointer-events: none;
    opacity: 0.6;
}

.btn.loading::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========== ACCESSIBILITY ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --text-color: #000000;
        --text-muted: #333333;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-arrow {
        animation: none;
    }

    .whatsapp-float {
        animation: none;
    }

    .particle,
    .element {
        animation: none;
    }
}

/* ========== SERVICE CALCULATOR STYLES ========== */
.calculator-card {
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.calculator-card:hover {
    box-shadow: var(--shadow-xl) !important;
    transform: translateY(-2px);
}

.service-options .form-check,
.time-options .form-check {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.service-options .form-check:hover,
.time-options .form-check:hover {
    background-color: rgba(79, 70, 229, 0.05);
    border-color: var(--primary-color);
}

.service-options .form-check-input:checked+.form-check-label,
.time-options .form-check-input:checked+.form-check-label {
    color: var(--primary-color);
    font-weight: 600;
}

.service-options .form-check-input:checked~.form-check,
.time-options .form-check-input:checked~.form-check {
    background-color: rgba(79, 70, 229, 0.1);
    border-color: var(--primary-color);
}

.results-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.result-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-info {
    border: 1px solid var(--border-color);
}

.pricing-info h6 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.pricing-info ul li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

/* Calculator animations */
.calculator-card {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.results-card {
    animation: fadeInScale 0.5s ease-out;
}

/* Ensure action buttons inside the results card are visible against the gradient */
.results-card .btn {
    box-shadow: var(--shadow-sm);
}

.results-card .btn.btn-light {
    background-color: #ffffff;
    color: var(--primary-color);
    border: none;
}

.results-card .btn.btn-outline-light {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.85);
}


@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

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

/* Responsive calculator */
@media (max-width: 768px) {
    .calculator-card {
        padding: 1.5rem !important;
    }

    .service-options .form-check,
    .time-options .form-check {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .results-card {
        padding: 1.5rem !important;
    }

    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Calculator form controls */
.form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
}

/* Calculator button styles */
#calculateBtn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

#calculateBtn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

#calculateBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

#calculateBtn:hover::before {
    left: 100%;
}

/* Ensure the sheen pseudo-element stays behind the button text */
#calculateBtn::before {
    z-index: 0;
}

#calculateBtn,
#calculateBtn .fas {
    position: relative;
    z-index: 1;
    color: #fff;
}

/* Service breakdown styles */
#breakdownList {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Loading state for calculator */
.calculator-loading {
    position: relative;
    pointer-events: none;
}

.calculator-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========== POLICIES PAGE STYLES ========== */
.policy-card {
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.policy-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.policy-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    background-color: rgba(79, 70, 229, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.policy-item i {
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.addons-card {
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.addons-card:hover {
    box-shadow: var(--shadow-lg);
}

.addons-card .table {
    margin-bottom: 0;
}

.addons-card .table th {
    border-top: none;
    font-weight: 600;
    color: white;
}

.addons-card .table td {
    vertical-align: middle;
    border-top: 1px solid var(--border-color);
}

.addons-card .table tbody tr:hover {
    background-color: rgba(79, 70, 229, 0.05);
}

.service-type-item {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.service-type-item:hover {
    background-color: rgba(79, 70, 229, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-type-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.service-type-header i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.differentiators-card {
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.differentiators-card:hover {
    box-shadow: var(--shadow-lg);
}

.differentiator-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    height: 100%;
}

.differentiator-item:hover {
    background-color: rgba(79, 70, 229, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.differentiator-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.differentiator-icon i {
    font-size: 1.5rem;
    color: white;
}

.join-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    transition: var(--transition);
}

.join-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.join-buttons .btn {
    transition: var(--transition);
}

.join-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive policies page */
@media (max-width: 768px) {
    .policy-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .policy-item i {
        margin-bottom: 0.5rem;
    }

    .service-type-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .service-type-header i {
        margin-bottom: 0.5rem;
    }

    .differentiator-item {
        margin-bottom: 1rem;
    }

    .join-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Animation for policies page */
.policy-card,
.addons-card,
.service-type-item,
.differentiator-item {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Table hover effects */
.addons-card .table tbody tr {
    transition: var(--transition);
}

.addons-card .table tbody tr:hover {
    background-color: rgba(79, 70, 229, 0.08);
    transform: scale(1.01);
}

/* Icon animations */
.differentiator-icon {
    transition: var(--transition);
}

.differentiator-item:hover .differentiator-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Gradient text for headings */
.policy-card h3,
.join-card h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-card h2 {
    -webkit-text-fill-color: white;
    background: none;
}

/* ========== VIDEO HERO SECTION STYLES ========== */
.video-hero-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(79, 70, 229, 0.8) 0%,
            rgba(6, 182, 212, 0.6) 50%,
            rgba(16, 185, 129, 0.4) 100%);
    z-index: -1;
}

.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--secondary-color) 50%,
            var(--success-color) 100%);
}

.video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Video hero content styles */
.video-hero-section .hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.video-hero-section .hero-content .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.video-hero-section .hero-buttons .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    text-shadow: none;
    transition: var(--transition);
}

.video-hero-section .hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Video hero animations */
.video-hero-section .animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
}

.video-hero-section .animation-delay-1 {
    animation-delay: 0.2s;
}

.video-hero-section .animation-delay-2 {
    animation-delay: 0.4s;
}

/* Video hero scroll indicator */
.video-hero-section .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.video-hero-section .scroll-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.video-hero-section .scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.video-hero-section .scroll-arrow i {
    color: white;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* Responsive video hero */
@media (max-width: 991.98px) {
    .video-hero-section .hero-content h1 {
        font-size: 2.5rem;
    }

    .video-hero-section .hero-content .lead {
        font-size: 1.1rem;
    }

    .video-hero-section .hero-buttons .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .video-hero-section {
        min-height: 60vh;
    }

    .video-hero-section .hero-content h1 {
        font-size: 2rem;
    }

    .video-hero-section .hero-content .lead {
        font-size: 1rem;
    }

    .video-hero-section .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .video-hero-section .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .video-hero-section .hero-content h1 {
        font-size: 1.75rem;
    }

    .video-hero-section .hero-content .lead {
        font-size: 0.95rem;
    }
}

/* Video loading state */
.hero-video {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-video.loaded {
    opacity: 1;
}

/* Video fallback for older browsers */
@supports not (object-fit: cover) {
    .hero-video {
        width: 100%;
        height: auto;
    }
}

/* Video accessibility */
.hero-video:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Video performance optimization */
.hero-video {
    will-change: transform;
}

/* Video hero section specific animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ========== ABOUT US VIDEO HERO SECTION STYLES ========== */
.about-video-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.about-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(220, 38, 127, 0.8) 0%,
            rgba(168, 85, 247, 0.6) 50%,
            rgba(59, 130, 246, 0.4) 100%);
    z-index: -1;
}

.about-video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            #dc267f 0%,
            #a855f7 50%,
            #3b82f6 100%);
}

.about-video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* About hero content styles */
.about-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-content .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.text-gradient-about {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About hero stats */
.about-hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-stats .stat-number {
    font-size: 1.5rem;
    color: #fbbf24;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.about-hero-stats .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* About image grid */
.about-image-grid {
    position: relative;
    height: 400px;
}

.about-image-item {
    position: absolute;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image-item:hover {
    transform: scale(1.05);
}

.about-image-1 {
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    z-index: 3;
}

.about-image-2 {
    top: 20%;
    right: 0;
    width: 50%;
    height: 50%;
    z-index: 2;
}

.about-image-3 {
    bottom: 0;
    left: 20%;
    width: 55%;
    height: 55%;
    z-index: 1;
}

/* About hero animations */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideRight 0.8s ease-out forwards;
}

/* About scroll indicator */
.about-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.about-scroll-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.about-scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.about-scroll-arrow i {
    color: white;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* ========== CONTACT VIDEO HERO SECTION STYLES ========== */
.contact-video-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.contact-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.8) 0%,
            rgba(16, 185, 129, 0.6) 50%,
            rgba(5, 150, 105, 0.4) 100%);
    z-index: -1;
}

.contact-video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            #22c55e 0%,
            #10b981 50%,
            #059669 100%);
}

.contact-video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Contact hero content styles */
.contact-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.text-gradient-contact {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact quick actions */
.contact-quick-actions .quick-action-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.contact-quick-actions .quick-action-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-quick-actions .quick-action-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: white;
}

.contact-quick-actions h5 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-quick-actions p {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact hero animations */
.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.8s ease-out forwards;
}

/* Contact scroll indicator */
.contact-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.contact-scroll-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.contact-scroll-arrow i {
    color: white;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* Responsive styles for About and Contact hero sections */
@media (max-width: 991.98px) {

    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content .lead,
    .contact-hero-content .lead {
        font-size: 1.1rem;
    }

    .about-image-grid {
        height: 300px;
        margin-top: 2rem;
    }

    .contact-quick-actions .quick-action-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {

    .about-video-hero,
    .contact-video-hero {
        min-height: 60vh;
    }

    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content .lead,
    .contact-hero-content .lead {
        font-size: 1rem;
    }

    .about-image-grid {
        height: 250px;
    }

    .about-hero-stats .stat-number {
        font-size: 1.2rem;
    }

    .contact-quick-actions {
        flex-direction: column;
    }

    .contact-quick-actions .quick-action-card {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {

    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 1.75rem;
    }

    .about-hero-content .lead,
    .contact-hero-content .lead {
        font-size: 0.95rem;
    }

    .about-image-grid {
        height: 200px;
    }
}

/* Animation keyframes for About and Contact sections */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

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

@media (max-width: 767.98px) {

    .top-contact-bar,
    .top-contact-mobile {
        font-size: 1rem;
        padding: 0.5rem 0 !important;
    }

    .top-contact-bar .container .row,
    .top-contact-mobile .container .row {
        flex-direction: column !important;
        text-align: center;
    }

    .top-contact-bar .col-md-6,
    .top-contact-mobile .col-md-6 {
        width: 100%;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .top-contact-bar .d-flex,
    .top-contact-mobile .d-flex {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-contact-bar .social-links,
    .top-contact-mobile .social-links {
        margin-top: 0.5rem;
    }

    /* Mobile contact info specific styling */
    .top-contact-bar .d-flex a,
    .top-contact-mobile .d-flex a {
        white-space: nowrap;
        font-size: 0.9rem;
    }

    .top-contact-bar .d-flex i,
    .top-contact-mobile .d-flex i {
        font-size: 0.9rem;
        min-width: 16px;
    }
}

/* ========== MOBILE SIDEBAR NAVIGATION ========== */
@media (max-width: 991.98px) {

    /* Mobile sidebar container */
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1050;
        overflow-y: auto;
        padding: 0;
        margin: 0;
        border-radius: 0;
        display: block !important;
    }

    /* Show sidebar when active */
    .navbar-collapse.show {
        right: 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Sidebar header */
    .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        z-index: -1;
    }

    /* Sidebar content */
    .navbar-nav {
        padding: 20px 0;
        margin: 0;
        width: 100%;
    }

    /* Sidebar menu items */
    .navbar-nav .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    /* Sidebar menu links */
    .navbar-nav .nav-link {
        padding: 15px 25px !important;
        margin: 0;
        text-align: left;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-color) !important;
        background: transparent;
        border-radius: 0;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    /* Hover effects for menu items */
    .navbar-nav .nav-item:hover .nav-link {
        background: linear-gradient(90deg, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
        color: var(--primary-color) !important;
        transform: translateX(-5px);
        padding-right: 30px !important;
    }

    /* Active menu item */
    .navbar-nav .nav-link.active {
        background: linear-gradient(90deg, var(--primary-color) 0%, rgba(79, 70, 229, 0.8) 100%);
        color: white !important;
        box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
    }

    /* Menu item icons */
    .navbar-nav .nav-link::before {
        content: '';
        width: 4px;
        height: 0;
        background: var(--primary-color);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: height 0.3s ease;
    }

    .navbar-nav .nav-item:hover .nav-link::before {
        height: 60%;
    }

    /* WhatsApp button in sidebar */
    .navbar-nav .nav-item .btn {
        width: calc(100% - 50px);
        margin: 15px 25px;
        text-align: center;
        justify-content: center;
        border-radius: 25px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-item .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    }

    /* Sidebar close button */
    .sidebar-close {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1051;
    }

    .sidebar-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    /* Overlay when sidebar is open */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .sidebar-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    /* Adjust main content when sidebar is open */
    body.sidebar-open {
        overflow: hidden;
    }

    /* Mobile menu button styling */
    .navbar-toggler {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        border: none;
        border-radius: 8px;
        padding: 8px 12px;
        color: white;
        box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
        transition: all 0.3s ease;
    }

    .navbar-toggler:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

/* Animation for sidebar slide */
@keyframes slideInRight {
    from {
        right: -100%;
    }

    to {
        right: 0;
    }
}

@keyframes slideOutRight {
    from {
        right: 0;
    }

    to {
        right: -100%;
    }
}

/* ========== TRUST BADGES ========== */
.trust-badge {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f8f9fa;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.trust-badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.trust-badge:hover .trust-badge-icon {
    transform: scale(1.1);
}

.trust-badge h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.trust-badge p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .trust-badge {
        padding: 1rem 0.5rem;
    }

    .trust-badge-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .trust-badge h6 {
        font-size: 0.8rem;
    }

    .trust-badge p {
        font-size: 0.7rem;
    }
}

/* ========== URGENCY & SOCIAL PROOF BANNER ========== */
.urgency-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.urgency-item {
    padding: 0.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    text-align: center;
}

.urgency-item:hover {
    transform: translateY(-2px);
}

.urgency-item i {
    font-size: 1.5rem;
    display: block;
    margin: 0 auto;
}

.urgency-item p {
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767.98px) {
    .urgency-banner {
        padding: 1rem;
    }

    .urgency-item i {
        font-size: 1.25rem;
    }

    .urgency-item p {
        font-size: 0.7rem;
    }
}

/* ========== ENHANCED CTA SECTION ========== */
.urgency-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    padding: 0.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-item i {
    font-size: 1.5rem;
    display: block;
}

.stat-item p {
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.offer-badge {
    animation: pulse 2s infinite;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 767.98px) {
    .urgency-stats {
        padding: 1rem;
    }

    .stat-item i {
        font-size: 1.25rem;
    }

    .stat-item p {
        font-size: 0.7rem;
    }

    .cta-buttons .btn {
        margin-bottom: 0.5rem !important;
    }

    .offer-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem !important;
    }
}

/* ========== ENHANCED CONTACT METHODS ========== */
.contact-method {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

/* Hide WhatsApp float button on home page only */
body:has(.hero-section) .whatsapp-float {
    display: none !important;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
}

.contact-method .btn {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-method .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767.98px) {
    .contact-method {
        padding: 1.5rem 1rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-method h4 {
        font-size: 1.1rem;
    }

    .contact-method p {
        font-size: 0.9rem;
    }
}

/* Center all hero content on all screen sizes */
.hero-content,
.about-hero-content,
.contact-hero-content {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ensure hero section containers use flex and center children vertically and horizontally */
.hero-section .container,
.video-hero-section .container,
.about-video-hero .container,
.contact-video-hero .container {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 80vh;
}

/* Center hero buttons and banners */
.hero-buttons,
.cta-buttons {
    justify-content: center !important;
    text-align: center !important;
}

.urgency-banner,
.limited-offer,
.offer-badge {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

@media (max-width: 991.98px) {
    .custom-navbar {
        padding: 0.4rem 0 !important;
        min-height: 48px !important;
    }

    .navbar-brand {
        font-size: 1.2rem !important;
    }

    .navbar-toggler {
        height: 40px;
        width: 40px;
    }

    .navbar-collapse {
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        border-radius: 0 0 12px 12px;
    }

    .navbar-nav {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        text-align: left;
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-item .btn {
        width: 90%;
        margin: 0.5rem 5%;
    }
}

@media (max-width: 991.98px) {
    .mobile-sidebar {
        display: block !important;
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1050;
        transition: right 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .mobile-sidebar.open {
        right: 0 !important;
        display: flex !important;
    }

    .mobile-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

@media (max-width: 991.98px) {

    body>section.hero-section,
    body>section:first-of-type.hero-section,
    body>section:first-of-type {
        margin-top: 0 !important;
        padding-top: 0 !important;
        min-height: 0 !important;
    }
}

section.hero-section,
section:first-of-type.hero-section,
.hero-section,
section:first-of-type,
body>section.hero-section,
body>section:first-of-type.hero-section,
body>section:first-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
    min-height: 0 !important;
}

@media (max-width: 991.98px) {

    section.hero-section,
    section:first-of-type.hero-section,
    .hero-section,
    section:first-of-type {
        margin-top: 0 !important;
        padding-top: 0 !important;
        min-height: unset !important;
    }
}

@media (min-width: 992px) {
    .navbar-nav>.nav-item.dropdown:hover>.dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu {
        margin-top: 0.5rem;
        transition: opacity 0.2s;
    }
}

/* --- HEADER AND HERO FIX --- */
.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.custom-navbar {
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    z-index: 1020;
}

/* FIX: Ensure hero section is always below header */
.hero-section {
    margin-top: 120px !important;
    min-height: calc(100vh - 120px) !important;
    padding-top: 0 !important;
}

/* Remove problematic overrides */
/* (All rules that set margin-top: 0 !important; or margin-top: 240px !important; for hero-section are deleted) */

/* Enhanced Search submit button styles */
.search-submit {
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    width: auto !important;
    height: auto !important;
}

.search-submit .fa-search,
.search-submit i[class*="fa-search"] {
    font-size: 16px !important;
    color: #6E9419 !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.search-submit:hover .fa-search,
.search-submit:hover i[class*="fa-search"] {
    color: #032530 !important;
    transform: scale(1.1) !important;
}

/* Ensure Font Awesome icons work properly */
.fas.fa-search::before {
    content: "\f002" !important;
}

/* Search form container */
.search-form {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.search-field {
    flex: 1 !important;
    padding: 8px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    outline: none !important;
    transition: border-color 0.3s ease !important;
}

.search-field:focus {
    border-color: #6E9419 !important;
}

/* About hero image styles */
.about-hero-image {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

.about-hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}