/* Global Styles */
:root {
    --primary-color: #D4AF37; /* Gold */
    --secondary-color: #0A192F; /* Deep Blue */
    --accent-color: #F8F8F8; /* Off White */
    --text-color: #333;
    --bg-color: #fff;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background-color: rgba(10, 25, 47, 0.95);
    color: var(--primary-color);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    transition: color var(--transition-speed);
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('dubai_hero.png') no-repeat center center/cover;
    /* Fallback if image fails */
    background-color: var(--secondary-color); 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    transition: transform var(--transition-speed), background-color var(--transition-speed);
    display: inline-block;
    animation: fadeInUp 1.4s ease-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #b5952f;
}

/* Section Styling */
section {
    padding: 4rem 5%;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform var(--transition-speed);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Projects Section */
.project-card {
    display: flex;
    flex-direction: column; /* Mobile first */
    gap: 2rem; /* Add gap between items */
    margin-bottom: 4rem;
    align-items: center;
}

/* For larger screens, side-by-side */
@media (min-width: 768px) {
    .project-card {
        flex-direction: row;
    }
    .project-card:nth-child(even) {
        flex-direction: row-reverse;
    }
}


.project-info {
    flex: 1;
    padding: 2rem;
}

.project-image {
    flex: 1;
    height: 300px;
    background-color: #ddd; /* Placeholder */
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

/* Specific Project Images (Placeholders for now) */
#azizi .project-image { background-image: url('https://placehold.co/600x400/10294f/D4AF37?text=Azizi+Developments'); }
#venice .project-image { background-image: url('https://placehold.co/600x400/D4AF37/10294f?text=Azizi+Venice'); }


/* Contact Section */
#contact {
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
}

#contact h2 {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    font-size: 1.2rem;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform var(--transition-speed);
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #050d18;
    color: #888;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    nav ul {
        gap: 1rem;
    }
}
