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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Disable right-click and dev tools */
body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

.hidden {
    display: none !important;
}

/* Language Selection Modal */
.language-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513, #D2691E, #CD853F);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.language-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: slideIn 0.5s ease-out;
}

.language-content h2 {
    margin-bottom: 30px;
    color: #8B4513;
    font-size: 24px;
}

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

.lang-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513, #D2691E, #CD853F);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.earth-container {
    margin-bottom: 40px;
}

.earth {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #2196F3, #4CAF50);
    position: relative;
    animation: rotate 3s linear infinite;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
}

.earth::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 25px;
    height: 25px;
    background: #2E7D32;
    border-radius: 50%;
}

.earth::after {
    content: '';
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 15px;
    height: 15px;
    background: #1976D2;
    border-radius: 50%;
}

.loading-text {
    display: flex;
    gap: 5px;
}

.loading-text span {
    font-size: 36px;
    font-weight: 800;
    color: white;
    animation: bounce 1.5s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.loading-text span:nth-child(1) { animation-delay: 0.1s; }
.loading-text span:nth-child(2) { animation-delay: 0.2s; }
.loading-text span:nth-child(3) { animation-delay: 0.3s; }
.loading-text span:nth-child(4) { animation-delay: 0.4s; }
.loading-text span:nth-child(5) { animation-delay: 0.5s; }
.loading-text span:nth-child(6) { animation-delay: 0.6s; }
.loading-text span:nth-child(7) { animation-delay: 0.7s; }
.loading-text span:nth-child(8) { animation-delay: 0.8s; }
.loading-text span:nth-child(9) { animation-delay: 0.9s; }
.loading-text span:nth-child(10) { animation-delay: 1.0s; }
.loading-text span:nth-child(11) { animation-delay: 1.1s; }
.loading-text span:nth-child(12) { animation-delay: 1.2s; }

/* Property Loading Screen */
.property-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513, #D2691E, #CD853F);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
}

.property-loading-content {
    text-align: center;
}

.loading-logo {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    justify-content: center;
}

.loading-logo span {
    font-size: 28px;
    font-weight: 800;
    color: white;
    animation: pulse 1s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255,255,255,0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 28px;
    color: white;
}

/* Header */
.header {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo i {
    font-size: 32px;
    color: #FFD700;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.company-info p {
    font-size: 14px;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5E6D3, #E8D5B7, #DEB887);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D2691E" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%238B4513" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23CD853F" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-title i {
    font-size: 40px;
    color: #8B4513;
}

.hero-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #8B4513;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 18px;
    color: #654321;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeIn 1.5s ease-out;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: slideInUp 1s ease-out 0.5s both;
}

.carousel {
    position: relative;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Land Vision Section */
.land-vision {
    background: linear-gradient(135deg, #DEB887, #D2B48C);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-header p {
    font-size: 18px;
    color: #654321;
}

.location-filters {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.location-filters select {
    padding: 15px 25px;
    border: 3px solid #8B4513;
    border-radius: 15px;
    background: white;
    color: #8B4513;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.location-filters select:focus {
    outline: none;
    border-color: #D2691E;
    box-shadow: 0 0 15px rgba(210, 105, 30, 0.3);
}

/* Clients Section */
.clients {
    background: linear-gradient(135deg, #F0E68C, #F5DEB3);
    padding: 80px 0;
}

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

.client-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid #DEB887;
    animation: fadeInUp 0.6s ease-out;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.client-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.client-card:hover .client-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.badge-sold {
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.badge-approved {
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.client-info {
    padding: 25px;
}

.client-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 15px;
}

.client-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #654321;
    font-size: 14px;
}

.detail-item i {
    color: #D2691E;
    width: 16px;
}

.view-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #D2691E, #8B4513);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.view-btn:hover {
    background: linear-gradient(135deg, #8B4513, #654321);
    transform: translateY(-2px);
}

/* About Us Section */
.about-us {
    background: linear-gradient(135deg, #E6D3A3, #D2B48C);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #654321;
    line-height: 1.8;
    margin-bottom: 30px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255,255,255,0.9);
    transform: translateX(10px);
}

.service-item i {
    font-size: 24px;
    color: #D2691E;
    margin-top: 5px;
}

.service-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 5px;
}

.service-item p {
    font-size: 14px;
    color: #654321;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 80px 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 24px;
    color: #FFD700;
}

.contact-item span,
.contact-item a {
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

/* Footer */
.footer {
    background: #2C1810;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes slideIn {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .hero-title h2 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .carousel {
        height: 300px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .location-filters {
        flex-direction: column;
        gap: 20px;
    }
    
    .location-filters select {
        min-width: 280px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    .language-content {
        margin: 20px;
        padding: 30px;
    }
    
    .language-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title h2 {
        font-size: 24px;
    }
    
    .loading-text span {
        font-size: 28px;
    }
    
    .carousel {
        height: 250px;
    }
    
    .client-info {
        padding: 20px;
    }
    
    .about-text h3 {
        font-size: 24px;
    }
    
    .service-item {
        padding: 15px;
    }
}
