html { scroll-behavior: smooth; }
:root { --bottom-banner-height: 0px; }
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    padding-bottom: var(--bottom-banner-height);
    transition: padding-bottom 0.2s ease;
}
.bg-primary { background-color: #1a365d; }
.bg-secondary { background-color: #2c5282; }
.text-primary { color: #1a365d; }
.text-secondary { color: #2c5282; }
/* Layout utilities */
.hero-min { min-height: 70vh; }
.btn-primary {
    background-color: #eab308;
    color: #1a365d;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-secondary {
    background-color: #1a365d;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.card {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(234, 179, 8, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #eab308;
    font-size: 1.75rem;
}
.testimonial-card {
    background-color: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
.global-top-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1200;
    display: flex;
    justify-content: center;
    padding: 0.85rem;
    pointer-events: none;
}

.global-top-banner .banner-cta {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: linear-gradient(135deg, #ff7a18 0%, #ff4d00 100%);
    color: #ffffff;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    box-shadow: 0 16px 30px rgba(255, 102, 0, 0.35);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.global-top-banner .banner-cta:hover,
.global-top-banner .banner-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(255, 102, 0, 0.42);
    background: linear-gradient(135deg, #ff8c2c 0%, #ff3404 100%);
}

.global-top-banner .banner-cta:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.65);
    outline-offset: 4px;
}

.banner-cta__icon {
    width: 1.6rem;
    height: 1.6rem;
}

.banner-cta__content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.banner-cta__headline {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.banner-cta__number {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .global-top-banner {
        padding: 0.75rem;
    }

    .global-top-banner .banner-cta {
        width: calc(100% - 1.5rem);
        justify-content: center;
        text-align: center;
        padding: 0.85rem 1.25rem;
    }

    .banner-cta__content {
        align-items: center;
    }

    .banner-cta__headline {
        font-size: 0.85rem;
    }

    .banner-cta__number {
        font-size: 1.2rem;
    }
}
.navbar {
    transition: all 0.3s;
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 200;
}
.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.gallery-item {
    overflow: hidden;
    border-radius: 0.75rem;
    position: relative;
}
.gallery-item img {
    transition: transform 0.5s;
    height: 280px;
    width: 100%;
    object-fit: cover;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: white;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.hero-overlay {
    background: linear-gradient(to right, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0.7) 100%);
}
/* Stat badges in hero */
.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 500;
}
.stat-badge i { color: #eab308; }

/* Decorative shape divider below hero */
.shape-divider {
    position: relative;
    margin-top: -1px;
}
.shape-divider svg {
    display: block;
    width: 100%;
    height: 90px;
}
.shape-divider-shadow {
    box-shadow: 0 -8px 24px rgba(0,0,0,0.08) inset;
}
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #eab308;
    border-radius: 2px;
}
.section-title-center:after {
    left: 50%;
    transform: translateX(-50%);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(234, 179, 8, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(234, 179, 8, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    font-size: 1.25rem;
    margin-right: 1rem;
}
#callUsButton {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #eab308;
    color: #1a365d;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s;
}
#callUsButton:hover {
    background: #f59e0b;
    transform: scale(1.1);
}
.mobile-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}
.mobile-menu.open {
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Dropdown menu */
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    min-width: 14rem;
    width: max-content;
    max-height: 24rem;
    overflow-y: auto;
    z-index: 200;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu.dropdown-menu--grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 0.25rem 1rem;
}
.dropdown:hover .dropdown-menu.dropdown-menu--grid {
    display: grid;
}
.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #1a365d;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}
.dropdown-menu a:hover {
    background-color: #f3f4f6;
}

@media (max-width: 1024px) {
    .dropdown-menu.dropdown-menu--grid {
        grid-template-columns: 1fr;
    }
}

.before-after-container {
    position: relative;
    overflow: hidden;
}
.before-after-container img {
    display: block;
    width: 100%;
    height: auto;
}
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.before-after-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #eab308;
    pointer-events: none;
}
.before-after-range {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 10;
    -webkit-appearance: none;
}
.before-after-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #eab308;
    border: 2px solid #1a365d;
    cursor: pointer;
}
.before-after-range::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #eab308;
    border: 2px solid #1a365d;
    cursor: pointer;
}
