/* ===== CUSTOM STYLES ===== */

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

/* Hero background */
.hero-bg {
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.75) 0%, rgba(13, 33, 25, 0.65) 50%, rgba(27, 67, 50, 0.55) 100%);
}

.hero-overlay {
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(7, 19, 14, 0.3) 100%);
}

/* Primary button */
.btn-primary {
    background: linear-gradient(135deg, #D4A843 0%, #B8862E 100%);
    color: #1B4332;
    transition: all 0.2s ease;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e0b850 0%, #c49535 100%);
    color: #0d2119;
}

/* Secondary button */
.btn-secondary {
    color: #1B4332;
    transition: all 0.2s ease;
}

/* Navigation */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4A843;
    transition: width 0.2s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* Header scroll state */
#site-header.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(27, 67, 50, 0.08);
}
#site-header.scrolled .nav-link {
    color: #1B4332;
}
#site-header.scrolled .nav-link:hover {
    color: #2a5c37;
}

/* Service cards */
.service-card {
    transform: translateY(0);
}

/* Area chips */
.area-chip {
    transition: all 0.2s ease;
}
.area-chip:hover {
    border-color: #D4A843;
    transform: translateX(4px);
}
.area-chip:hover .w-2 {
    background: #B8862E;
}

/* Testimonial cards */
.testimonial-card {
    transition: all 0.3s ease;
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Geometric shapes */
.geo-circle {
    border-radius: 50%;
}
.geo-square {
    border-radius: 4px;
}

/* Mobile nav links */
.mobile-nav-link {
    position: relative;
}

/* Form inputs */
input:focus, select:focus, textarea:focus {
    outline: none;
}

/* Selection color */
::selection {
    background: #D4A843;
    color: #1B4332;
}
</style>
