* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 90px; /* Account for floating navbar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #666;
}

.btn-shop {
    background-color: #1a1a1a;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-shop:hover {
    background-color: #333;
    transform: translateY(-1px);
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 95vh; /* Changed from fixed height to min-height */
    max-height: 100vh; /* Prevent it from being too tall */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: -90px; /* Compensate for body padding-top */
    padding-top: 90px; /* Add padding back for content positioning */
    padding-bottom: 60px; /* Add bottom padding to prevent overlap */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-background {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #1a1a1a8e;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative; /* Ensure proper stacking */
    z-index: 2; /* Higher than hero */
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-left: 4px solid #1a1a1a;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
}

.rating {
    color: #1a1a1a;
    font-weight: 600;
}

.testimonials-footnote {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 20px;
}

.testimonials-footnote a {
    color: #1a1a1a;
    text-decoration: none;
}

.testimonials-footnote a:hover {
    text-decoration: underline;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 2;
}

.trust h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
}

.trust-icon {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.trust-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
    position: relative;
    z-index: 2;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.contact h4 {
    text-decoration: underline;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    justify-content: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #1a1a1a;
    color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-method h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.contact-method p {
    color: #adb5bd;
    margin: 0;
}

.contact-method a {
    color: white;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer .logo-icon {
    background-color: white;
    color: #1a1a1a;
}

.footer .logo-text {
    color: white;
}

.footer p {
    color: #adb5bd;
    margin: 0;
}

.org-number {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }

    .hero {
        margin-top: 0;
        padding-top: 120px; /* Space for navbar */
        padding-bottom: 40px;
        min-height: 70vh; /* Smaller min-height on mobile */
        max-height: none; /* Remove max-height restriction */
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 12px;
        z-index: 2000;
    }

    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: calc(100% - 20px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
        border-radius: 12px;
        margin: 0 10px;
        z-index: 1999;
    }

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

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .hero-text-background {
        padding: 25px 20px;
        margin-bottom: 0;
        max-width: 350px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

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

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin-bottom: 0;
    }

    .stat {
        padding: 15px 20px;
        margin: 0;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 3px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 280px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

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

    .contact-methods {
        justify-content: center;
    }

    .contact-method {
        text-align: left;
        max-width: 100%;
    }
}

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

    .hero {
        padding-top: 100px;
        padding-bottom: 30px;
        min-height: 60vh; /* Even smaller on very small screens */
    }

    .hero-content {
        padding: 0 15px;
        gap: 25px;
    }

    .hero-text-background {
        padding: 20px 15px;
        max-width: 320px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

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

    .hero-stats {
        max-width: 250px;
        gap: 12px;
    }

    .stat {
        padding: 12px 15px;
    }

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

    .hero-buttons {
        max-width: 250px;
        gap: 12px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .services,
    .testimonials,
    .trust,
    .contact {
        padding: 60px 0;
    }

    .service-card,
    .testimonial-card,
    .trust-item {
        padding: 25px;
    }
}

/* Media query for very short screens */
@media (max-height: 600px) {
    .hero {
        min-height: 500px; /* Fixed minimum height for very short screens */
        padding-bottom: 80px; /* More bottom padding */
    }
    
    .hero-content h1 {
        font-size: 2.5rem; /* Smaller title on short screens */
    }
    
    .hero-stats {
        gap: 30px; /* Tighter spacing */
    }
    
    .stat {
        padding: 15px; /* Smaller stat boxes */
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.testimonial-card,
.trust-item {
    animation: fadeInUp 0.6s ease forwards;
}