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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Floating animation for hero stat cards */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.floating-card {
    animation: float 4s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: -1.3s;
}

.floating-card:nth-child(3) {
    animation-delay: -2.6s;
}

/* Nav scroll state */
nav.scrolled {
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(42, 31, 24, 0.08);
}

/* Mobile menu animation */
#mobileMenu.open {
    transform: translateX(0);
}

#mobileMenu:not(.open) {
    transform: translateX(100%);
}

/* Hamburger animation */
#mobileMenu.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#mobileMenu.open .bar:nth-child(2) {
    opacity: 0;
}

#mobileMenu.open .bar:nth-child(3) {
    width: 24px;
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Service card hover */
.service-card {
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: rgba(223, 92, 18, 0.1);
}

/* Review card hover */
.review-card {
    border: 1px solid rgba(42, 31, 24, 0.06);
}

/* Section reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Geometric accent shapes */
.geo-diamond {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #df5c12;
    transform: rotate(45deg);
    opacity: 0.15;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fdf8ea;
}

::-webkit-scrollbar-thumb {
    background: #e87930;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c44508;
}

/* Selection */
::selection {
    background: #f9e0c4;
    color: #682610;
}
