/* =================================
   NEW IN ABU DHABI - OPTIMIZED CSS
   Easy to modify, mobile-first design
   ================================= */

/* =================================
   EASY CUSTOMIZATION SECTION
   Change these values to update your site's look
   ================================= */

:root {
    /* MAIN COLORS - Warm Desert Welcome Theme */
    --primary-color: #d4a574;          /* Warm sand/gold */
    --primary-dark: #c19660;           /* Darker sand */
    --secondary-color: #e67e22;        /* Sunset orange */
    --success-color: #2c5f4f;          /* Oasis green */
    --warning-color: #e67e22;          /* Sunset orange */
    --error-color: #c0392b;            
    
    /* TEXT COLORS */
    --text-primary: #2d3748;           
    --text-secondary: #4a5568;         
    --text-light: #a0aec0;             
    --text-white: #ffffff;             
    
    /* BACKGROUND COLORS */
    --bg-primary: #ffffff;             
    --bg-secondary: #f7fafc;           
    --bg-dark: #2d3748;                
    --bg-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    
    /* FONTS */
    --font-primary: 'Inter', 'Chivo', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Chivo', 'Inter', Georgia, serif;
    
    /* SPACING */
    --spacing-xs: 0.5rem;              
    --spacing-sm: 1rem;                
    --spacing-md: 1.5rem;              
    --spacing-lg: 2rem;                
    --spacing-xl: 3rem;                
    --spacing-xxl: 4rem;               
    
    /* SHADOWS */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* BORDER RADIUS */
    --radius-sm: 0.375rem;             
    --radius-md: 0.5rem;               
    --radius-lg: 1rem;                 
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* Header */
.header {
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.logo h1 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-list a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-list a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards */
.services-section {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.footer p {
    opacity: 0.9;
    margin-bottom: var(--spacing-sm);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }