/*
   Acacio Fumigation — Professional Corporate Enhancements
   Add this AFTER modern.css: <link href="css/professional.css" rel="stylesheet">
*/

:root {
    --primary-deep: #005c34;
    --gold-accent: #c9a227;
    --corporate-shadow: 0 10px 40px rgba(0, 30, 15, 0.10);
    --corporate-shadow-hover: 0 20px 50px rgba(0, 30, 15, 0.16);
}

/* Sticky nav — subtle shadow once page scrolls (JS toggles .scrolled) */
.navbar {
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Trust badge strip — add this markup right under the hero if you want it */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 22px 0;
}
.trust-strip .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.trust-strip .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.trust-strip .trust-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Refined hero — deeper gradient overlay instead of flat tint, more premium feel */
.hero {
    position: relative;
    background: linear-gradient(135deg, #052e20 0%, #0B6E4F 100%);
}
.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 30, 15, 0.82) 0%,
        rgba(0, 92, 52, 0.55) 55%,
        rgba(0, 30, 15, 0.75) 100%
    ) !important;
}
.hero h1 {
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero p {
    font-size: 1.05rem;
    max-width: 640px;
}

/* Elevated, professional service cards */
.service-card {
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--corporate-shadow);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
    border-radius: 12px;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--corporate-shadow-hover);
}
.service-card i {
    color: var(--primary);
}
.service-card h3, .service-card h4 {
    font-weight: 600;
}

/* Section headings — more corporate hierarchy */
.section-padding h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}
.text-center h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 18px auto 0;
    border-radius: 2px;
}

/* Stats section — bolder, more confident numbers */
.section-padding h2[style*="3.5rem"] {
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,129,72,0.15);
}

/* Testimonial cards — subtle quote mark, refined shadow */
.service-card[style*="italic"],
.service-card[style*="border-radius: 15px"] {
    box-shadow: var(--corporate-shadow);
    position: relative;
}

/* Booking section — refined dark panel with subtle texture */
#booking {
    background: linear-gradient(160deg, var(--dark) 0%, #0a1f14 100%) !important;
}
#booking form input,
#booking form select,
#booking form textarea {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
#booking form input:focus,
#booking form select:focus,
#booking form textarea:focus {
    outline: none;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(0,129,72,0.12);
}

/* Buttons — more premium weight and hover motion */
.btn-primary {
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(0,129,72,0.25);
}.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,129,72,0.32);
}
.btn-secondary {
    font-weight: 600;
    border: 1.5px solid var(--primary);
}

/* Footer — slightly richer background + spacing */
.footer {
    background: linear-gradient(160deg, var(--dark) 0%, #071510 100%);
}
.footer-col h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 16px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--primary);
}

/* Card images — subtle zoom on hover for a premium feel */
.card-img-wrap {
    overflow: hidden;
}
.card-img-wrap img {
    transition: transform 0.5s ease;
}
.service-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

/* Bigger, more confident logo in the navbar */
.logo img {
    height: 90px !important;
}
@media (max-width: 768px) {
    .logo img {
        height: 55px !important;
    }
}

/* Footer must sit above the fixed service-nav-sidebar so it doesn't get
   visually overlapped when scrolling to the bottom of a service page. */
.footer {
    position: relative;
    z-index: 200;
}

/* Solid, jank-free FIXED navbar — sticky positioning was conflicting with
   the hero's entrance animation transform, causing it to disappear on
   scroll in some browsers. Fixed positioning is bulletproof. */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    will-change: auto;
}

/* Push all page content down so it doesn't hide behind the now-fixed navbar */
body {
    padding-top: 108px;
}
@media (max-width: 768px) {
    body {
        padding-top: 88px;
    }
}

/* Re-align the service-nav-sidebar to sit just below the new fixed navbar height */
@media (min-width: 992px) {
    .service-nav-sidebar {
        top: 118px !important;
        max-height: calc(100vh - 138px) !important;
    }
}

/* Slider section: less space above (right under navbar), more space below */
#sliderSection {
    padding-top: 24px !important;
    padding-bottom: 100px !important;
}
