/* Hero Section */
.hero {
    background: linear-gradient(180deg, #F8F9FA 0%, #E9ECEF 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(45, 90, 160, 0.03) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
}

.btn-hero-primary:hover {
    background: #1E4080;
    box-shadow: 0 8px 20px rgba(45, 90, 160, 0.3);
}

.btn-hero-secondary {
    background: var(--white);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
    background: var(--cream);
    border-color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    font-feature-settings: 'tnum';
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-icons {
    position: relative;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(45, 90, 160, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    color: var(--primary);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
    background: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
}

.floating-icon:nth-child(1) { top: 15%; left: 25%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 25%; right: 15%; animation-delay: 1.3s; }
.floating-icon:nth-child(3) { top: 50%; left: 8%; animation-delay: 2.6s; }
.floating-icon:nth-child(4) { top: 50%; right: 25%; animation-delay: 3.9s; }
.floating-icon:nth-child(5) { bottom: 25%; left: 30%; animation-delay: 5.2s; }
.floating-icon:nth-child(6) { bottom: 15%; right: 20%; animation-delay: 6.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(2deg); }
    66% { transform: translateY(-4px) rotate(-1deg); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gray-light);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.feature-icon.lost {
    background: var(--danger);
}

.feature-icon.found {
    background: var(--success);
}

.feature-icon.search {
    background: var(--primary);
}

.feature-icon.connect {
    background: var(--secondary);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 14px;
}

/* Recent Items Section */
.recent-items {
    padding: 60px 0;
    background: var(--bg-primary);
}

.recent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.btn-view-all {
    background: var(--secondary);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-view-all:hover {
    background: #D35400;
    transform: translateY(-1px);
}

/* Call to Action Section */
.cta {
    background: var(--primary);
    padding: 64px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.1s ease;
    box-shadow: var(--shadow-medium);
}

.btn-cta:hover {
    transform: translateY(-1px);
    color: white;
    box-shadow: 0 8px 20px rgba(209, 115, 115, 0.2);
}

/* Footer */
.footer {
    background: var(--gray-dark);
    color: white;
    padding: 48px 0 16px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.footer-brand .logo i {
    font-size: 20px;
    color: var(--secondary);
}

.footer-brand p {
    color: #95A5A6;
    line-height: 1.5;
    font-size: 14px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #95A5A6;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #566573;
    padding-top: 16px;
    text-align: center;
    color: #95A5A6;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 12px 0;
        font-size: 15px;
    }

    .hero-stats {
        justify-content: center;
        gap: 24px;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 24px;
    }

    .floating-icons {
        width: 280px;
        height: 280px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .features {
        padding: 48px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .recent-items {
        padding: 40px 0;
    }

    .recent-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .btn-view-all {
        width: 100%;
    }

    .cta {
        padding: 48px 0;
    }

    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .btn-cta {
        width: 100%;
        padding: 12px 0;
    }

    .footer {
        padding: 32px 0 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 16px;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-section ul li {
        margin-bottom: 6px;
    }

    .footer-bottom {
        padding-top: 6px;
        font-size: 0.95rem;
    }
}
    

