/* === BASE / RESET === */
* {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    word-wrap: break-word;
}

/* === SURFACES (Glassmorphism) === */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 143, 47, 0.1);
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

.paw-print {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.floating-leaf {
    position: absolute;
    opacity: 0.15;
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

/* === COMPONENTS === */

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #0A8F2F 0%, #076B23 100%);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(10, 143, 47, 0.3);
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 143, 47, 0.4);
}

.btn-outline {
    border: 2px solid #0A8F2F;
    color: #0A8F2F;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    background: #0A8F2F;
    color: white;
    transform: translateY(-3px);
}

/* Card hover */
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 143, 47, 0.15);
}

/* Backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #EAF7EA 0%, #FFFFFF 50%, #EAF7EA 100%);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #0A8F2F;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #076B23;
}

/* Image hover zoom */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

.img-zoom:hover img {
    transform: scale(1.1);
}

/* Accordion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Founder image */
.founder-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 143, 47, 0.2);
}

.founder-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonial card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 143, 47, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 143, 47, 0.15);
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

/* Hero avatars */
.hero-avatars {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.avatar-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}

.avatar-stack img:not(:first-child) {
    margin-left: -0.75rem;
}

.avatar-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
    color: #fbbf24;
    font-size: 0.75rem;
}

.avatar-text {
    font-size: 0.75rem;
    color: #4b5563;
}

/* Mobile menu */
.mobile-menu-btn {
    display: flex;
}

/* Image container */
.img-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* === LAYOUT UTILITIES === */
.container-responsive {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding: 3rem 1rem;
}

.text-hero {
    font-size: 1.875rem;
    line-height: 1.2;
}

/* === MEDIA QUERIES === */

/* sm: 640px */
@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .avatar-stack img {
        width: 3rem;
        height: 3rem;
    }

    .stars {
        font-size: 0.875rem;
    }

    .avatar-text {
        font-size: 0.875rem;
    }

    .container-responsive {
        max-width: 640px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .text-hero {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 4rem 1.5rem;
    }
}

/* md: 768px */
@media (min-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }

    .container-responsive {
        max-width: 768px;
    }

    .text-hero {
        font-size: 3rem;
    }
}

/* lg: 1024px */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .mobile-menu-btn {
        display: none;
    }

    .container-responsive {
        max-width: 1024px;
    }

    .text-hero {
        font-size: 3.75rem;
    }

    .section-padding {
        padding: 5rem 2rem;
    }
}

/* xl: 1280px */
@media (min-width: 1280px) {
    .container-responsive {
        max-width: 1280px;
    }
}
