/* Mobile Styles */
@media screen and (max-width: 768px) {
    .hero {
        margin: 0.5rem;
        border-radius: 8px;
    }

    .navbar {
        border-radius: 8px 8px 0 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(225, 234, 231, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(225, 234, 231, 0.3);
        width: calc(100% - 1rem);
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        gap: 1.5rem;
        border-radius: 0 0 8px 8px;
        margin-top: 0.5rem;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        left: 0.5rem;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .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);
    }

    /* Ensure menu items stack properly */
    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        width: 100%;
    }

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

    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-subtext {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .floating-icons {
        display: none;
    }
}

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .nav-cta {
        display: none;
    }

    .hero-headline {
        font-size: 2.75rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }
}

/* Large Desktop Styles */
@media screen and (min-width: 1200px) {
    .hero-headline {
        font-size: 4rem;
    }

    .hero-subtext {
        font-size: 1.25rem;
    }

    .icon-circle {
        width: 90px;
        height: 90px;
    }
}
