@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-color: #D4AF37; /* Elegant Gold */
    --primary-hover: #C5A030;
    --secondary-color: #1A1A1A; /* Deep Charcoal / Black */
    --secondary-light: #2C2C2C;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #FAFAFA;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

a {
    text-decoration: none;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.logo i {
    color: var(--primary-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #1DA851;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-luxury {
    padding: 15px 35px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 15px 35px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 150px 0;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.65), rgba(26, 26, 26, 0.90));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 45px;
    color: #cccccc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1.5s ease forwards;
}

.animate-slide-up {
    animation: slideUp 1.5s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-slide-up-delay {
    animation: slideUp 1.5s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateY(30px);
}

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

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Process Section Modern (Luxury Dark Theme) */
.process {
    padding: 100px 0;
    background-color: var(--secondary-color);
    background-image: radial-gradient(circle at center, #2a2a2a 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

.process .section-title {
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.process-step-modern {
    position: relative;
    background: #222222;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 4px solid rgba(212, 175, 55, 0.3);
}

.process-step-modern:hover {
    transform: translateY(-15px);
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    background: #262626;
}

.step-bg-number {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.05);
    font-family: var(--font-heading);
    line-height: 1;
    z-index: 0;
    transition: all 0.4s ease;
}

.process-step-modern:hover .step-bg-number {
    color: rgba(212, 175, 55, 0.12);
    transform: scale(1.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 30px auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-modern:hover .step-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(360deg);
}

.process-step-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.process-step-modern p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #0f0f0f;
    background-image: linear-gradient(to bottom, var(--secondary-color), #0f0f0f);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.services .section-title {
    color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    border-bottom: 4px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-bottom: 4px solid var(--primary-color);
}

.service-card .icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.service-card:hover .icon {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: all 0.5s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    transition: all 0.5s ease;
}

.service-card:hover p {
    color: #e5e7eb;
}

/* Projects Section Luxury */
.projects {
    padding: 100px 0;
    background-color: var(--secondary-color);
    background-image: linear-gradient(to bottom, #0f0f0f, var(--secondary-color));
}

.projects .section-title {
    color: var(--white);
}

.project-card-luxury {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    height: 450px;
}

.project-card-luxury img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-luxury:hover img {
    transform: scale(1.08);
}

.project-card-luxury .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
    color: var(--white);
    transition: all 0.4s ease;
}

.project-card-luxury h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-luxury p {
    font-size: 1.05rem;
    color: #e2e8f0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-luxury .view-btn {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-luxury .view-btn i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.project-card-luxury:hover h3 {
    transform: translateY(0);
}

.project-card-luxury:hover p {
    transform: translateY(0);
    opacity: 1;
}

.project-card-luxury:hover .view-btn {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

/* About Section Enhanced */
.about {
    padding: 100px 0;
    background-color: #f8fafc;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin-bottom: 25px;
    border-radius: 2px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin: 25px 0;
}

.about-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.about-stats .stat h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.about-stats .stat span {
    font-weight: 600;
    color: var(--text-light);
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-image-box {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.about-image-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: var(--primary-color);
    border-radius: 12px;
    z-index: 0;
}

.img-main {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Real Estate Section */
.real-estate {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0;
}

.real-estate-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.real-estate-text {
    flex: 1;
}

.real-estate-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.real-estate-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.real-estate-icon {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.1);
}

/* Contact Footer */
.contact {
    background-color: #111827;
    color: var(--white);
    padding: 60px 0 20px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #d1d5db;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto; 
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    position: relative;
    animation: modalFadeIn 0.3s;
}

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

.close-btn {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--text-dark);
    text-decoration: none;
}

.modal-content h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.modal-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.modal-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .real-estate-content {
        flex-direction: column;
        text-align: center;
    }
    
    .real-estate-icon {
        display: none;
    }

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

    .about-stats {
        justify-content: space-between;
        gap: 20px;
    }

    .about-image-wrapper {
        margin-top: 30px;
    }

    .experience-badge {
        left: 10px;
        bottom: 10px;
        padding: 15px 20px;
    }
    
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }

    .services-grid, .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .modal-images {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% 20px;
        padding: 20px;
    }

    .modal-images img {
        height: 200px;
    }
}
