/* ===== TABLET & SMALL LAPTOP ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-image .card-3d {
        max-width: 320px;
        margin: 0 auto;
        transform: none;
    }
    .hero-image .card-3d:hover {
        transform: none;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-preview {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .about-preview .reveal:last-child {
        text-align: left;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        padding: 40px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.2);
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-badges {
        gap: 16px;
    }
    .hero-badge {
        font-size: 0.85rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
    section {
        padding: 60px 0;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

    .navbar {
        padding: 12px 0;
    }
    .nav-logo {
        font-size: 1.3rem;
    }

    .page-hero h1 {
        font-size: 2.5rem !important;
    }
    .about-preview .reveal:last-child {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-badge .icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .btn-primary, .btn-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    .hero-image .card-3d {
        padding: 24px;
    }
    .footer-grid {
        gap: 20px;
    }
    .footer-brand h3 {
        font-size: 1.3rem;
    }
    .about-preview .reveal:last-child {
        grid-template-columns: 1fr;
    }
    .property-card .price-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    .property-card .action-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ===== VERY SMALL DEVICES ===== */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .container {
        padding: 0 12px;
    }
}



















