/* ===== Base & Typography ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
}

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

.shape-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -150px;
    border-radius: 50%;
}

.shape-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
    bottom: 50px;
    left: -100px;
    border-radius: 50%;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(52, 211, 153, 0.08);
    top: 25%;
    right: 10%;
    transform: rotate(15deg);
}

.shape-stripe {
    width: 200px;
    height: 400px;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(52, 211, 153, 0.04) 20px,
        rgba(52, 211, 153, 0.04) 40px
    );
    bottom: 10%;
    right: 5%;
    transform: rotate(-15deg);
}

.shape-dots {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(52, 211, 153, 0.2) 2px, transparent 2px);
    background-size: 16px 16px;
    top: 40%;
    left: 5%;
    border-radius: 50%;
}

/* ===== Service Cards ===== */
.service-card {
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

.gallery-item img {
    transition: transform 0.7s ease;
}

/* ===== Scroll Animations ===== */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .scroll-reveal {
        opacity: 0;
        transform: translateY(40px);
    }

    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ===== Navbar scroll effect ===== */
nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ===== Utility ===== */
::selection {
    background: rgba(52, 211, 153, 0.3);
    color: #0A1628;
}

/* ===== Smooth focus visible ===== */
:focus-visible {
    outline: 2px solid #34D399;
    outline-offset: 2px;
}
