/* =========================================
   CACTUS FENCE AND CONSTRUCTION - MASTER CSS
   ========================================= */

/* --- 1. GLOBAL DESIGN TOKENS --- */
:root {
    /* Header Tokens */
    --fc-green: #5b6339;
    --fc-orange: #dd6538; 
    --fc-white: #FFFFFF;
    --fc-glass-surface: rgba(255, 255, 255, 0.01);
    --fc-glass-border: rgba(255, 255, 255, 0.08);
    --fc-font-main: 'Stack Sans Headline', sans-serif;
    --fc-font-body: 'Stack Sans Text', sans-serif;
    --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Body/Brand Tokens */
    --brand-green: #5b6339;
    --brand-green-dark: #4a512e;
    --brand-orange: #dd6538;
    --brand-brown: #635042;
    --brand-beige: #ecd8c9;
    --clean-white: #FAFAFA;
    
    /* Footer Tokens */
    --fc-footer-green: #5b6339;
    --fc-footer-orange: #dd6538;
    --fc-orange-dark: #c25831;
    --fc-text-muted: rgba(99, 80, 66, 0.8);
    --fc-bg-grad: linear-gradient(180deg, #ffffff 0%, #ecd8c9 100%);
    --fc-grad-accent: linear-gradient(135deg, #dd6538 0%, #c25831 100%);
}

/* --- 2. BASE SETTINGS & CURSOR --- */
html { scroll-behavior: smooth; cursor: none; }
body { margin: 0; padding: 0; font-family: var(--fc-font-body); overflow-x: hidden; color: var(--brand-brown); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5 { font-family: var(--fc-font-main); }

@media (pointer: fine) { .cursor-dot, .cursor-outline { display: block; } }
@media (pointer: coarse) { .cursor-dot, .cursor-outline { display: none; } html { cursor: auto; } }

.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9999; pointer-events: none;
}
.cursor-dot { width: 8px; height: 8px; background-color: var(--brand-orange); }
.cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(221, 101, 56, 0.5); }

/* --- 3. GLOBAL ANIMATIONS --- */
@keyframes pulse-bloom {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(221, 101, 56, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 20px 0 rgba(221, 101, 56, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(221, 101, 56, 0.4); }
}
@keyframes ripple-wave {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}
@keyframes premium-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes logoEntrance {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes float-icon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}
@keyframes modalFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- 4. TYPOGRAPHY & UTILITIES --- */
.text-gradient { background: linear-gradient(to right, var(--brand-orange), var(--brand-green)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-gradient-navy-orange { background: linear-gradient(to right, var(--brand-green), var(--brand-orange)); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; }
.text-glow { text-shadow: 0 0 25px rgba(255, 255, 255, 1), 0 0 50px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5); }
.btn-pop { box-shadow: 0 10px 30px -10px rgba(91, 99, 57, 0.3), 0 0 15px rgba(255, 255, 255, 0.4); border: 1px solid rgba(255, 255, 255, 0.5); }

/* --- 5. HEADER & NAV STYLES --- */
.fc-marquee { background-color: var(--fc-green); color: rgba(255,255,255,0.7); height: 40px; width: 100%; overflow: hidden; position: relative; display: flex; align-items: center; z-index: 1100; border-bottom: 1px solid rgba(255,255,255,0.05); }
.fc-marquee-track { display: flex; width: fit-content; animation: scrollText 40s linear infinite; }
.fc-marquee-item { display: flex; align-items: center; white-space: nowrap; font-family: var(--fc-font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; padding-right: 60px; }
.fc-marquee-item i { color: var(--fc-orange); margin-right: 12px; font-size: 10px; }

.fc-header { height: 70px; width: 100%; z-index: 1000; position: absolute; top: 40px; left: 0; pointer-events: none; backdrop-filter: blur(1px); -webkit-backdrop-filter: blur(1px); background: transparent; border-bottom: 1px solid var(--fc-glass-border); }
.fc-container { max-width: 1400px; margin: 0 auto; padding: 0 50px; height: 100%; width: 100%; display: flex; justify-content: space-between; align-items: center; box-sizing: border-box; pointer-events: auto; }
.fc-logo img { height: 50px; width: auto; display: block; transition: transform 0.4s var(--ease-out-quart); opacity: 0; animation: logoEntrance 1.4s var(--ease-out-quart) forwards; }
.fc-logo img:hover { transform: translateY(-2px) scale(1.02); }
.fc-actions { display: flex; align-items: center; gap: 40px; }

.fc-burger { width: 50px; height: 50px; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 6px; cursor: pointer; z-index: 1001; position: relative; }
.fc-burger::before { content: ''; position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.1); border-radius: 50%; transform: translate(-50%, -50%) scale(0); opacity: 0; transition: 0s; pointer-events: none; }
.fc-burger:hover::before { animation: ripple-wave 1s infinite cubic-bezier(0, 0, 0.2, 1); }
.burger-line { height: 2px; background: var(--fc-green); border-radius: 4px; transition: all 0.6s var(--ease-out-quart); position: relative; z-index: 2; }
.line-1 { width: 35px; } .line-2 { width: 25px; }
.menu-open .line-1 { transform: rotate(45deg) translate(5px, 6px); width: 35px; background: var(--fc-green); }
.menu-open .line-2 { transform: rotate(-45deg) translate(0px, -1px); width: 35px; background: var(--fc-orange); }

.fc-cta { background: var(--fc-green); color: #fff !important; padding: 10px 24px; border-radius: 50px; font-family: var(--fc-font-main); font-weight: 600; font-size: 13px; text-decoration: none; position: relative; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.fc-cta:hover { background: var(--fc-orange); animation: pulse-bloom 2s infinite ease-in-out; }

.fc-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(30px) saturate(150%); -webkit-backdrop-filter: blur(30px) saturate(150%); z-index: 900; opacity: 0; visibility: hidden; clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: all 0.8s var(--ease-out-quart); display: flex; align-items: center; justify-content: center; }
.menu-open .fc-overlay { opacity: 1; visibility: visible; clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); }
.fc-overlay-grid { display: grid; grid-template-columns: 1.2fr 1fr; width: 100%; max-width: 1400px; padding: 180px 50px 50px 50px; height: 100%; box-sizing: border-box; align-content: center; }

.fc-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.fc-nav-list:hover .fc-nav-link { opacity: 0.25; filter: blur(3px); transform: scale(0.98); }
.fc-nav-item { overflow: hidden; transform: translateY(100%); opacity: 0; transition: transform 0.8s var(--ease-out-quart), opacity 0.8s ease; }
.menu-open .fc-nav-item { transform: translateY(0); opacity: 1; }
.menu-open .fc-nav-item:nth-child(1) { transition-delay: 0.1s; }
.menu-open .fc-nav-item:nth-child(2) { transition-delay: 0.2s; }
.menu-open .fc-nav-item:nth-child(3) { transition-delay: 0.3s; }
.menu-open .fc-nav-item:nth-child(4) { transition-delay: 0.4s; }

.fc-nav-link { display: inline-block; font-family: var(--fc-font-main); font-size: clamp(40px, 5vw, 85px); font-weight: 600; color: var(--fc-green); text-decoration: none; letter-spacing: -2px; line-height: 1.1; transition: all 0.5s var(--ease-out-quart); }
.fc-nav-list .fc-nav-link:hover { opacity: 1; filter: blur(0px); transform: scale(1.02) translateX(30px); color: var(--fc-orange); text-shadow: 0 0 30px rgba(221, 101, 56, 0.4); }

.fc-context-side { padding-left: 100px; display: flex; flex-direction: column; justify-content: center; opacity: 0; transform: translateX(50px); transition: all 0.8s var(--ease-out-quart); }
.menu-open .fc-context-side { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
.context-label { font-family: var(--fc-font-body); font-size: 12px; font-weight: 600; letter-spacing: 2px; color: var(--fc-orange); text-transform: uppercase; margin-bottom: 30px; }
.service-mini-link { font-family: var(--fc-font-main); color: var(--fc-green); text-decoration: none; font-weight: 500; font-size: 22px; display: block; margin-bottom: 15px; transition: 0.3s ease; opacity: 0.6; }
.service-mini-link:hover { opacity: 1; transform: translateX(10px); color: var(--fc-orange); }
.menu-info { margin-top: 60px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 40px; }
.menu-info p { margin: 0 0 5px 0; color: var(--fc-green); font-size: 16px; line-height: 1.6; }
.menu-info a { color: var(--fc-green); font-weight: 700; text-decoration: none; font-size: 18px; }

@media (max-width: 1024px) {
    .fc-overlay-grid { grid-template-columns: 1fr; padding-top: 140px; }
    .fc-context-side { display: none; }
    .fc-header { height: 70px; }
    .fc-container { padding: 0 25px; } 
    .fc-logo img { height: 45px; } 
    .fc-cta { display: none; } 
}
@media (max-width: 600px) {
    .fc-marquee { display: flex; } 
    .fc-header { top: 40px; height: 70px; }
    .fc-overlay-grid { display: flex; flex-direction: column; justify-content: center; gap: 50px; padding: 40px 30px; }
    .fc-nav-list { gap: 5px; } 
    .fc-nav-link { font-size: 42px; line-height: 1.1; letter-spacing: -1px; }
    .fc-context-side { display: flex; flex-direction: column; padding-left: 0; margin-top: 0; }
    .context-label, .service-mini-link { display: none; }
    .menu-info { margin-top: 0; padding-top: 25px; border-top: 2px solid var(--fc-orange); width: 100%; max-width: 250px; }
}

/* --- 6. BODY COMPONENTS (HERO, TRUST BADGE, ETC.) --- */
#mouse-blob { background: radial-gradient(circle, rgba(221, 101, 56, 0.15) 0%, rgba(91, 99, 57, 0.05) 100%); height: 600px; aspect-ratio: 1; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 50%; filter: blur(100px); z-index: 0; pointer-events: none; }
.reveal-mask { --x: 50%; --y: 50%; mask-image: radial-gradient(circle 500px at var(--x) var(--y), transparent 10%, black 50%); -webkit-mask-image: radial-gradient(circle 500px at var(--x) var(--y), transparent 10%, black 50%); transition: mask-position 0s; will-change: mask-image; }
@media (max-width: 768px) { .reveal-mask { mask-image: radial-gradient(circle 450px at var(--x) var(--y), transparent 5%, black 40%); -webkit-mask-image: radial-gradient(circle 450px at var(--x) var(--y), transparent 5%, black 40%); } }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.trust-perspective { perspective: 2000px; }
.premium-glass-card { position: relative; background-color: rgba(255, 255, 255, 0.65); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.6); box-shadow: 0 25px 50px -12px rgba(91, 99, 57, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset; overflow: hidden; }
.glass-tint { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,0.5) 0%, rgba(91, 99, 57, 0.02) 100%); z-index: 0; pointer-events: none; }
.card-flip-init { opacity: 0; transform: rotateX(-30deg) translateY(40px) scale(0.95); transform-origin: center top; transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.card-flip-active { opacity: 1; transform: rotateX(0deg) translateY(0) scale(1); }
.avatar-hidden { opacity: 0; }
.avatar-ring { box-shadow: 0 0 0 4px #FFFFFF; isolation: isolate; }

.reveal-word { display: inline-block; opacity: 0.1; filter: blur(10px); transform: translateY(10px); transition: opacity 0.3s ease-out, filter 0.3s ease-out, transform 0.3s ease-out; will-change: opacity, filter, transform; margin-right: 0.25em; color: var(--brand-green); }
.reveal-word.accent-italic { font-style: italic; font-weight: 500; color: var(--brand-orange); }

/* --- 7. 3D GALLERY SLIDER --- */
.slider-container { position: relative; width: 100%; background: radial-gradient(circle at 50% 50%, #767d51 0%, var(--brand-green) 60%, var(--brand-green-dark) 100%); user-select: none; z-index: 20; }
@media (min-width: 769px) { .slider-container { height: 100vh; overflow: hidden; } }
@media (max-width: 768px) { .slider-container { height: 400vh; } }

.mobile-services-title { display: none; position: absolute; top: 5vh; left: 0; width: 100%; text-align: center; font-family: var(--fc-font-main); font-size: 2.5rem; font-weight: 600; color: rgba(255,255,255,0.9); filter: blur(0.5px); z-index: 25; pointer-events: none; letter-spacing: -0.02em; }
@media (max-width: 768px) { .mobile-services-title { display: block; } }

.fade-overlay { position: absolute; left: 0; width: 100%; height: 15vh; z-index: 20; pointer-events: none; }
.fade-top { top: 0; background: linear-gradient(to bottom, var(--brand-green) 0%, rgba(91, 99, 57, 0) 100%); }
.fade-bottom { bottom: 0; background: linear-gradient(to top, var(--brand-green) 0%, rgba(91, 99, 57, 0) 100%); }

.slider-viewport { width: 100%; height: 100vh; display: flex; justify-content: center; align-items: center; perspective: 1200px; }
@media (max-width: 768px) { .slider-viewport { position: sticky; top: 0; overflow: hidden; perspective: 1000px; } }

.slider-item { position: absolute; top: 50%; left: 50%; --width: clamp(220px, 25vw, 320px); --height: clamp(300px, 35vw, 450px); width: var(--width); height: var(--height); margin-top: calc(var(--height) / -2); margin-left: calc(var(--width) / -2); border-radius: 12px; background-color: #1a1a1a; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6); transform-origin: 50% 150%; will-change: transform, opacity, filter; cursor: grab; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 768px) { .slider-item { --width: 80vw; --height: 55vh; transform-origin: center center; box-shadow: 0 10px 40px -10px rgba(0,0,0,0.8); } }
.slider-item:active { cursor: grabbing; }

.item-content { position: relative; width: 100%; height: 100%; }
.item-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(91, 99, 57, 0.2) 0%, transparent 40%, rgba(91, 99, 57, 0.9) 100%); }
.item-img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; display: block; filter: saturate(0.9); }
.item-info { position: absolute; z-index: 3; bottom: 25px; left: 20px; right: 20px; text-align: left; }
.item-title { color: var(--clean-white); font-family: var(--fc-font-main); font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.1; margin-bottom: 5px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.item-num { position: absolute; z-index: 3; top: 15px; right: 20px; color: var(--brand-orange); font-family: var(--fc-font-body); font-size: 1.2rem; font-weight: 700; }
.item-cat { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.decoration-line { position: absolute; top: 0; left: 50%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent); z-index: 0; transform: translateX(-50%); }
@media (max-width: 768px) { .decoration-line { display: none; } }

/* --- 8. PROCESS TIMELINE --- */
#process-timeline-root { font-family: var(--fc-font-body); overflow: hidden; position: relative; background-color: var(--clean-white); z-index: 10; background-image: radial-gradient(at 0% 0%, rgba(91, 99, 57, 0.03) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(221, 101, 56, 0.05) 0px, transparent 50%); }

.checkbox-container { position: absolute; z-index: 50; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; left: 30px; transform: translateX(-50%); }
@media (min-width: 768px) { .checkbox-container { left: 50%; } }
.checkbox-wrapper { width: 32px; height: 32px; background: var(--brand-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(91, 99, 57, 0.4); transform: scale(0); transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; z-index: 51; }
.checkbox-wrapper.is-checked { transform: scale(1); }
.check-icon { width: 18px; height: 18px; color: white; stroke-width: 3; stroke-dasharray: 24; stroke-dashoffset: 24; transition: stroke-dashoffset 0.4s ease 0.3s; }
.checkbox-wrapper.is-checked .check-icon { stroke-dashoffset: 0; }

.mini-check-particle, .thumb-particle { position: absolute; pointer-events: none; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.mini-check-particle { width: 16px; height: 16px; color: var(--brand-green); z-index: 49; opacity: 0; }
.thumb-particle { width: 20px; height: 20px; color: var(--brand-orange); z-index: 48; opacity: 0; }

.glass-balloon { position: absolute; border-radius: 50%; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); box-shadow: inset -10px -10px 20px rgba(0,0,0,0.1), inset 10px 10px 20px rgba(255,255,255,0.4), 5px 10px 30px rgba(0,0,0,0.15); z-index: 40; opacity: 0; transform-origin: center bottom; }
.glass-balloon::after { content: ''; position: absolute; top: 15%; left: 20%; width: 25%; height: 15%; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%); transform: rotate(-45deg); }
.balloon-string { position: absolute; bottom: -60px; left: 50%; width: 1px; height: 60px; background: rgba(0,0,0,0.3); transform-origin: top center; animation: sway-string 3s ease-in-out infinite alternate; }
@keyframes sway-string { from { transform: rotate(-5deg); } to { transform: rotate(5deg); } }

.glass-panel { background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6)); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.6); box-shadow: 0 10px 40px -10px rgba(91, 99, 57, 0.05); transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); z-index: 10; }
.glass-panel:hover { transform: translateY(-5px); box-shadow: 0 25px 50px -12px rgba(91, 99, 57, 0.12); }

.connector-beam { position: absolute; height: 2px; background: linear-gradient(90deg, var(--brand-orange), rgba(221, 101, 56, 0)); top: 50px; width: 0px; transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1); z-index: 5; }
.connector-mobile { left: 30px; }
@media (min-width: 768px) { .connector-beam { top: 50%; transform: translateY(-50%); } .connector-right { left: 50%; } .connector-left { right: 50%; transform: translateY(-50%) rotate(180deg); } }
.milestone-trigger.active .connector-beam { width: 50px; }
@media (max-width: 768px) { .milestone-trigger.active .connector-beam { width: 40px; } }

.timeline-spine { position: absolute; left: 30px; top: 0; bottom: 0; width: 2px; background: rgba(91, 99, 57, 0.06); transform: translateX(-50%); }
.timeline-fill { position: absolute; left: 30px; top: 0; width: 2px; height: 0%; background: linear-gradient(to bottom, var(--brand-green), var(--brand-orange)); transform: translateX(-50%); z-index: 1; }
.timeline-comet { position: absolute; left: 30px; top: 0%; width: 14px; height: 14px; background: var(--brand-orange); border-radius: 50%; transform: translate(-50%, -50%); z-index: 5; box-shadow: 0 0 0 4px rgba(255,255,255,0.9), 0 0 20px 6px rgba(221, 101, 56, 0.5); }
@media (min-width: 768px) { .timeline-spine, .timeline-fill, .timeline-comet { left: 50%; } .mobile-pl { padding-left: 0; } }
@media (max-width: 768px) { .mobile-pl { padding-left: 5rem; } .neo-icon-wrapper { position: relative; margin-bottom: 20px; left: 0 !important; top: 0 !important; } }

.reveal-item { opacity: 0; transform: translateY(20px); transition: all 0.8s ease-out; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.stagger-child { opacity: 0; transform: translateY(10px); transition: all 0.6s ease-out; }
.reveal-item.is-visible .stagger-child { opacity: 1; transform: translateY(0); }
.reveal-item.is-visible .delay-1 { transition-delay: 0.1s; }
.reveal-item.is-visible .delay-2 { transition-delay: 0.2s; }
.reveal-item.is-visible .delay-3 { transition-delay: 0.3s; }

.neo-icon-wrapper { position: absolute; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 20px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: 8px 8px 24px rgba(91, 99, 57, 0.08); z-index: 10; opacity: 0; transform: scale(0.5) rotate(-15deg); transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
.neo-icon-wrapper.is-visible { opacity: 1; transform: scale(1) rotate(0deg); }
.float-1 { animation: float-icon 5s ease-in-out infinite; }
.float-2 { animation: float-icon 4s ease-in-out infinite 1s; }

/* --- 9. MODAL / FORMSPREE --- */
.fade-enter { opacity: 0; transform: translateY(10px); }
.fade-enter-active { animation: modalFadeIn 0.4s ease-out forwards; }
.hidden-step { display: none !important; }
.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-track { background: var(--brand-beige); }
.modal-body::-webkit-scrollbar-thumb { background: var(--brand-brown); border-radius: 4px; }
.check-anim { animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; background: var(--brand-orange); cursor: pointer; height: 1.25rem; width: 1.25rem; border-radius: 50%; margin-top: -0.25rem; }
#modalOverlay { z-index: 10000 !important; }

/* --- 10. FOOTER & FLOATING ACTION BUTTON --- */
.fc-footer { font-family: var(--fc-font-body); color: var(--fc-footer-green); margin-top: 0px; position: relative; z-index: 50; }
.fc-footer .font-serif { font-family: var(--fc-font-main) !important; }

.fc-curve-container { background: none; border-top: 1px solid rgba(91, 99, 57, 0.05); border-top-left-radius: 3.5rem; border-top-right-radius: 3.5rem; padding: 5rem 2rem 1.5rem; width: 100%; box-shadow: 0 -10px 40px rgba(0,0,0,0.03); }
.fc-wrap { max-width: 1200px; margin: 0 auto; }
.fc-grid { display: grid; gap: 4rem; grid-template-columns: 1.5fr 1fr 1.2fr; margin-bottom: 3rem; }

@media (max-width: 1024px) {
  .fc-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .fc-col-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .fc-grid { grid-template-columns: 1fr; text-align: center; }
  .fc-col-brand { grid-column: span 1; }
  .fc-curve-container { padding-top: 3rem; border-top-left-radius: 2.5rem; border-top-right-radius: 2.5rem;}
  .fc-social { justify-content: center; margin-top: 1.5rem; }
  .fc-mobile-center { text-align: center !important; display: block; margin-left: auto; margin-right: auto; }
  .fc-link { margin-left: auto; margin-right: auto; }
  .fc-contact-link, .fc-cta-link { justify-content: center; }
}

.fc-heading { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; color: var(--fc-footer-orange); }
.fc-link { display: block; color: var(--fc-footer-green); text-decoration: none; margin-bottom: 0.85rem; font-size: 0.95rem; font-weight: 500; transition: transform 0.2s ease, color 0.2s ease; width: fit-content; }
.fc-link:hover { color: var(--fc-footer-orange); transform: translateX(5px); }
.fc-text { color: var(--fc-text-muted); line-height: 1.6; font-size: 0.95rem; margin-bottom: 1rem; max-width: 38ch; }

.fc-contact-link { display: flex; align-items: center; gap: 10px; color: var(--fc-footer-green); font-weight: 700; font-size: 1.1rem; text-decoration: none; margin-bottom: 0.75rem; transition: color 0.2s ease; }
.fc-contact-link:hover { color: var(--fc-footer-orange); }
.fc-cta-link { color: var(--fc-footer-orange); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; text-decoration: none; border-bottom: 2px solid transparent; transition: border-color 0.2s; display: inline-block; margin-bottom: 1.5rem; }
.fc-cta-link:hover { border-bottom-color: var(--fc-footer-orange); }

.fc-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.fc-social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--fc-footer-green); border: 1px solid rgba(91, 99, 57, 0.1); transition: all 0.2s; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.fc-social-link:hover { background: var(--fc-footer-orange); color: #fff; border-color: var(--fc-footer-orange); transform: translateY(-2px); }
.fc-icon-svg { width: 18px; height: 18px; display: block; }

.fc-bottom { border-top: 1px solid rgba(91, 99, 57, 0.08); padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.85rem; color: var(--fc-text-muted); }
.fc-bottom-links { display: flex; gap: 1.5rem; }
.fc-bottom-links a { color: var(--fc-text-muted); text-decoration: none; transition: color 0.2s; }
.fc-bottom-links a:hover { color: var(--fc-footer-orange); }

@media(max-width: 640px) {
  .fc-bottom { justify-content: center; text-align: center; flex-direction: column-reverse; gap: 1rem; }
}

.fc-fab-container { position: fixed; bottom: 25px; right: 1.5rem; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; font-family: var(--fc-font-body); }
.fc-fab-trigger { width: 60px; height: 60px; background: var(--fc-grad-accent); border: none; border-radius: 50%; color: #fff; cursor: pointer; box-shadow: 0 8px 25px rgba(221, 101, 56, 0.4); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; position: relative; animation: fc-pulse 3s infinite; }
.fc-fab-trigger:hover { transform: scale(1.05); }
.fc-fab-trigger svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; position: absolute; transition: opacity 0.3s, transform 0.3s; }

.fc-icon-close { opacity: 0; transform: rotate(-45deg); }
.fc-fab-container.is-open .fc-icon-main { opacity: 0; transform: rotate(45deg); }
.fc-fab-container.is-open .fc-icon-close { opacity: 1; transform: rotate(0deg); }
.fc-fab-container.is-open .fc-fab-trigger { animation: none; background: #fff; color: var(--fc-footer-orange); }

@keyframes fc-pulse { 
    0% { box-shadow: 0 0 0 0 rgba(221, 101, 56, 0.7); } 
    70% { box-shadow: 0 0 0 15px rgba(221, 101, 56, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(221, 101, 56, 0); } 
}

.fc-fab-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.9); transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1); transform-origin: bottom right; }
.fc-fab-container.is-open .fc-fab-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.fc-fab-menu li { display: flex; align-items: center; gap: 12px; }

.fc-fab-label { background: var(--fc-footer-green); color: #fff; padding: 6px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; box-shadow: 0 4px 12px rgba(0,0,0,0.15); opacity: 0; transform: translateX(-10px); transition: 0.2s 0.1s; pointer-events: none; white-space: nowrap; }
.fc-fab-container.is-open .fc-fab-label { opacity: 1; transform: translateX(0); pointer-events: auto; }

.fc-fab-mini { width: 45px; height: 45px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--fc-footer-green); text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: 0.2s; }
.fc-fab-mini:hover { background: var(--fc-footer-orange); color: #fff; transform: scale(1.1); }
.fc-fab-icon { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 640px) { 
  .fc-fab-container { bottom: 20px; right: 1rem; } 
}

/* --- SERVICES PAGE ADDITIONS --- */
.reveal-up { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); 
}
.reveal-up.active { 
    opacity: 1; 
    transform: translateY(0); 
}
.service-card:hover .service-bg { 
    transform: scale(1.05); 
}

/* Elegant fade-in animation for scroll */
    .reveal-up {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-up.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Elegant Light-up Glow Effect for numbers */
    .step-num {
        color: rgba(255, 255, 255, 0.1);
        transition: color 0.8s ease-out, text-shadow 0.8s ease-out;
    }
    .reveal-up.active .step-num {
        color: var(--brand-orange); 
        text-shadow: 0 0 25px rgba(221, 101, 56, 0.6), 0 0 40px rgba(221, 101, 56, 0.3);
    }