/* ── Base & Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }

/* ── Geometric Hero Shapes ── */
.geo-shape {
    position: absolute;
    pointer-events: none;
}

.geo-circle-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(196,98,58,0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -80px; left: -120px;
    animation: float-slow 8s ease-in-out infinite;
}

.geo-circle-2 {
    width: 260px; height: 260px;
    background: rgba(212,165,112,0.12);
    border-radius: 50%;
    top: 200px; right: 5%;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.geo-circle-3 {
    width: 140px; height: 140px;
    background: rgba(196,98,58,0.1);
    border-radius: 50%;
    bottom: 15%; left: 8%;
    animation: float-slow 6s ease-in-out infinite;
}

.geo-rect-1 {
    width: 100px; height: 100px;
    background: rgba(212,165,112,0.15);
    border-radius: 20px;
    top: 30%; right: 2%;
    transform: rotate(45deg);
    animation: spin-slow 20s linear infinite;
}

.geo-triangle-1 {
    width: 0; height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(196,98,58,0.07);
    top: 60%; left: 3%;
    animation: float-slow 7s ease-in-out infinite;
}

.geo-ring-1 {
    width: 180px; height: 180px;
    border: 3px solid rgba(196,98,58,0.08);
    border-radius: 50%;
    top: 10%; right: 15%;
    animation: spin-slow 25s linear infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ── Service Cards ── */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #C4623A, #D4A570);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

/* ── Gallery ── */
.gallery-item {
    cursor: pointer;
}

/* ── Testimonial Cards ── */
.testimonial-card {
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

/* ── Mobile Menu ── */
#mobile-menu {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* ── Utility ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
