/* Non-Critical CSS - Load Deferred */
/* Services Section */
.services {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 78, 0, 0.02));
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #1d1d1b, #ff4e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff4e00, transparent);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 78, 0, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff4e00, transparent);
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 78, 0, 0.05);
    border-color: rgba(255, 78, 0, 0.4);
    box-shadow: 0 25px 80px rgba(255, 78, 0, 0.15);
}

.service-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 78, 0, 0.4));
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1d1d1b;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Properties Section */
.properties {
    padding: 8rem 0;
    background: linear-gradient(180deg, 
        rgba(255, 78, 0, 0.02), 
        rgba(248, 250, 252, 0.95), 
        rgba(215, 210, 205, 0.03));
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.property-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 78, 0, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(255, 78, 0, 0.2);
    border-color: rgba(255, 78, 0, 0.4);
}

.property-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-image {
    transform: scale(1.05);
}

.property-content {
    padding: 2.5rem;
}

.property-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1d1d1b;
}

.property-location {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-price {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 78, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ff4e00;
    font-weight: 600;
}

.property-cta {
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.property-cta:hover {
    background: linear-gradient(135deg, #ff6b2b, #ff4e00);
}

.placeholder-card {
    border: 2px dashed rgba(255, 78, 0, 0.3);
    opacity: 0.7;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.placeholder-icon {
    font-size: 4rem;
    color: #ff4e00;
    opacity: 0.5;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 78, 0, 0.02));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1d1d1b, #ff4e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 78, 0, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 78, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff4e00;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.95), 
        rgba(255, 78, 0, 0.03), 
        rgba(215, 210, 205, 0.02));
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.whatsapp-button, .phone-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.whatsapp-button {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.9), rgba(37, 211, 102, 0.7));
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
}

.phone-button {
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 78, 0, 0.3);
}

.phone-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 78, 0, 0.5);
}

.contact-info {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-info i {
    color: #ff4e00;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.95), 
        rgba(255, 78, 0, 0.02), 
        rgba(215, 210, 205, 0.03));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 78, 0, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff4e00, transparent);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 78, 0, 0.15);
    border-color: rgba(255, 78, 0, 0.3);
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 78, 0, 0.2);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1d1d1b;
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(29, 29, 27, 0.95), rgba(255, 78, 0, 0.1));
    color: white;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 78, 0, 0.2);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .properties {
        padding: 4rem 0;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .property-card {
        margin: 0 10px;
        max-width: none;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem 1rem;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .service-card {
        margin: 0 5px;
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .property-card {
        margin: 0 5px;
    }
    
    .property-content {
        padding: 1.5rem;
    }
    
    .property-title {
        font-size: 1.3rem;
    }
    
    .property-price {
        font-size: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .whatsapp-button, .phone-button {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
    }
    
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        margin: 0 5px;
        padding: 1.5rem 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.85rem;
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}