/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Agriculture Color Palette */
    --primary-green: #2d5016;
    --secondary-green: #4a7c2d;
    --light-green: #6b9e4a;
    --accent-green: #8fbc8f;
    --earth-brown: #8b5a3c;
    --light-brown: #a67c52;
    --beige: #c4a484;
    --cream: #d4b08a;
    --off-white: #f5f0e8;
    --dark-text: #2c2c2c;
    --light-text: #666666;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Shadows */
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 15px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 12px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--off-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(74, 124, 45, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 124, 45, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(75, 124, 45, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo i {
    margin-right: 0.5rem;
    color: var(--secondary-green);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--accent-green);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.9;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, transparent 70%);
    backdrop-filter: blur(1px);
}

.hero-illustration i {
    position: absolute;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-illustration i:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.hero-illustration i:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.hero-illustration i:nth-child(3) {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 1;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-text);
    font-weight: 400;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.stats-counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(107, 158, 74, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(75, 124, 45, 0.1);
}

.counter-item {
    text-align: center;
    padding: 1rem;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.counter-label {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.mission-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.mission-point:hover {
    transform: translateY(-5px);
}

.mission-point i {
    font-size: 2.5rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.mission-point span {
    font-weight: 600;
    color: var(--primary-green);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-green), var(--accent-green));
    border-radius: 15px;
    color: white;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 124, 45, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: var(--section-padding);
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    justify-items: center;
    position: relative;
}

.team-member {
    background: var(--off-white);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(75, 124, 45, 0.1);
    max-width: 200px;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: slideInUp 0.8s ease-out forwards;
}

.team-member:hover {
    animation-play-state: paused;
    transform: translateY(-15px) scale(1.08) rotate(2deg);
    box-shadow: 0 25px 50px rgba(45, 80, 22, 0.2);
    border-color: var(--secondary-green);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(107, 158, 74, 0.05));
}

.team-member:hover .member-photo {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(45, 80, 22, 0.3);
}

.team-member:hover h3 {
    color: var(--primary-green);
    transform: scale(1.05);
}

.team-member:nth-child(1) {
    animation-delay: 0.1s;
    animation: slideInUp 0.8s ease-out forwards, gentleFloat 6s ease-in-out 1s infinite;
}
.team-member:nth-child(2) {
    animation-delay: 0.2s;
    animation: slideInUp 0.8s ease-out forwards, gentleFloat 6s ease-in-out 1.5s infinite;
}
.team-member:nth-child(3) {
    animation-delay: 0.3s;
    animation: slideInUp 0.8s ease-out forwards, gentleFloat 6s ease-in-out 2s infinite;
}
.team-member:nth-child(4) {
    animation-delay: 0.4s;
    animation: slideInUp 0.8s ease-out forwards, gentleFloat 6s ease-in-out 2.5s infinite;
}
.team-member:nth-child(5) {
    animation-delay: 0.5s;
    animation: slideInUp 0.8s ease-out forwards, gentleFloat 6s ease-in-out 3s infinite;
}


.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.member-role {
    font-size: 0.85rem;
    color: var(--secondary-green);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.member-country {
    font-size: 0.8rem;
    color: var(--light-text);
    font-weight: 400;
}

.allen-card h3 {
    margin-bottom: 0.8rem;
}


/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--earth-brown), var(--light-brown));
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.contact-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.features-list i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.contact-actions {
    text-align: center;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    color: var(--dark-text);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.app-btn i {
    font-size: 2rem;
    color: var(--secondary-green);
}

.app-btn span {
    font-size: 0.9rem;
    line-height: 1.2;
}

.app-btn strong {
    font-weight: 600;
}

.contact-note {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--cream);
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Touch-friendly interactions for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .app-btn:hover,
    .service-card:hover,
    .team-member:hover,
    .mission-point:hover,
    .social-link:hover {
        transform: none;
    }

    .btn:active,
    .app-btn:active {
        transform: scale(0.98);
    }

    .service-card:active,
    .team-member:active,
    .mission-point:active {
        transform: scale(0.98);
    }

    .nav-link:active {
        color: var(--secondary-green);
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

.app-coming-soon {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
}

.launching-soon {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Responsive Design */

/* Tablet and Small Desktop */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hero-container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        padding: 130px 0 100px;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .btn {
        min-width: 200px;
        padding: 1rem 2rem;
    }

    .mission-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-point {
        padding: 1.5rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .stat {
        padding: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .app-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .app-btn {
        min-width: 200px;
        padding: 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .app-coming-soon {
        font-size: 1rem;
    }

    .launching-soon {
        font-size: 1.1rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 110px 0 70px;
        text-align: center;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .btn {
        min-width: 180px;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* About Section Mobile */
    .about-content {
        gap: 2rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .mission-points {
        gap: 1rem;
    }

    .mission-point {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .mission-point i {
        font-size: 2rem;
    }

    .about-stats {
        gap: 1rem;
    }

    .stat {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Services Section Mobile */
    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    /* Team Section Mobile */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .team-member {
        padding: 1.2rem 0.8rem;
        border-radius: 12px;
    }

    .member-photo {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }

    .team-member h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .member-role {
        font-size: 0.75rem;
    }

    .member-country {
        font-size: 0.7rem;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }

    .contact-text h3 {
        font-size: 1.5rem;
    }

    .contact-text p {
        font-size: 0.95rem;
    }

    .features-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .app-buttons {
        gap: 1rem;
    }

    .app-btn {
        min-width: 160px;
        padding: 0.9rem 1rem;
    }

    .app-btn span {
        font-size: 0.8rem;
    }

    .contact-note {
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-logo h3 {
        font-size: 1.3rem;
    }

    .footer-logo p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .app-coming-soon {
        font-size: 0.9rem;
    }

    .launching-soon {
        font-size: 1rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .btn {
        min-width: 160px;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .app-btn {
        min-width: 140px;
        padding: 0.8rem 0.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.service-card,
.team-member,
.mission-point {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }

.team-member:nth-child(2) { animation-delay: 0.1s; }
.team-member:nth-child(3) { animation-delay: 0.2s; }
.team-member:nth-child(4) { animation-delay: 0.3s; }
.team-member:nth-child(5) { animation-delay: 0.4s; }

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}
