/* Responsive */
/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: hsl(var(--foreground));
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    color: hsl(var(--accent));
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    height: 100vh;
    /* left: 0; */
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-elegant);
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
    animation: slideInRight 0.3s ease-out;
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem 1rem;
}

.mobile-menu li {
    margin-bottom: 1rem;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: hsl(var(--foreground));
    font-weight: 500;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.mobile-menu a:hover {
    background: hsl(var(--muted));
    color: hsl(var(--accent));
}

.mobile-menu .cta-button {
    margin: 1rem;
    display: block;
    text-align: center;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .logo img {
        width: 50%;
    }

    .navbar .cta-button {
        display: none;
    }

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

    .hero-content {
        margin-top: 10rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .edge-points {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }

    .edge-card {
        padding: .5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: .5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .hero-inner-page-overlay {
        padding: 0px 0px;
    }

    .hero-inner-page-overlay .hero-content {
        padding: 0px 0rem;
    }

    .hero-inner-page p {
        margin-bottom: 40px;
    }

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

    .usp-card {
        padding: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .about-cta {
        flex-direction: column;
    }

    .masonry-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .rotating-cube-container {
        top: 85%;
    }

    .rotating-cube {
        width: 80px;
        height: 80px;
    }

    .cube-face {
        width: 80px;
        height: 80px;
        font-size: 0.6rem;
    }

    .cube-face.front { transform: rotateY(0deg) translateZ(40px); }
    .cube-face.back { transform: rotateY(180deg) translateZ(40px); }
    .cube-face.right { transform: rotateY(90deg) translateZ(40px); }
    .cube-face.left { transform: rotateY(-90deg) translateZ(40px); }
    .cube-face.top { transform: rotateX(90deg) translateZ(40px); }
    .cube-face.bottom { transform: rotateX(-90deg) translateZ(40px); }


    .rotating-cube-container {
        transform: none;
        text-align: center;
    }

    .carousel-content {
        padding: 2rem;
    }

    .carousel-content h3 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .story-grid {
        display: block;
    }

    .story-content h2 {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .modal-content {
        margin: 1rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding: 2rem;
    }

    .featured-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
    .contact-grid {
		display: block;
	}

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
	.contact-info {
		margin-bottom: 40px;
	}
	.contact-icon {
		width: auto;
		height: auto;
		background: none;
	}
}